localcode 0.3.28__tar.gz → 0.3.30__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {localcode-0.3.28/src/localcode.egg-info → localcode-0.3.30}/PKG-INFO +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/pyproject.toml +1 -1
- localcode-0.3.30/src/localcode/model_delete.py +444 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/models_catalog.py +127 -27
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/runtime.py +84 -2
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/server_manager.py +99 -15
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/append_file.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/base.py +42 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/code_navigation.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/edit_diff.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/edit_file.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/list_files.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/multi_edit.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/read_file.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/write_file.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/screens/chat.py +26 -0
- {localcode-0.3.28 → localcode-0.3.30/src/localcode.egg-info}/PKG-INFO +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode.egg-info/SOURCES.txt +3 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_architecture.py +4 -4
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_code_navigation_and_processes.py +5 -1
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_bg_download.py +1 -1
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_download.py +5 -5
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_hardening.py +1 -1
- localcode-0.3.30/tests/test_delete_command.py +289 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_models_catalog.py +3 -1
- localcode-0.3.30/tests/test_path_healing.py +53 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_runtime.py +5 -0
- {localcode-0.3.28 → localcode-0.3.30}/LICENSE +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/MANIFEST.in +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/README.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/CMakePresets.json +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/LICENSE +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/common.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/license.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/arg.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/arg.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/base64.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/chat.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/common.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/console.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/console.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/debug.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/debug.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/download.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/download.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/hf-cache.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/http.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/string.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/jinja/value.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/json-partial.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/log.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/log.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-map.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/peg-parser.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/preset.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/preset.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/regex-partial.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/sampling.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/sampling.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/speculative.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/speculative.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/unicode.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/common/unicode.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/include/llama.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-arch.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-batch.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-chat.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-context.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-ext.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-graph.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-io.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-memory.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-model.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-quant.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/llama.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/models.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/unicode-data.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/unicode.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/src/unicode.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/setup.cfg +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/setup.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/__main__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/_subproc_env.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/app_tasks.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/constants.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/context.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/goal.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/helpers.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/hooks.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/loop.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/prompt_context.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/prompts.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/recovery.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/sections.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/state_machine.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/streaming.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/tool_execution.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/tool_orchestration.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/agent/turn_finalization.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/app.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/approvals.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/auto_compact.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/autonomy.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/bin/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/bin/llama-server +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/bootstrap.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/cache.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/checkpoint.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/compact.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/compaction.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/composer.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/config.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/context.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/display.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/embeddings.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/entrypoint.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/errors.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/events.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/evidence.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/execution_policy.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/features.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/formatting.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/headless_json.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/health.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/hf_quants.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/history.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/hooks.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/indexer.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/injection_defense.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/launcher.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/logging_utils.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/lsp.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/mcp/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/mcp/_bridge.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/mcp/_config.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/mcp/_transports.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/mcp/client.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/memory_guard.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/model_config.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/model_families.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/models.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/notebook.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/output.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/patching.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/paths.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/performance.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/permissions.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/permissions_v2.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/plans.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/process_registry.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/recommendations.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/recovery.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/runtime_diffusion.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/session.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/shell.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/debug.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/edit-verified.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/explain.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/finish-verified.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/git-commit-safely.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/locate.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/plan-task.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/review.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills/run-tests.md +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/skills.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/snapshots.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/sounds.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/telemetry.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/theme.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/thermal.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/thinking.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tool_router.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/toolkit.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/agent.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/background_process.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/bash.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/facts.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/glob_tool.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/grep.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/launch_app.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/plan_mode.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/project_check.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/read_state.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/skill_tool.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/syntax_check.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/todo_write.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/tool_call_repair.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/web_fetch.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tools/web_search.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/app.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/bridge.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/clipboard_image.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/paste_collapse.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/screens/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/screens/mode_picker.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/screens/model_picker.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/screens/setup.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/styles/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/styles/app.tcss +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/approval.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/chat_log.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/messages/__init__.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/messages/diff.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/turn_diff.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/undo.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/verification.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode/voice.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode.egg-info/dependency_links.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode.egg-info/entry_points.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode.egg-info/requires.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/src/localcode.egg-info/top_level.txt +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_agent_event_regressions.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_agent_state_machine.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_bootstrap.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_checkpoint.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_churn_detection.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_clipboard_image.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_compaction.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_agent.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_binary.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_cli.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_diffusion.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_install.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_machines.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_model_picker.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_models_matrix.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_tui.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_vision.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_voice.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_comprehensive_whisper.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_config.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_context.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_context_pipeline_e2e.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_download.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_edit_guard_and_fuzzy.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_embeddings_retrieval.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_evidence_and_lifecycle_hooks.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_execution_policies.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_fresh_install.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_home_build_anchor.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_kv_cap.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_loop_recovery_ladder.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_model_config.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_not_found_recovery.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_output.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_paste_collapse.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_prompt_language_steering.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_real_models.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_run_json.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_subproc_env.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_syntax_check.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_task_statement_pinning.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_thermal.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_toolkit.py +0 -0
- {localcode-0.3.28 → localcode-0.3.30}/tests/test_tui_input.py +0 -0
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
"""`/delete` — remove downloaded models from disk, safely.
|
|
2
|
+
|
|
3
|
+
All the logic behind the TUI's `/delete` slash command lives here so it can
|
|
4
|
+
be unit-tested without a running Textual app. The chat screen's handler is a
|
|
5
|
+
thin wrapper that calls :func:`run_delete_command` and prints the returned
|
|
6
|
+
lines.
|
|
7
|
+
|
|
8
|
+
Safety model (deleting a 40 GB model means a 40 GB re-download, so the
|
|
9
|
+
command is deliberately protective):
|
|
10
|
+
|
|
11
|
+
* ``/delete`` — list what's on disk with sizes; deletes nothing.
|
|
12
|
+
* ``/delete <model>`` — show exactly what would be removed; deletes nothing.
|
|
13
|
+
* ``/delete <model> confirm`` — the ONLY form that deletes anything.
|
|
14
|
+
|
|
15
|
+
Hard refusals (even with ``confirm``):
|
|
16
|
+
|
|
17
|
+
* the model the server is currently serving (``config.runtime.model``);
|
|
18
|
+
* a model with an in-flight background download (deleting under the
|
|
19
|
+
downloader would just corrupt the resume state).
|
|
20
|
+
|
|
21
|
+
Multi-file awareness: vision models ship an ``mmproj-*.gguf`` sidecar that is
|
|
22
|
+
SHARED between quants of the same family (e.g. the Gemma 26B Q3 and Q8 quants
|
|
23
|
+
use one projector file). The sidecar is only slated for deletion when the last
|
|
24
|
+
family member that references it is being removed — and never while the
|
|
25
|
+
currently-configured model still references it. Partial downloads
|
|
26
|
+
(``*.gguf.part`` files, undersized finals, and the hub's ``.incomplete``
|
|
27
|
+
sidecars) are listed and cleaned up too.
|
|
28
|
+
"""
|
|
29
|
+
from __future__ import annotations
|
|
30
|
+
|
|
31
|
+
from dataclasses import dataclass, field
|
|
32
|
+
from pathlib import Path
|
|
33
|
+
|
|
34
|
+
from .models_catalog import ModelChoice, by_filename, model_dir
|
|
35
|
+
|
|
36
|
+
# A returned output line: ("info" | "error", text). The TUI maps these to
|
|
37
|
+
# ChatLog.append_info / append_error.
|
|
38
|
+
OutputLine = tuple[str, str]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def human_size(num_bytes: int) -> str:
|
|
42
|
+
"""Human-readable size in DECIMAL units (matches the catalog's `size_gb`
|
|
43
|
+
convention and what HuggingFace shows — 11.2 GB == 11.2e9 bytes)."""
|
|
44
|
+
if num_bytes >= 1000 ** 3:
|
|
45
|
+
return f"{num_bytes / 1000 ** 3:.1f} GB"
|
|
46
|
+
if num_bytes >= 1000 ** 2:
|
|
47
|
+
return f"{num_bytes / 1000 ** 2:.0f} MB"
|
|
48
|
+
if num_bytes >= 1000:
|
|
49
|
+
return f"{num_bytes / 1000:.0f} KB"
|
|
50
|
+
return f"{num_bytes} B"
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
@dataclass
|
|
54
|
+
class InstalledModel:
|
|
55
|
+
"""One deletable thing in the models dir: a model, a partial download,
|
|
56
|
+
or an orphaned vision sidecar."""
|
|
57
|
+
|
|
58
|
+
name: str # display name (catalog name or bare filename)
|
|
59
|
+
key: str | None # catalog key when the file maps to a ModelChoice
|
|
60
|
+
path: Path # the primary file (main GGUF or its .part)
|
|
61
|
+
partial: bool # True when only a partial download exists
|
|
62
|
+
is_sidecar: bool # True for an orphaned mmproj entry
|
|
63
|
+
files: list[Path] = field(default_factory=list) # everything deleted with it
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
def size_bytes(self) -> int:
|
|
67
|
+
total = 0
|
|
68
|
+
for f in self.files:
|
|
69
|
+
try:
|
|
70
|
+
total += f.stat().st_size
|
|
71
|
+
except OSError:
|
|
72
|
+
pass
|
|
73
|
+
return total
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
def filename(self) -> str:
|
|
77
|
+
"""The main GGUF filename (without any .part suffix)."""
|
|
78
|
+
n = self.path.name
|
|
79
|
+
return n[:-5] if n.endswith(".part") else n
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
def _is_mmproj(filename: str) -> bool:
|
|
83
|
+
return filename.startswith("mmproj-")
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def _hub_leftovers(models_dir: Path, filename: str) -> list[Path]:
|
|
87
|
+
"""Best-effort: the hub downloader keeps resume state under
|
|
88
|
+
``<models_dir>/.cache/huggingface/...`` — collect any ``.incomplete`` /
|
|
89
|
+
``.metadata`` files that belong to `filename` so deleting a partial
|
|
90
|
+
really frees the space."""
|
|
91
|
+
cache = models_dir / ".cache" / "huggingface"
|
|
92
|
+
if not cache.is_dir():
|
|
93
|
+
return []
|
|
94
|
+
out: list[Path] = []
|
|
95
|
+
try:
|
|
96
|
+
for f in cache.rglob(f"{filename}*"):
|
|
97
|
+
if f.is_file():
|
|
98
|
+
out.append(f)
|
|
99
|
+
except OSError:
|
|
100
|
+
pass
|
|
101
|
+
return out
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
def _complete_on_disk(path: Path, choice: ModelChoice | None) -> bool:
|
|
105
|
+
"""Same completeness contract as bootstrap._is_complete_download (kept
|
|
106
|
+
call-compatible via a local import to avoid a circular import at module
|
|
107
|
+
load)."""
|
|
108
|
+
from .bootstrap import _is_complete_download
|
|
109
|
+
return path.is_file() and _is_complete_download(path, choice)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
def list_installed(models_dir: Path | None = None,
|
|
113
|
+
current_filename: str | None = None) -> list[InstalledModel]:
|
|
114
|
+
"""Scan the models dir and return everything `/delete` can act on.
|
|
115
|
+
|
|
116
|
+
`current_filename` is the filename of the currently-configured model —
|
|
117
|
+
used only to decide whether a shared mmproj sidecar may be slated for
|
|
118
|
+
deletion (never take the projector out from under the serving model,
|
|
119
|
+
even if its main GGUF was somehow removed by hand).
|
|
120
|
+
"""
|
|
121
|
+
d = models_dir if models_dir is not None else model_dir()
|
|
122
|
+
if not d.is_dir():
|
|
123
|
+
return []
|
|
124
|
+
|
|
125
|
+
# Case-insensitive sort so listing indices are stable and intuitive
|
|
126
|
+
# ("gemma…" and "Qwen…" order by name, not by ASCII case).
|
|
127
|
+
ggufs = sorted((p for p in d.glob("*.gguf") if p.is_file()),
|
|
128
|
+
key=lambda p: p.name.lower())
|
|
129
|
+
parts = sorted((p for p in d.glob("*.gguf.part") if p.is_file()),
|
|
130
|
+
key=lambda p: p.name.lower())
|
|
131
|
+
|
|
132
|
+
main_files = [p for p in ggufs if not _is_mmproj(p.name)]
|
|
133
|
+
main_parts = [p for p in parts if not _is_mmproj(p.name[:-5])]
|
|
134
|
+
mmproj_files = [p for p in ggufs if _is_mmproj(p.name)]
|
|
135
|
+
|
|
136
|
+
# filenames (sans .part) of every main model present in any form — used
|
|
137
|
+
# to decide whether an mmproj is still referenced by a surviving model.
|
|
138
|
+
present_main: set[str] = {p.name for p in main_files} | {
|
|
139
|
+
p.name[:-5] for p in main_parts
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
def _referenced_by(mmproj_name: str, fnames: set[str], excluding: str) -> bool:
|
|
143
|
+
"""True if any model in `fnames` OTHER than `excluding` needs this mmproj."""
|
|
144
|
+
for fname in fnames:
|
|
145
|
+
if fname == excluding:
|
|
146
|
+
continue
|
|
147
|
+
c = by_filename(fname)
|
|
148
|
+
if c is not None and c.mmproj_filename == mmproj_name:
|
|
149
|
+
return True
|
|
150
|
+
return False
|
|
151
|
+
|
|
152
|
+
# For sidecar-deletion decisions the current-config model counts as a
|
|
153
|
+
# referencer even if its GGUF is missing (never yank the serving model's
|
|
154
|
+
# projector); for orphan detection only files actually on disk count.
|
|
155
|
+
with_current = present_main | ({current_filename} if current_filename else set())
|
|
156
|
+
|
|
157
|
+
def _mmproj_referenced_by_others(mmproj_name: str, excluding: str) -> bool:
|
|
158
|
+
return _referenced_by(mmproj_name, with_current, excluding)
|
|
159
|
+
|
|
160
|
+
entries: list[InstalledModel] = []
|
|
161
|
+
claimed_mmproj: set[str] = set()
|
|
162
|
+
|
|
163
|
+
# Complete main models first, then partials — stable, predictable indices.
|
|
164
|
+
for p in main_files:
|
|
165
|
+
choice = by_filename(p.name)
|
|
166
|
+
complete = _complete_on_disk(p, choice)
|
|
167
|
+
files: list[Path] = [p]
|
|
168
|
+
# A stale .part next to a complete file is leftover — clean it too.
|
|
169
|
+
part = p.with_name(p.name + ".part")
|
|
170
|
+
if part.is_file():
|
|
171
|
+
files.append(part)
|
|
172
|
+
files.extend(_hub_leftovers(d, p.name))
|
|
173
|
+
if choice is not None and choice.mmproj_filename:
|
|
174
|
+
mp = d / choice.mmproj_filename
|
|
175
|
+
if mp.is_file() and not _mmproj_referenced_by_others(
|
|
176
|
+
choice.mmproj_filename, excluding=p.name
|
|
177
|
+
):
|
|
178
|
+
files.append(mp)
|
|
179
|
+
claimed_mmproj.add(choice.mmproj_filename)
|
|
180
|
+
entries.append(InstalledModel(
|
|
181
|
+
name=choice.name if choice is not None else p.name,
|
|
182
|
+
key=choice.key if choice is not None else None,
|
|
183
|
+
path=p,
|
|
184
|
+
partial=not complete,
|
|
185
|
+
is_sidecar=False,
|
|
186
|
+
files=files,
|
|
187
|
+
))
|
|
188
|
+
|
|
189
|
+
# Bare partials (no complete file at the final name).
|
|
190
|
+
for p in main_parts:
|
|
191
|
+
final = p.name[:-5]
|
|
192
|
+
if any(e.path.name == final for e in entries):
|
|
193
|
+
continue # already bundled with the complete/undersized file above
|
|
194
|
+
choice = by_filename(final)
|
|
195
|
+
files = [p]
|
|
196
|
+
files.extend(_hub_leftovers(d, final))
|
|
197
|
+
entries.append(InstalledModel(
|
|
198
|
+
name=choice.name if choice is not None else final,
|
|
199
|
+
key=choice.key if choice is not None else None,
|
|
200
|
+
path=p,
|
|
201
|
+
partial=True,
|
|
202
|
+
is_sidecar=False,
|
|
203
|
+
files=files,
|
|
204
|
+
))
|
|
205
|
+
|
|
206
|
+
# Orphaned vision sidecars — mmproj files no ON-DISK model references
|
|
207
|
+
# and no entry above already claims. Listed so users can reclaim the
|
|
208
|
+
# space. (A sidecar referenced only by the current-config model is still
|
|
209
|
+
# listed — `in_use_reason` refuses its deletion with a clear message.)
|
|
210
|
+
for p in mmproj_files:
|
|
211
|
+
if p.name in claimed_mmproj:
|
|
212
|
+
continue
|
|
213
|
+
if _referenced_by(p.name, present_main, excluding=""):
|
|
214
|
+
continue
|
|
215
|
+
entries.append(InstalledModel(
|
|
216
|
+
name=f"{p.name} (vision sidecar, unused)",
|
|
217
|
+
key=None,
|
|
218
|
+
path=p,
|
|
219
|
+
partial=False,
|
|
220
|
+
is_sidecar=True,
|
|
221
|
+
files=[p],
|
|
222
|
+
))
|
|
223
|
+
|
|
224
|
+
return entries
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
def resolve_target(target: str, entries: list[InstalledModel]) -> InstalledModel | list[InstalledModel]:
|
|
228
|
+
"""Find the entry `target` refers to.
|
|
229
|
+
|
|
230
|
+
Accepts a 1-based index from the `/delete` listing, a catalog key
|
|
231
|
+
(``gemma-q8``), a filename (with or without ``.gguf``/``.part``), a
|
|
232
|
+
display name, or a unique case-insensitive substring. Returns the match,
|
|
233
|
+
or a (possibly empty) list of candidates when zero/many match.
|
|
234
|
+
"""
|
|
235
|
+
t = target.strip()
|
|
236
|
+
if t.isdigit():
|
|
237
|
+
idx = int(t) - 1
|
|
238
|
+
if 0 <= idx < len(entries):
|
|
239
|
+
return entries[idx]
|
|
240
|
+
return []
|
|
241
|
+
tl = t.lower()
|
|
242
|
+
# Exact identifiers first.
|
|
243
|
+
for e in entries:
|
|
244
|
+
candidates = {
|
|
245
|
+
(e.key or "").lower(),
|
|
246
|
+
e.name.lower(),
|
|
247
|
+
e.path.name.lower(),
|
|
248
|
+
e.filename.lower(),
|
|
249
|
+
e.filename.lower().removesuffix(".gguf"),
|
|
250
|
+
}
|
|
251
|
+
if tl in candidates:
|
|
252
|
+
return e
|
|
253
|
+
# Fall back to substring matching (unique match only).
|
|
254
|
+
subs = [
|
|
255
|
+
e for e in entries
|
|
256
|
+
if tl in e.name.lower()
|
|
257
|
+
or tl in e.filename.lower()
|
|
258
|
+
or (e.key is not None and tl in e.key.lower())
|
|
259
|
+
]
|
|
260
|
+
if len(subs) == 1:
|
|
261
|
+
return subs[0]
|
|
262
|
+
return subs
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
def in_use_reason(entry: InstalledModel, config) -> str | None:
|
|
266
|
+
"""Why `entry` must NOT be deleted right now — or None when it's safe.
|
|
267
|
+
|
|
268
|
+
Two hard blocks:
|
|
269
|
+
* it's the model the server is configured to serve right now;
|
|
270
|
+
* it has an in-flight (queued/downloading) background download.
|
|
271
|
+
"""
|
|
272
|
+
current = ""
|
|
273
|
+
try:
|
|
274
|
+
current = Path(getattr(config.runtime, "model", "") or "").name
|
|
275
|
+
except Exception:
|
|
276
|
+
current = ""
|
|
277
|
+
if current and current == entry.filename:
|
|
278
|
+
return (
|
|
279
|
+
f"{entry.name} is the model currently loaded by the server. "
|
|
280
|
+
f"Switch to another model with /model first, then delete it."
|
|
281
|
+
)
|
|
282
|
+
# Never yank the vision projector the serving model references.
|
|
283
|
+
if current:
|
|
284
|
+
cur_choice = by_filename(current)
|
|
285
|
+
if cur_choice is not None and cur_choice.mmproj_filename:
|
|
286
|
+
for f in entry.files:
|
|
287
|
+
if f.name == cur_choice.mmproj_filename:
|
|
288
|
+
return (
|
|
289
|
+
f"{f.name} is the vision sidecar of the currently "
|
|
290
|
+
f"loaded model ({cur_choice.name}). Switch models "
|
|
291
|
+
f"with /model first, then delete it."
|
|
292
|
+
)
|
|
293
|
+
try:
|
|
294
|
+
from . import bootstrap
|
|
295
|
+
for dl in bootstrap.list_active_downloads():
|
|
296
|
+
if dl.get("model_key") == entry.filename:
|
|
297
|
+
return (
|
|
298
|
+
f"{entry.name} is still downloading "
|
|
299
|
+
f"({dl.get('progress_pct', 0)}%). Let it finish — or "
|
|
300
|
+
f"restart LocalCode to stop the download — before deleting."
|
|
301
|
+
)
|
|
302
|
+
except Exception:
|
|
303
|
+
pass
|
|
304
|
+
return None
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
def delete_entry(entry: InstalledModel) -> tuple[bool, list[OutputLine], int]:
|
|
308
|
+
"""Remove every file belonging to `entry`. Returns (ok, lines, freed_bytes)."""
|
|
309
|
+
freed = 0
|
|
310
|
+
errors: list[OutputLine] = []
|
|
311
|
+
for f in entry.files:
|
|
312
|
+
try:
|
|
313
|
+
size = f.stat().st_size
|
|
314
|
+
except OSError:
|
|
315
|
+
size = 0
|
|
316
|
+
try:
|
|
317
|
+
f.unlink(missing_ok=True)
|
|
318
|
+
freed += size
|
|
319
|
+
except OSError as e:
|
|
320
|
+
errors.append(("error", f"Couldn't delete {f.name}: {e}"))
|
|
321
|
+
return (not errors), errors, freed
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
# ── The command itself ───────────────────────────────────────────────
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
def _listing_lines(entries: list[InstalledModel], d: Path,
|
|
328
|
+
current_filename: str | None = None) -> list[OutputLine]:
|
|
329
|
+
if not entries:
|
|
330
|
+
return [(
|
|
331
|
+
"info",
|
|
332
|
+
f"No downloaded models found in {d}.\n"
|
|
333
|
+
f"Use /model to browse and download one.",
|
|
334
|
+
)]
|
|
335
|
+
lines = [f"DOWNLOADED MODELS ({d})"]
|
|
336
|
+
name_w = max(len(e.name) for e in entries)
|
|
337
|
+
total = 0
|
|
338
|
+
for i, e in enumerate(entries, start=1):
|
|
339
|
+
size = e.size_bytes
|
|
340
|
+
total += size
|
|
341
|
+
tag = ""
|
|
342
|
+
if current_filename and e.filename == current_filename:
|
|
343
|
+
tag = " (in use — can't be deleted)"
|
|
344
|
+
elif e.partial:
|
|
345
|
+
tag = " (partial download)"
|
|
346
|
+
lines.append(f" {i}. {e.name.ljust(name_w)} {human_size(size):>9}{tag}")
|
|
347
|
+
lines.append("")
|
|
348
|
+
lines.append(f"Total on disk: {human_size(total)}")
|
|
349
|
+
lines.append("Delete one with /delete <number or name> — you'll be asked to confirm.")
|
|
350
|
+
return [("info", "\n".join(lines))]
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
def _not_found_lines(target: str, entries: list[InstalledModel],
|
|
354
|
+
candidates: list[InstalledModel]) -> list[OutputLine]:
|
|
355
|
+
if candidates:
|
|
356
|
+
opts = ", ".join(c.key or c.filename for c in candidates)
|
|
357
|
+
return [(
|
|
358
|
+
"error",
|
|
359
|
+
f"'{target}' matches more than one model: {opts}. "
|
|
360
|
+
f"Use the exact name, or its number from /delete.",
|
|
361
|
+
)]
|
|
362
|
+
if not entries:
|
|
363
|
+
return [(
|
|
364
|
+
"error",
|
|
365
|
+
f"No downloaded model matches '{target}' — nothing is downloaded yet.",
|
|
366
|
+
)]
|
|
367
|
+
valid = ", ".join(e.key or e.filename for e in entries)
|
|
368
|
+
return [(
|
|
369
|
+
"error",
|
|
370
|
+
f"No downloaded model matches '{target}'. Downloaded: {valid}. "
|
|
371
|
+
f"Run /delete to see the full list.",
|
|
372
|
+
)]
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
def _confirm_lines(entry: InstalledModel) -> list[OutputLine]:
|
|
376
|
+
lines = [f"Delete {entry.name}?"]
|
|
377
|
+
for f in entry.files:
|
|
378
|
+
try:
|
|
379
|
+
size = human_size(f.stat().st_size)
|
|
380
|
+
except OSError:
|
|
381
|
+
size = "?"
|
|
382
|
+
note = ""
|
|
383
|
+
if _is_mmproj(f.name):
|
|
384
|
+
note = " (vision sidecar, no longer needed by other models)"
|
|
385
|
+
elif f.name.endswith(".part") or f.suffix in (".incomplete", ".metadata"):
|
|
386
|
+
note = " (partial download)"
|
|
387
|
+
lines.append(f" {f.name} {size}{note}")
|
|
388
|
+
total = human_size(entry.size_bytes)
|
|
389
|
+
lines.append("")
|
|
390
|
+
if entry.partial:
|
|
391
|
+
lines.append(f"This frees {total}. The download is incomplete — deleting it "
|
|
392
|
+
f"means starting over from 0% if you want this model later.")
|
|
393
|
+
else:
|
|
394
|
+
lines.append(f"This frees {total} — but getting {entry.name} back later "
|
|
395
|
+
f"means re-downloading all {total}.")
|
|
396
|
+
handle = entry.key or entry.filename
|
|
397
|
+
lines.append(f"To proceed, run: /delete {handle} confirm")
|
|
398
|
+
lines.append("Nothing has been deleted.")
|
|
399
|
+
return [("info", "\n".join(lines))]
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
def run_delete_command(arg: str, config,
|
|
403
|
+
models_dir: Path | None = None) -> list[OutputLine]:
|
|
404
|
+
"""Execute `/delete <arg>` and return the lines to print.
|
|
405
|
+
|
|
406
|
+
`arg` is everything after `/delete` (may be empty). Deletion happens
|
|
407
|
+
ONLY when the last token is the literal word `confirm` AND the target
|
|
408
|
+
resolves AND the model isn't in use.
|
|
409
|
+
"""
|
|
410
|
+
d = models_dir if models_dir is not None else model_dir()
|
|
411
|
+
current = ""
|
|
412
|
+
try:
|
|
413
|
+
current = Path(getattr(config.runtime, "model", "") or "").name
|
|
414
|
+
except Exception:
|
|
415
|
+
current = ""
|
|
416
|
+
entries = list_installed(d, current_filename=current or None)
|
|
417
|
+
|
|
418
|
+
tokens = arg.split()
|
|
419
|
+
confirmed = len(tokens) >= 2 and tokens[-1].lower() == "confirm"
|
|
420
|
+
target = " ".join(tokens[:-1] if confirmed else tokens).strip()
|
|
421
|
+
|
|
422
|
+
# `/delete` (or a stray bare `/delete confirm`) → list, delete nothing.
|
|
423
|
+
if not target:
|
|
424
|
+
return _listing_lines(entries, d, current_filename=current or None)
|
|
425
|
+
|
|
426
|
+
found = resolve_target(target, entries)
|
|
427
|
+
if not isinstance(found, InstalledModel):
|
|
428
|
+
return _not_found_lines(target, entries, found)
|
|
429
|
+
|
|
430
|
+
reason = in_use_reason(found, config)
|
|
431
|
+
if reason is not None:
|
|
432
|
+
return [("error", f"Can't delete: {reason}")]
|
|
433
|
+
|
|
434
|
+
if not confirmed:
|
|
435
|
+
return _confirm_lines(found)
|
|
436
|
+
|
|
437
|
+
ok, errors, freed = delete_entry(found)
|
|
438
|
+
if ok:
|
|
439
|
+
return [("info", f"Deleted {found.name} — freed {human_size(freed)}.")]
|
|
440
|
+
out: list[OutputLine] = list(errors)
|
|
441
|
+
if freed:
|
|
442
|
+
out.append(("info", f"Partially deleted {found.name} — freed {human_size(freed)} "
|
|
443
|
+
f"but some files remain (see above)."))
|
|
444
|
+
return out
|
|
@@ -176,33 +176,11 @@ CHOICES: list[ModelChoice] = [
|
|
|
176
176
|
architecture="gemma4-iswa",
|
|
177
177
|
license="Gemma (Google) — research + commercial w/ attribution",
|
|
178
178
|
humaneval_pass_at_1=0.951, # 156/164 measured on this stack 2026-04-22
|
|
179
|
-
notes="Comfortable fit on 16 GB Mac. Has Apr-11 chat template + Apr-8 tokenizer fixes. Tool calling via Gemma 4 native format. Measured 95.1% HumanEval pass@1 at IQ3_S + TurboQuant KV on our harness.",
|
|
179
|
+
notes="Comfortable fit on 16 GB Mac. Has Apr-11 chat template + Apr-8 tokenizer fixes. Tool calling via Gemma 4 native format. Measured 95.1% HumanEval pass@1 at IQ3_S + TurboQuant KV on our harness. Upstream silently refreshed these weights 2026-07-16 (tool-calling + vision fixes, same filenames) — copies downloaded before then are stale; delete and re-download to pick up the fixes.",
|
|
180
180
|
mmproj_filename="mmproj-gemma-4-26B-A4B-F16.gguf",
|
|
181
181
|
mmproj_size_gb=1.2,
|
|
182
182
|
mmproj_hf_filename="mmproj-F16.gguf",
|
|
183
183
|
),
|
|
184
|
-
ModelChoice(
|
|
185
|
-
key="gemma-12b",
|
|
186
|
-
name="Gemma 4 12B (Q4)",
|
|
187
|
-
hf_repo="unsloth/gemma-4-12b-it-GGUF",
|
|
188
|
-
filename="gemma-4-12b-it-UD-Q4_K_XL.gguf",
|
|
189
|
-
size_gb=7.37,
|
|
190
|
-
active_params="12B (dense)",
|
|
191
|
-
architecture="gemma4-iswa",
|
|
192
|
-
license="Apache 2.0",
|
|
193
|
-
humaneval_pass_at_1=None,
|
|
194
|
-
notes=(
|
|
195
|
-
"Mid-sized dense Gemma 4 — sits between E4B and the 26B MoE. "
|
|
196
|
-
"UD-Q4_K_XL fits 16 GB unified memory (~7.4 GB weights + KV + mmproj). "
|
|
197
|
-
"Native multimodal (vision + audio per Google's Gemma 4 announcement). "
|
|
198
|
-
"Apache 2.0 licensed. No HumanEval number yet, but the GGUF/arch/mmproj "
|
|
199
|
-
"filenames are verified against the repo (2026-06-12) and the model passes "
|
|
200
|
-
"a real chat + tool-call turn on this stack."
|
|
201
|
-
),
|
|
202
|
-
mmproj_filename="mmproj-gemma-4-12b-F16.gguf",
|
|
203
|
-
mmproj_size_gb=0.86, # 862 MB; repo offers BF16 + F16, both 862 MB
|
|
204
|
-
mmproj_hf_filename="mmproj-F16.gguf",
|
|
205
|
-
),
|
|
206
184
|
ModelChoice(
|
|
207
185
|
key="gemma-12b-bf16",
|
|
208
186
|
name="Gemma 4 12B (BF16, full)",
|
|
@@ -226,6 +204,73 @@ CHOICES: list[ModelChoice] = [
|
|
|
226
204
|
mmproj_size_gb=0.86, # 862 MB; repo offers BF16 + F16, both 862 MB
|
|
227
205
|
mmproj_hf_filename="mmproj-F16.gguf",
|
|
228
206
|
),
|
|
207
|
+
ModelChoice(
|
|
208
|
+
key="gemma-12b-qat",
|
|
209
|
+
name="Gemma 4 12B QAT (Q4)",
|
|
210
|
+
hf_repo="unsloth/gemma-4-12B-it-qat-GGUF",
|
|
211
|
+
filename="gemma-4-12B-it-qat-UD-Q4_K_XL.gguf",
|
|
212
|
+
size_gb=6.72,
|
|
213
|
+
active_params="12B (dense)",
|
|
214
|
+
architecture="gemma4-iswa",
|
|
215
|
+
license="Apache 2.0",
|
|
216
|
+
humaneval_pass_at_1=None,
|
|
217
|
+
notes=(
|
|
218
|
+
"Quantization-aware-trained 12B — Google trained the quantized weights "
|
|
219
|
+
"directly, so Q4 keeps near-BF16 quality at 6.7 GB (vs 7.4 GB for the "
|
|
220
|
+
"post-hoc Q4 entry). Lightest full-quality Gemma pick for 16 GB Macs. "
|
|
221
|
+
"Repo ships a single UD-Q4_K_XL quant. NOTE: its mmproj sidecar is a "
|
|
222
|
+
"smaller ~175 MB projector than the 862 MB one in the non-QAT repo — "
|
|
223
|
+
"vision output is untested on this stack. Filenames verified against "
|
|
224
|
+
"the repo (2026-07-19); weights carry the 2026-07-17 upstream refresh."
|
|
225
|
+
),
|
|
226
|
+
mmproj_filename="mmproj-gemma-4-12B-qat-F16.gguf",
|
|
227
|
+
mmproj_size_gb=0.18,
|
|
228
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
229
|
+
),
|
|
230
|
+
ModelChoice(
|
|
231
|
+
key="gemma-qat",
|
|
232
|
+
name="Gemma 4 26B-A4B QAT (Q4)",
|
|
233
|
+
hf_repo="unsloth/gemma-4-26B-A4B-it-qat-GGUF",
|
|
234
|
+
filename="gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf",
|
|
235
|
+
size_gb=14.25,
|
|
236
|
+
active_params="3.8B (top-8 of 128 experts)",
|
|
237
|
+
architecture="gemma4-iswa",
|
|
238
|
+
license="Apache 2.0",
|
|
239
|
+
humaneval_pass_at_1=None,
|
|
240
|
+
notes=(
|
|
241
|
+
"Quantization-aware-trained 26B MoE — same architecture and decode "
|
|
242
|
+
"speed class as the IQ3_S entry but QAT preserves near-BF16 quality "
|
|
243
|
+
"at Q4. 14.3 GB weights → needs 32 GB unified memory (the IQ3_S entry "
|
|
244
|
+
"remains the 16 GB pick). Repo ships a single UD-Q4_K_XL quant. "
|
|
245
|
+
"Filenames verified against the repo (2026-07-19); weights carry the "
|
|
246
|
+
"2026-07-17 upstream refresh (tool-calling + vision fixes)."
|
|
247
|
+
),
|
|
248
|
+
mmproj_filename="mmproj-gemma-4-26B-A4B-qat-F16.gguf",
|
|
249
|
+
mmproj_size_gb=1.19,
|
|
250
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
251
|
+
),
|
|
252
|
+
ModelChoice(
|
|
253
|
+
key="gemma-31b-qat",
|
|
254
|
+
name="Gemma 4 31B QAT (Q4)",
|
|
255
|
+
hf_repo="unsloth/gemma-4-31B-it-qat-GGUF",
|
|
256
|
+
filename="gemma-4-31B-it-qat-UD-Q4_K_XL.gguf",
|
|
257
|
+
size_gb=17.29,
|
|
258
|
+
active_params="31B (dense)",
|
|
259
|
+
architecture="gemma4-iswa",
|
|
260
|
+
license="Apache 2.0",
|
|
261
|
+
humaneval_pass_at_1=None,
|
|
262
|
+
notes=(
|
|
263
|
+
"Largest dense Gemma 4 — first 31B entry in the catalog. QAT Q4 keeps "
|
|
264
|
+
"near-BF16 quality at 17.3 GB, but dense 31B decode is memory-bandwidth "
|
|
265
|
+
"bound: expect roughly a third of the 26B MoE's speed. Needs ≥32 GB "
|
|
266
|
+
"unified memory (tight); comfortable at 48-64 GB. Repo ships a single "
|
|
267
|
+
"UD-Q4_K_XL quant. Filenames verified against the repo (2026-07-19); "
|
|
268
|
+
"weights carry the 2026-07-17 upstream refresh."
|
|
269
|
+
),
|
|
270
|
+
mmproj_filename="mmproj-gemma-4-31B-qat-F16.gguf",
|
|
271
|
+
mmproj_size_gb=1.2,
|
|
272
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
273
|
+
),
|
|
229
274
|
ModelChoice(
|
|
230
275
|
key="qwen",
|
|
231
276
|
name="Qwen 3.6 35B-A3B (Q2)",
|
|
@@ -286,7 +331,7 @@ CHOICES: list[ModelChoice] = [
|
|
|
286
331
|
architecture="gemma4-iswa",
|
|
287
332
|
license="Gemma (Google) — research + commercial w/ attribution",
|
|
288
333
|
humaneval_pass_at_1=None,
|
|
289
|
-
notes="High-RAM workstation pick — same MoE architecture as the small Gemma entry, just near-lossless Q8 quant instead of IQ3_S. 3.8B active params = same decode speed class as the IQ3 version (~95 tok/s on M5 Max) at ~99% of BF16 quality vs ~80% on IQ3. Native multimodal — pair with the F16 mmproj for image input. Requires ≥48 GB unified memory; sweet spot on 128 GB Apple Silicon.",
|
|
334
|
+
notes="High-RAM workstation pick — same MoE architecture as the small Gemma entry, just near-lossless Q8 quant instead of IQ3_S. 3.8B active params = same decode speed class as the IQ3 version (~95 tok/s on M5 Max) at ~99% of BF16 quality vs ~80% on IQ3. Native multimodal — pair with the F16 mmproj for image input. Requires ≥48 GB unified memory; sweet spot on 128 GB Apple Silicon. Upstream silently refreshed these weights 2026-07-16 (tool-calling + vision fixes, same filenames) — copies downloaded before then are stale; delete and re-download.",
|
|
290
335
|
mmproj_filename="mmproj-gemma-4-26B-A4B-F16.gguf",
|
|
291
336
|
mmproj_size_gb=1.2,
|
|
292
337
|
mmproj_hf_filename="mmproj-F16.gguf",
|
|
@@ -345,10 +390,12 @@ _NO_AUTO_RECOMMEND_ARCHS = {"diffusion_gemma", "cohere2_moe"}
|
|
|
345
390
|
_RECOMMEND_ORDER = [
|
|
346
391
|
"qwen-q8", # 35B-A3B MoE, near-lossless Q8
|
|
347
392
|
"gemma-q8", # 26B-A4B MoE, near-lossless Q8
|
|
393
|
+
"gemma-qat", # 26B-A4B MoE, QAT Q4 — near-BF16 at half the Q8 size
|
|
348
394
|
"qwen", # 35B-A3B MoE Q2 — 94.7% HumanEval
|
|
349
395
|
"gemma", # 26B-A4B MoE Q3 — 95.1% HumanEval
|
|
396
|
+
"gemma-31b-qat", # 31B dense QAT Q4 — capable but dense-slow decode
|
|
350
397
|
"gemma-12b-bf16", # 12B dense, full precision
|
|
351
|
-
"gemma-12b",
|
|
398
|
+
"gemma-12b-qat", # 12B dense QAT Q4 — lightest full-quality pick
|
|
352
399
|
]
|
|
353
400
|
|
|
354
401
|
|
|
@@ -524,6 +571,57 @@ MODEL_GROUPS: list[ModelGroup] = [
|
|
|
524
571
|
mmproj_size_gb=0.86,
|
|
525
572
|
mmproj_hf_filename="mmproj-F16.gguf",
|
|
526
573
|
),
|
|
574
|
+
ModelGroup(
|
|
575
|
+
key="gemma-4-12b-qat",
|
|
576
|
+
display_name="Gemma 4 12B QAT",
|
|
577
|
+
maker="Google",
|
|
578
|
+
hf_repo="unsloth/gemma-4-12B-it-qat-GGUF",
|
|
579
|
+
family="gemma4",
|
|
580
|
+
architecture="gemma4-iswa",
|
|
581
|
+
license="Apache 2.0",
|
|
582
|
+
notes=(
|
|
583
|
+
"Quantization-aware-trained 12B — near-BF16 quality at Q4. The repo "
|
|
584
|
+
"ships a single UD-Q4_K_XL quant plus a smaller ~175 MB mmproj "
|
|
585
|
+
"(vision untested on this stack)."
|
|
586
|
+
),
|
|
587
|
+
mmproj_filename="mmproj-gemma-4-12B-qat-F16.gguf",
|
|
588
|
+
mmproj_size_gb=0.18,
|
|
589
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
590
|
+
),
|
|
591
|
+
ModelGroup(
|
|
592
|
+
key="gemma-4-26b-a4b-qat",
|
|
593
|
+
display_name="Gemma 4 26B-A4B QAT",
|
|
594
|
+
maker="Google",
|
|
595
|
+
hf_repo="unsloth/gemma-4-26B-A4B-it-qat-GGUF",
|
|
596
|
+
family="gemma4",
|
|
597
|
+
architecture="gemma4-iswa",
|
|
598
|
+
license="Apache 2.0",
|
|
599
|
+
notes=(
|
|
600
|
+
"Quantization-aware-trained 26B MoE — near-BF16 quality at Q4, "
|
|
601
|
+
"~3.8B active (top-8 of 128 experts). Single UD-Q4_K_XL quant; "
|
|
602
|
+
"needs 32 GB unified memory."
|
|
603
|
+
),
|
|
604
|
+
mmproj_filename="mmproj-gemma-4-26B-A4B-qat-F16.gguf",
|
|
605
|
+
mmproj_size_gb=1.19,
|
|
606
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
607
|
+
),
|
|
608
|
+
ModelGroup(
|
|
609
|
+
key="gemma-4-31b-qat",
|
|
610
|
+
display_name="Gemma 4 31B QAT",
|
|
611
|
+
maker="Google",
|
|
612
|
+
hf_repo="unsloth/gemma-4-31B-it-qat-GGUF",
|
|
613
|
+
family="gemma4",
|
|
614
|
+
architecture="gemma4-iswa",
|
|
615
|
+
license="Apache 2.0",
|
|
616
|
+
notes=(
|
|
617
|
+
"Largest dense Gemma 4 — QAT Q4, near-BF16 quality. Single "
|
|
618
|
+
"UD-Q4_K_XL quant (~17.3 GB); needs ≥32 GB unified memory, "
|
|
619
|
+
"comfortable at 48-64 GB."
|
|
620
|
+
),
|
|
621
|
+
mmproj_filename="mmproj-gemma-4-31B-qat-F16.gguf",
|
|
622
|
+
mmproj_size_gb=1.2,
|
|
623
|
+
mmproj_hf_filename="mmproj-F16.gguf",
|
|
624
|
+
),
|
|
527
625
|
ModelGroup(
|
|
528
626
|
key="qwen-3.6-35b-a3b",
|
|
529
627
|
display_name="Qwen 3.6 35B-A3B",
|
|
@@ -571,8 +669,10 @@ MODEL_GROUPS: list[ModelGroup] = [
|
|
|
571
669
|
"one-shot llama-diffusion-cli runner (llama.cpp PR #24423, built "
|
|
572
670
|
"automatically on first setup, ~3-6 min) — NOT llama-server: "
|
|
573
671
|
"output arrives in coarse chunks and weights re-map each turn "
|
|
574
|
-
"(first turn slow, later turns page-cache fast).
|
|
575
|
-
"
|
|
672
|
+
"(first turn slow, later turns page-cache fast). The repo ships "
|
|
673
|
+
"plain quants only (Q4_K_M/Q5_K_M/Q6_K/Q8_0/BF16, no UD-* "
|
|
674
|
+
"dynamic quants); Q4_K_M (~15.7 GB) is the recommended pick. "
|
|
675
|
+
"Text-only."
|
|
576
676
|
),
|
|
577
677
|
# Text-only: no vision sidecar.
|
|
578
678
|
),
|