.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. *.o
  2. *.a
  3. *.so
  4. *.gguf
  5. *.gguf.json
  6. *.bin
  7. *.exe
  8. *.dll
  9. *.log
  10. *.gcov
  11. *.gcno
  12. *.gcda
  13. *.dot
  14. *.bat
  15. *.tmp
  16. *.metallib
  17. *.etag
  18. *.lastModified
  19. .DS_Store
  20. .build/
  21. .cache/
  22. .ccls-cache/
  23. .direnv/
  24. .envrc
  25. .swiftpm
  26. .venv
  27. .clang-tidy
  28. .vs/
  29. .vscode/
  30. .idea/
  31. ggml-metal-embed.metal
  32. lcov-report/
  33. gcovr-report/
  34. build*
  35. !build.zig
  36. cmake-build-*
  37. out/
  38. tmp/
  39. models/*
  40. models-mnt
  41. /Pipfile
  42. /baby-llama
  43. /beam-search
  44. /benchmark-matmult
  45. /convert-llama2c-to-ggml
  46. /embd-input-test
  47. /embedding
  48. /eval-callback
  49. /gguf
  50. /gguf-llama-simple
  51. /gguf-split
  52. /gritlm
  53. /imatrix
  54. /infill
  55. /libllama.so
  56. /llama-bench
  57. /llava-cli
  58. /lookahead
  59. /lookup
  60. /lookup-create
  61. /lookup-merge
  62. /lookup-stats
  63. /main
  64. /metal
  65. /passkey
  66. /perplexity
  67. /q8dot
  68. /quantize
  69. /quantize-stats
  70. /result
  71. /save-load-state
  72. /server
  73. /simple
  74. /batched
  75. /batched-bench
  76. /export-lora
  77. /finetune
  78. /retrieval
  79. /speculative
  80. /parallel
  81. /train-text-from-scratch
  82. /tokenize
  83. /vdot
  84. /common/build-info.cpp
  85. arm_neon.h
  86. compile_commands.json
  87. CMakeSettings.json
  88. __pycache__
  89. dist
  90. zig-out/
  91. zig-cache/
  92. ppl-*.txt
  93. qnt-*.txt
  94. perf-*.txt
  95. examples/jeopardy/results.txt
  96. examples/server/*.html.hpp
  97. examples/server/*.js.hpp
  98. examples/server/*.mjs.hpp
  99. poetry.lock
  100. poetry.toml
  101. nppBackup
  102. # Test binaries
  103. /tests/test-grammar-parser
  104. /tests/test-llama-grammar
  105. /tests/test-double-float
  106. /tests/test-grad0
  107. /tests/test-opt
  108. /tests/test-quantize-fns
  109. /tests/test-quantize-perf
  110. /tests/test-sampling
  111. /tests/test-tokenizer-0
  112. /tests/test-tokenizer-1-spm
  113. /tests/test-tokenizer-1-bpe
  114. /tests/test-rope
  115. /tests/test-backend-ops