.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # Extensions
  2. *.a
  3. *.bat
  4. *.bin
  5. *.dll
  6. *.dot
  7. *.etag
  8. *.exe
  9. *.gcda
  10. *.gcno
  11. *.gcov
  12. *.gguf
  13. *.gguf.json
  14. *.lastModified
  15. *.log
  16. *.metallib
  17. *.o
  18. *.so
  19. *.tmp
  20. # IDE / OS
  21. .cache/
  22. .ccls-cache/
  23. .direnv/
  24. .DS_Store
  25. .envrc
  26. .idea/
  27. .swiftpm
  28. .vs/
  29. .vscode/
  30. nppBackup
  31. # Coverage
  32. gcovr-report/
  33. lcov-report/
  34. # Build Artifacts
  35. tags
  36. .build/
  37. build*
  38. !build-info.cmake
  39. !build-info.cpp.in
  40. !build-info.sh
  41. !build.zig
  42. !docs/build.md
  43. /libllama.so
  44. /llama-*
  45. android-ndk-*
  46. arm_neon.h
  47. cmake-build-*
  48. CMakeSettings.json
  49. compile_commands.json
  50. ggml-metal-embed.metal
  51. llama-batched-swift
  52. /rpc-server
  53. out/
  54. tmp/
  55. # Deprecated
  56. /main
  57. /server
  58. # CI
  59. !.github/workflows/*.yml
  60. # Models
  61. models/*
  62. models-mnt
  63. !models/.editorconfig
  64. !models/ggml-vocab-*.gguf*
  65. # Zig
  66. zig-out/
  67. zig-cache/
  68. # Logs
  69. ppl-*.txt
  70. qnt-*.txt
  71. perf-*.txt
  72. # Examples
  73. examples/jeopardy/results.txt
  74. examples/server/*.css.hpp
  75. examples/server/*.html.hpp
  76. examples/server/*.js.hpp
  77. examples/server/*.mjs.hpp
  78. !build_64.sh
  79. !examples/*.bat
  80. !examples/*/*.kts
  81. !examples/*/*/*.kts
  82. !examples/sycl/*.bat
  83. !examples/sycl/*.sh
  84. # Python
  85. /.venv
  86. __pycache__/
  87. */poetry.lock
  88. poetry.toml
  89. # Nix
  90. /result
  91. # Test binaries
  92. /tests/test-backend-ops
  93. /tests/test-double-float
  94. /tests/test-grad0
  95. /tests/test-grammar-parser
  96. /tests/test-llama-grammar
  97. /tests/test-opt
  98. /tests/test-quantize-fns
  99. /tests/test-quantize-perf
  100. /tests/test-rope
  101. /tests/test-sampling
  102. /tests/test-tokenizer-0
  103. /tests/test-tokenizer-1-bpe
  104. /tests/test-tokenizer-1-spm
  105. # Scripts
  106. !/scripts/install-oneapi.bat