mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-10-27 08:21:30 +00:00
* Initial plan * Initialize copilot instructions exploration * Add comprehensive .github/copilot-instructions.md file * Update Python environment and tools directory documentation - Add instructions for using .venv Python environment - Include flake8 and pyright linting tools from virtual environment - Add tools/ as core directory in project layout - Reference existing configuration files (.flake8, pyrightconfig.json) * add more python dependencies to .venv * Update copilot instructions: add backend hardware note and server testing * Apply suggestions from code review * Apply suggestions from code review * Replace clang-format with git clang-format to format only changed code * Minor formatting improvements: remove extra blank line and add trailing newline * try installing git-clang-format * try just clang-format * Remove --binary flag from git clang-format and add git-clang-format installation to CI * download 18.x release * typo-- * remove --binary flag --------- Co-authored-by: Sigbjørn Skjæret <sigbjorn.skjaeret@scala.com>
151 lines
1.7 KiB
Plaintext
151 lines
1.7 KiB
Plaintext
# Extensions
|
|
|
|
*.a
|
|
*.bat
|
|
*.bin
|
|
*.d
|
|
*.dll
|
|
*.dot
|
|
*.etag
|
|
*.exe
|
|
*.gcda
|
|
*.gcno
|
|
*.gcov
|
|
*.gguf
|
|
*.gguf.json
|
|
*.lastModified
|
|
*.log
|
|
*.metallib
|
|
*.o
|
|
*.so
|
|
*.swp
|
|
*.tmp
|
|
|
|
# IDE / OS
|
|
|
|
.cache/
|
|
.ccls-cache/
|
|
.direnv/
|
|
.DS_Store
|
|
.envrc
|
|
.idea/
|
|
.swiftpm
|
|
.vs/
|
|
.vscode/
|
|
nppBackup
|
|
|
|
|
|
# Coverage
|
|
|
|
gcovr-report/
|
|
lcov-report/
|
|
|
|
# Build Artifacts
|
|
|
|
tags
|
|
.build/
|
|
build*
|
|
release
|
|
debug
|
|
!build-info.cmake
|
|
!build-info.cpp.in
|
|
!build-info.sh
|
|
!build.zig
|
|
!docs/build.md
|
|
/libllama.so
|
|
/llama-*
|
|
/vulkan-shaders-gen
|
|
android-ndk-*
|
|
arm_neon.h
|
|
cmake-build-*
|
|
CMakeSettings.json
|
|
compile_commands.json
|
|
ggml-metal-embed.metal
|
|
llama-batched-swift
|
|
/rpc-server
|
|
out/
|
|
tmp/
|
|
autogen-*.md
|
|
|
|
# Deprecated
|
|
|
|
/main
|
|
/server
|
|
|
|
# CI
|
|
|
|
!.github/workflows/*.yml
|
|
|
|
# Models
|
|
|
|
models/*
|
|
models-mnt
|
|
!models/.editorconfig
|
|
!models/ggml-vocab-*.gguf*
|
|
!models/templates
|
|
|
|
# Zig
|
|
zig-out/
|
|
zig-cache/
|
|
|
|
# Logs
|
|
|
|
ppl-*.txt
|
|
qnt-*.txt
|
|
perf-*.txt
|
|
|
|
# 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
|
|
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
|
|
.ccache/
|