.gitignore 1.2 KB

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