1
0

.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. # IDE / OS
  23. .cache/
  24. .ccls-cache/
  25. .direnv/
  26. .DS_Store
  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. !build-info.cmake
  43. !build-info.cpp.in
  44. !build-info.sh
  45. !build.zig
  46. !docs/build.md
  47. /libllama.so
  48. /llama-*
  49. /vulkan-shaders-gen
  50. android-ndk-*
  51. arm_neon.h
  52. cmake-build-*
  53. CMakeSettings.json
  54. compile_commands.json
  55. ggml-metal-embed.metal
  56. llama-batched-swift
  57. /rpc-server
  58. out/
  59. tmp/
  60. autogen-*.md
  61. # Deprecated
  62. /main
  63. /server
  64. # CI
  65. !.github/workflows/*.yml
  66. # Models
  67. models/*
  68. models-mnt
  69. !models/.editorconfig
  70. !models/ggml-vocab-*.gguf*
  71. # Zig
  72. zig-out/
  73. zig-cache/
  74. # Logs
  75. ppl-*.txt
  76. qnt-*.txt
  77. perf-*.txt
  78. # Examples
  79. examples/jeopardy/results.txt
  80. examples/server/*.css.hpp
  81. examples/server/*.html.hpp
  82. examples/server/*.js.hpp
  83. examples/server/*.mjs.hpp
  84. examples/server/*.gz.hpp
  85. !build_64.sh
  86. !examples/*.bat
  87. !examples/*/*.kts
  88. !examples/*/*/*.kts
  89. !examples/sycl/*.bat
  90. !examples/sycl/*.sh
  91. # Server Web UI temporary files
  92. node_modules
  93. examples/server/webui/dist
  94. # Python
  95. /.venv
  96. __pycache__/
  97. */poetry.lock
  98. poetry.toml
  99. # Nix
  100. /result
  101. # Test binaries
  102. /tests/test-backend-ops
  103. /tests/test-double-float
  104. /tests/test-grad0
  105. /tests/test-grammar-parser
  106. /tests/test-llama-grammar
  107. /tests/test-opt
  108. /tests/test-quantize-fns
  109. /tests/test-quantize-perf
  110. /tests/test-rope
  111. /tests/test-sampling
  112. /tests/test-tokenizer-0
  113. /tests/test-tokenizer-1-bpe
  114. /tests/test-tokenizer-1-spm
  115. # Scripts
  116. !/scripts/install-oneapi.bat
  117. # Test models for lora adapters
  118. /lora-tests
  119. # Local scripts
  120. /run-vim.sh
  121. /run-chat.sh