.gitignore 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. /libllama.so
  45. /llama-*
  46. llama-batched-swift
  47. /common/build-info.cpp
  48. arm_neon.h
  49. compile_commands.json
  50. CMakeSettings.json
  51. __pycache__
  52. dist
  53. zig-out/
  54. zig-cache/
  55. ppl-*.txt
  56. qnt-*.txt
  57. perf-*.txt
  58. examples/jeopardy/results.txt
  59. examples/server/*.html.hpp
  60. examples/server/*.js.hpp
  61. examples/server/*.mjs.hpp
  62. examples/server/*.css.hpp
  63. poetry.lock
  64. poetry.toml
  65. nppBackup
  66. # Test binaries
  67. /tests/test-grammar-parser
  68. /tests/test-llama-grammar
  69. /tests/test-double-float
  70. /tests/test-grad0
  71. /tests/test-opt
  72. /tests/test-quantize-fns
  73. /tests/test-quantize-perf
  74. /tests/test-sampling
  75. /tests/test-tokenizer-0
  76. /tests/test-tokenizer-1-spm
  77. /tests/test-tokenizer-1-bpe
  78. /tests/test-rope
  79. /tests/test-backend-ops