1
0

.gitignore 1.6 KB

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