ik_llama.cpp/.gitignore
Samuel Oliveira Alves 9f7ba245ab
Update autofix and presets (#1867)
* Add configuration files for format, presets and examples

* add clang in pre-commit config

* remove clang configurations

* Refactor .gitignore for consistency in formatting
2026-05-24 07:30:44 +03:00

165 lines
2.0 KiB
Plaintext

# 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*
/cmake-build-*
/release
/debug
/CMakeSettings.json
/compile_commands.json
/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
/examples/server/*.css.hpp
/examples/server/*.html.hpp
/examples/server/*.js.hpp
/examples/server/*.mjs.hpp
/examples/server/*.gz.hpp
!/build_64.sh
!/examples/*.bat
!/examples/*/*.kts
!/examples/*/*/*.kts
!/examples/sycl/*.bat
!/examples/sycl/*.sh
# Server Web UI temporary files
/examples/server/webui_llamacpp/.svelte-kit
/examples/server/webui_llamacpp/node_modules
/examples/server/webui_llamacpp/build
/examples/server/webui_llamacpp/test-results
/examples/server/webui_llamacpp/storybook-static
# Python
/.venv
__pycache__/
*/poetry.lock
poetry.toml
poetry.lock
uv.lock
# Nix
flake.lock
/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
# Generated by scripts
/hellaswag_val_full.txt
/winogrande-debiased-eval.csv
/wikitext-2-raw/
# 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
a.out.*
.dev
.github