1
0

.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # Extensions
  2. *.a
  3. *.bat
  4. *.bin
  5. *.d
  6. *.dll
  7. *.dot
  8. *.etag
  9. *.exe
  10. *.gcda
  11. *.gcno
  12. *.gcov
  13. *.gguf
  14. *.gguf.json
  15. *.lastModified
  16. *.log
  17. *.metallib
  18. *.o
  19. *.so
  20. *.swp
  21. *.tmp
  22. *.DS_Store
  23. # IDE / OS
  24. /.cache/
  25. /.ccls-cache/
  26. /.direnv/
  27. /.envrc
  28. /.idea/
  29. /.swiftpm
  30. /.vs/
  31. /.vscode/
  32. /nppBackup
  33. # Coverage
  34. /gcovr-report/
  35. /lcov-report/
  36. # Build Artifacts
  37. /tags
  38. /.build/
  39. /build*
  40. /release
  41. /debug
  42. /libllama.so
  43. /llama-*
  44. /vulkan-shaders-gen
  45. /rpc-server
  46. /out/
  47. /tmp/
  48. /autogen-*.md
  49. # Deprecated
  50. /main
  51. /server
  52. # CI
  53. !/.github/workflows/*.yml
  54. # Models
  55. /models/*
  56. /models-mnt
  57. !/models/.editorconfig
  58. !/models/ggml-vocab-*.gguf*
  59. !/models/templates
  60. # Zig
  61. /zig-out/
  62. /zig-cache/
  63. # Examples
  64. /examples/jeopardy/results.txt
  65. /tools/server/*.css.hpp
  66. /tools/server/*.html.hpp
  67. /tools/server/*.js.hpp
  68. /tools/server/*.mjs.hpp
  69. /tools/server/*.gz.hpp
  70. !/build_64.sh
  71. !/examples/*.bat
  72. !/examples/*/*.kts
  73. !/examples/*/*/*.kts
  74. !/examples/sycl/*.bat
  75. !/examples/sycl/*.sh
  76. # Server Web UI temporary files
  77. /tools/server/webui/node_modules
  78. /tools/server/webui/dist
  79. # Python
  80. /.venv
  81. __pycache__/
  82. */poetry.lock
  83. poetry.toml
  84. # Nix
  85. /result
  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
  102. # Test models for lora adapters
  103. /lora-tests
  104. # Local scripts
  105. /run-vim.sh
  106. /run-chat.sh
  107. /.ccache/
  108. # IDE
  109. /*.code-workspace
  110. /.windsurf/