.gitignore 976 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. /main
  31. /quantize
  32. /quantize-stats
  33. /result
  34. /perplexity
  35. /embedding
  36. /train-text-from-scratch
  37. /convert-llama2c-to-ggml
  38. /simple
  39. /benchmark-matmult
  40. /vdot
  41. /server
  42. /Pipfile
  43. /embd-input-test
  44. /gguf
  45. /gguf-llama-simple
  46. /libllama.so
  47. /llama-bench
  48. /baby-llama
  49. /beam-search
  50. /save-load-state
  51. /speculative
  52. build-info.h
  53. arm_neon.h
  54. compile_commands.json
  55. CMakeSettings.json
  56. __pycache__
  57. dist
  58. zig-out/
  59. zig-cache/
  60. ppl-*.txt
  61. qnt-*.txt
  62. perf-*.txt
  63. examples/jeopardy/results.txt
  64. poetry.lock
  65. poetry.toml
  66. # Test binaries
  67. tests/test-grammar-parser
  68. tests/test-llama-grammar
  69. tests/test-double-float
  70. tests/test-grad0
  71. tests/test-opt
  72. tests/test-quantize-fns
  73. tests/test-quantize-perf
  74. tests/test-sampling
  75. tests/test-tokenizer-0-llama
  76. tests/test-tokenizer-0-falcon
  77. tests/test-tokenizer-1