diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-12 20:57:17 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-12 20:57:17 +0100 |
| commit | b333b06772c89d96aacb5490d6a219fba7c09cc6 (patch) | |
| tree | 211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/.gitignore | |
| download | llmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz | |
Engage!
Diffstat (limited to 'llama.cpp/.gitignore')
| -rw-r--r-- | llama.cpp/.gitignore | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/llama.cpp/.gitignore b/llama.cpp/.gitignore new file mode 100644 index 0000000..bb122d6 --- /dev/null +++ b/llama.cpp/.gitignore @@ -0,0 +1,140 @@ +# Extensions + +*.a +*.bat +*.bin +*.d +*.dll +*.dot +*.etag +*.exe +*.gcda +*.gcno +*.gcov +*.gguf +*.gguf.json +*.lastModified +*.log +*.metallib +*.o +*.so +*.swp +*.tmp +*.DS_Store + +# IDE / OS + +/.cache/ +/.ccls-cache/ +/.direnv/ +/.envrc +/.idea/ +/.swiftpm +/.vs/ +/.vscode/ +/nppBackup + + +# Coverage + +/gcovr-report/ +/lcov-report/ + +# Build Artifacts + +/tags +/.build/ +/build* +/release +/debug +/libllama.so +/llama-* +/vulkan-shaders-gen +/rpc-server +/out/ +/tmp/ +/autogen-*.md +/common/build-info.cpp + +# Deprecated + +/main +/server + +# CI + +!/.github/workflows/*.yml + +# Models + +/models/* +/models-mnt +!/models/.editorconfig +!/models/ggml-vocab-*.gguf* +!/models/templates + +# Zig +/zig-out/ +/zig-cache/ + +# Examples + +/examples/jeopardy/results.txt +/tools/server/*.css.hpp +/tools/server/*.html.hpp +/tools/server/*.js.hpp +/tools/server/*.mjs.hpp +/tools/server/*.gz.hpp +!/build_64.sh +!/examples/*.bat +!/examples/*/*.kts +!/examples/*/*/*.kts +!/examples/sycl/*.bat +!/examples/sycl/*.sh + +# Server Web UI temporary files +/tools/server/webui/node_modules +/tools/server/webui/dist + +# Python + +/.venv +__pycache__/ +*/poetry.lock +poetry.toml + +# Nix +/result + +# Test binaries +/tests/test-backend-ops +/tests/test-double-float +/tests/test-grad0 +/tests/test-grammar-parser +/tests/test-llama-grammar +/tests/test-opt +/tests/test-quantize-fns +/tests/test-quantize-perf +/tests/test-rope +/tests/test-sampling +/tests/test-tokenizer-0 +/tests/test-tokenizer-1-bpe +/tests/test-tokenizer-1-spm + +# Scripts +!/scripts/install-oneapi.bat + +# Test models for lora adapters +/lora-tests + +# Local scripts +/run-vim.sh +/run-chat.sh +/run-spec.sh +/.ccache/ + +# IDE +/*.code-workspace +/.windsurf/ +# emscripten +a.out.* |
