.gitignore 1.0 KB

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