.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. /infill
  43. /libllama.so
  44. /llama-bench
  45. /llava-cli
  46. /lookahead
  47. /lookup
  48. /main
  49. /metal
  50. /passkey
  51. /perplexity
  52. /q8dot
  53. /quantize
  54. /quantize-stats
  55. /result
  56. /save-load-state
  57. /server
  58. /simple
  59. /batched
  60. /batched-bench
  61. /export-lora
  62. /finetune
  63. /speculative
  64. /parallel
  65. /train-text-from-scratch
  66. /tokenize
  67. /vdot
  68. /common/build-info.cpp
  69. arm_neon.h
  70. compile_commands.json
  71. CMakeSettings.json
  72. __pycache__
  73. dist
  74. zig-out/
  75. zig-cache/
  76. ppl-*.txt
  77. qnt-*.txt
  78. perf-*.txt
  79. examples/jeopardy/results.txt
  80. poetry.lock
  81. poetry.toml
  82. # Test binaries
  83. /tests/test-grammar-parser
  84. /tests/test-llama-grammar
  85. /tests/test-double-float
  86. /tests/test-grad0
  87. /tests/test-opt
  88. /tests/test-quantize-fns
  89. /tests/test-quantize-perf
  90. /tests/test-sampling
  91. /tests/test-tokenizer-0-llama
  92. /tests/test-tokenizer-0-falcon
  93. /tests/test-tokenizer-1-llama
  94. /tests/test-tokenizer-1-bpe
  95. /tests/test-rope
  96. /tests/test-backend-ops