.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. /common/build-info.cpp
  50. # Deprecated
  51. /main
  52. /server
  53. # CI
  54. !/.github/workflows/*.yml
  55. # Models
  56. /models/*
  57. /models-mnt
  58. !/models/.editorconfig
  59. !/models/ggml-vocab-*.gguf*
  60. !/models/templates
  61. # Zig
  62. /zig-out/
  63. /zig-cache/
  64. # Examples
  65. /examples/jeopardy/results.txt
  66. /tools/server/*.css.hpp
  67. /tools/server/*.html.hpp
  68. /tools/server/*.js.hpp
  69. /tools/server/*.mjs.hpp
  70. /tools/server/*.gz.hpp
  71. !/build_64.sh
  72. !/examples/*.bat
  73. !/examples/*/*.kts
  74. !/examples/*/*/*.kts
  75. !/examples/sycl/*.bat
  76. !/examples/sycl/*.sh
  77. # Server Web UI temporary files
  78. /tools/server/webui/node_modules
  79. /tools/server/webui/dist
  80. # Python
  81. /.venv
  82. __pycache__/
  83. */poetry.lock
  84. poetry.toml
  85. # Nix
  86. /result
  87. # Test binaries
  88. /tests/test-backend-ops
  89. /tests/test-double-float
  90. /tests/test-grad0
  91. /tests/test-grammar-parser
  92. /tests/test-llama-grammar
  93. /tests/test-opt
  94. /tests/test-quantize-fns
  95. /tests/test-quantize-perf
  96. /tests/test-rope
  97. /tests/test-sampling
  98. /tests/test-tokenizer-0
  99. /tests/test-tokenizer-1-bpe
  100. /tests/test-tokenizer-1-spm
  101. # Scripts
  102. !/scripts/install-oneapi.bat
  103. # Test models for lora adapters
  104. /lora-tests
  105. # Local scripts
  106. /run-vim.sh
  107. /run-chat.sh
  108. /.ccache/
  109. # IDE
  110. /*.code-workspace
  111. /.windsurf/
  112. # emscripten
  113. a.out.*