.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # Extensions
  2. *.a
  3. *.bat
  4. *.bin
  5. *.dll
  6. *.dot
  7. *.etag
  8. *.exe
  9. *.gcda
  10. *.gcno
  11. *.gcov
  12. *.gguf
  13. *.gguf.json
  14. *.lastModified
  15. *.log
  16. *.metallib
  17. *.o
  18. *.so
  19. *.tmp
  20. # IDE / OS
  21. .cache/
  22. .ccls-cache/
  23. .direnv/
  24. .DS_Store
  25. .envrc
  26. .idea/
  27. .swiftpm
  28. .vs/
  29. .vscode/
  30. nppBackup
  31. # Coverage
  32. gcovr-report/
  33. lcov-report/
  34. # Build Artifacts
  35. tags
  36. .build/
  37. build*
  38. !build-info.cmake
  39. !build-info.cpp.in
  40. !build-info.sh
  41. !build.zig
  42. /libllama.so
  43. /llama-*
  44. android-ndk-*
  45. arm_neon.h
  46. cmake-build-*
  47. CMakeSettings.json
  48. compile_commands.json
  49. ggml-metal-embed.metal
  50. llama-batched-swift
  51. out/
  52. tmp/
  53. # CI
  54. !.github/workflows/*.yml
  55. # Models
  56. models/*
  57. models-mnt
  58. !models/.editorconfig
  59. !models/ggml-vocab-*.gguf*
  60. # Zig
  61. zig-out/
  62. zig-cache/
  63. # Logs
  64. ppl-*.txt
  65. qnt-*.txt
  66. perf-*.txt
  67. # Examples
  68. examples/jeopardy/results.txt
  69. examples/server/*.css.hpp
  70. examples/server/*.html.hpp
  71. examples/server/*.js.hpp
  72. examples/server/*.mjs.hpp
  73. !build_64.sh
  74. !examples/*.bat
  75. !examples/*/*.kts
  76. !examples/*/*/*.kts
  77. !examples/sycl/*.bat
  78. !examples/sycl/*.sh
  79. # Python
  80. __pycache__
  81. .venv
  82. /Pipfile
  83. dist
  84. poetry.lock
  85. poetry.toml
  86. # Test binaries
  87. /tests/test-backend-ops
  88. /tests/test-double-float
  89. /tests/test-grad0
  90. /tests/test-grammar-parser
  91. /tests/test-llama-grammar
  92. /tests/test-opt
  93. /tests/test-quantize-fns
  94. /tests/test-quantize-perf
  95. /tests/test-rope
  96. /tests/test-sampling
  97. /tests/test-tokenizer-0
  98. /tests/test-tokenizer-1-bpe
  99. /tests/test-tokenizer-1-spm
  100. # Scripts
  101. !/scripts/install-oneapi.bat