.gitignore 963 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. build-info.h
  52. arm_neon.h
  53. compile_commands.json
  54. CMakeSettings.json
  55. __pycache__
  56. dist
  57. zig-out/
  58. zig-cache/
  59. ppl-*.txt
  60. qnt-*.txt
  61. perf-*.txt
  62. examples/jeopardy/results.txt
  63. poetry.lock
  64. poetry.toml
  65. # Test binaries
  66. tests/test-grammar-parser
  67. tests/test-llama-grammar
  68. tests/test-double-float
  69. tests/test-grad0
  70. tests/test-opt
  71. tests/test-quantize-fns
  72. tests/test-quantize-perf
  73. tests/test-sampling
  74. tests/test-tokenizer-0-llama
  75. tests/test-tokenizer-0-falcon
  76. tests/test-tokenizer-1