.gitignore 1.2 KB

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