.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. *.o
  2. *.a
  3. *.so
  4. *.gguf
  5. *.bin
  6. *.exe
  7. *.dll
  8. *.log
  9. *.gcov
  10. *.gcno
  11. *.gcda
  12. *.dot
  13. *.metallib
  14. .DS_Store
  15. .build/
  16. .cache/
  17. .direnv/
  18. .envrc
  19. .swiftpm
  20. .venv
  21. .clang-tidy
  22. .vs/
  23. .vscode/
  24. lcov-report/
  25. gcovr-report/
  26. build*/
  27. out/
  28. tmp/
  29. models/*
  30. models-mnt
  31. /Pipfile
  32. /baby-llama
  33. /beam-search
  34. /benchmark-matmult
  35. /convert-llama2c-to-ggml
  36. /embd-input-test
  37. /embedding
  38. /gguf
  39. /gguf-llama-simple
  40. /infill
  41. /libllama.so
  42. /llama-bench
  43. /main
  44. /metal
  45. /perplexity
  46. /q8dot
  47. /quantize
  48. /quantize-stats
  49. /result
  50. /save-load-state
  51. /server
  52. /simple
  53. /batched
  54. /batched-bench
  55. /export-lora
  56. /finetune
  57. /speculative
  58. /parallel
  59. /train-text-from-scratch
  60. /vdot
  61. build-info.h
  62. arm_neon.h
  63. compile_commands.json
  64. CMakeSettings.json
  65. __pycache__
  66. dist
  67. zig-out/
  68. zig-cache/
  69. ppl-*.txt
  70. qnt-*.txt
  71. perf-*.txt
  72. examples/jeopardy/results.txt
  73. poetry.lock
  74. poetry.toml
  75. # Test binaries
  76. tests/test-grammar-parser
  77. tests/test-llama-grammar
  78. tests/test-double-float
  79. tests/test-grad0
  80. tests/test-opt
  81. tests/test-quantize-fns
  82. tests/test-quantize-perf
  83. tests/test-sampling
  84. tests/test-tokenizer-0-llama
  85. tests/test-tokenizer-0-falcon
  86. tests/test-tokenizer-1-llama
  87. tests/test-tokenizer-1-bpe