.gitignore 1.1 KB

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