.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. tags
  35. build*
  36. !build.zig
  37. cmake-build-*
  38. android-ndk-*
  39. out/
  40. tmp/
  41. models/*
  42. models-mnt
  43. /Pipfile
  44. /baby-llama
  45. /beam-search
  46. /benchmark-matmult
  47. /convert-llama2c-to-ggml
  48. /embd-input-test
  49. /embedding
  50. /eval-callback
  51. /gguf
  52. /gguf-llama-simple
  53. /gguf-split
  54. /gritlm
  55. /imatrix
  56. /infill
  57. /libllama.so
  58. /llama-bench
  59. /llava-cli
  60. /lookahead
  61. /lookup
  62. /lookup-create
  63. /lookup-merge
  64. /lookup-stats
  65. /main
  66. /metal
  67. /passkey
  68. /perplexity
  69. /q8dot
  70. /quantize
  71. /quantize-stats
  72. /result
  73. /save-load-state
  74. /server
  75. /simple
  76. /batched
  77. /batched-bench
  78. /export-lora
  79. /finetune
  80. /retrieval
  81. /speculative
  82. /parallel
  83. /train-text-from-scratch
  84. /tokenize
  85. /vdot
  86. /common/build-info.cpp
  87. arm_neon.h
  88. compile_commands.json
  89. CMakeSettings.json
  90. __pycache__
  91. dist
  92. zig-out/
  93. zig-cache/
  94. ppl-*.txt
  95. qnt-*.txt
  96. perf-*.txt
  97. examples/jeopardy/results.txt
  98. examples/server/*.html.hpp
  99. examples/server/*.js.hpp
  100. examples/server/*.mjs.hpp
  101. examples/server/*.css.hpp
  102. poetry.lock
  103. poetry.toml
  104. nppBackup
  105. # Test binaries
  106. /tests/test-grammar-parser
  107. /tests/test-llama-grammar
  108. /tests/test-double-float
  109. /tests/test-grad0
  110. /tests/test-opt
  111. /tests/test-quantize-fns
  112. /tests/test-quantize-perf
  113. /tests/test-sampling
  114. /tests/test-tokenizer-0
  115. /tests/test-tokenizer-1-spm
  116. /tests/test-tokenizer-1-bpe
  117. /tests/test-rope
  118. /tests/test-backend-ops