.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. /export-lora
  55. /finetune
  56. /speculative
  57. /parallel
  58. /train-text-from-scratch
  59. /vdot
  60. build-info.h
  61. arm_neon.h
  62. compile_commands.json
  63. CMakeSettings.json
  64. __pycache__
  65. dist
  66. zig-out/
  67. zig-cache/
  68. ppl-*.txt
  69. qnt-*.txt
  70. perf-*.txt
  71. examples/jeopardy/results.txt
  72. poetry.lock
  73. poetry.toml
  74. # Test binaries
  75. tests/test-grammar-parser
  76. tests/test-llama-grammar
  77. tests/test-double-float
  78. tests/test-grad0
  79. tests/test-opt
  80. tests/test-quantize-fns
  81. tests/test-quantize-perf
  82. tests/test-sampling
  83. tests/test-tokenizer-0-llama
  84. tests/test-tokenizer-0-falcon
  85. tests/test-tokenizer-1-llama
  86. tests/test-tokenizer-1-bpe