1
0

.gitignore 776 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. *.o
  2. *.a
  3. *.so
  4. *.gguf
  5. *.bin
  6. *.exe
  7. *.dll
  8. .DS_Store
  9. .build/
  10. .cache/
  11. .direnv/
  12. .envrc
  13. .swiftpm
  14. .venv
  15. .clang-tidy
  16. .vs/
  17. .vscode/
  18. build*/
  19. out/
  20. tmp/
  21. models/*
  22. models-mnt
  23. /main
  24. /quantize
  25. /quantize-stats
  26. /result
  27. /perplexity
  28. /embedding
  29. /train-text-from-scratch
  30. /convert-llama2c-to-ggml
  31. /simple
  32. /benchmark-matmult
  33. /vdot
  34. /server
  35. /Pipfile
  36. /embd-input-test
  37. /gguf
  38. /gguf-llama-simple
  39. /libllama.so
  40. /llama-bench
  41. build-info.h
  42. arm_neon.h
  43. compile_commands.json
  44. CMakeSettings.json
  45. __pycache__
  46. dist
  47. zig-out/
  48. zig-cache/
  49. ppl-*.txt
  50. qnt-*.txt
  51. perf-*.txt
  52. examples/jeopardy/results.txt
  53. poetry.lock
  54. poetry.toml
  55. # Test binaries
  56. tests/test-grammar-parser
  57. tests/test-double-float
  58. tests/test-grad0
  59. tests/test-opt
  60. tests/test-quantize-fns
  61. tests/test-quantize-perf
  62. tests/test-sampling
  63. tests/test-tokenizer-0