localcode 0.3.44__tar.gz → 0.3.45__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.44/src/localcode.egg-info → localcode-0.3.45}/PKG-INFO +3 -2
- {localcode-0.3.44 → localcode-0.3.45}/README.md +2 -1
- {localcode-0.3.44 → localcode-0.3.45}/pyproject.toml +1 -1
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/__init__.py +1 -1
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/bootstrap.py +91 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/config.py +3 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/models_catalog.py +48 -1
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/runtime.py +37 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/screens/chat.py +16 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/screens/setup.py +22 -0
- {localcode-0.3.44 → localcode-0.3.45/src/localcode.egg-info}/PKG-INFO +3 -2
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_models_matrix.py +16 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_models_catalog.py +1 -0
- {localcode-0.3.44 → localcode-0.3.45}/LICENSE +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/MANIFEST.in +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/CMakePresets.json +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/LICENSE +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/arm64-apple-clang.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/arm64-windows-llvm.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/build-info.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/common.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/download-models.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/git-vars.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/license.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/llama-config.cmake.in +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/llama.pc.in +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/riscv64-spacemit-linux-gnu-gcc.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/cmake/x64-windows-llvm.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/arg.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/arg.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/base64.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-diff-analyzer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-peg-parser.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-peg-parser.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/common.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/console.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/console.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/debug.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/debug.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/download.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/download.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/hf-cache.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/hf-cache.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/http.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/caps.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/caps.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/lexer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/lexer.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/parser.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/parser.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/runtime.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/runtime.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/string.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/string.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/value.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/jinja/value.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/json-partial.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/json-partial.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/json-schema-to-grammar.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/llguidance.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/log.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/log.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-cache.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-cache.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-map.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-map.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-mod.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/ngram-mod.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/peg-parser.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/peg-parser.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/preset.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/preset.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/reasoning-budget.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/reasoning-budget.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/regex-partial.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/regex-partial.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/sampling.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/sampling.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/speculative.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/speculative.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/unicode.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/unicode.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-alloc.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-backend.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-blas.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-cann.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-cpp.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-cpu.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-cuda.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-hexagon.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-metal.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-opencl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-openvino.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-opt.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-rpc.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-sycl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-virtgpu.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-vulkan.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-webgpu.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-zdnn.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml-zendnn.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/ggml.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/include/gguf.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-alloc.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-backend-dl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-backend-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-backend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-blas/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-blas/ggml-blas.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cann/ggml-cann.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/amx.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/amx/mmq.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/cpu-feats.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/arm/repack.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/loongarch/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/cpu-feats.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/powerpc/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/cpu-feats.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/riscv/repack.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/cpu-feats.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/s390/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/wasm/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/cpu-feats.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch/x86/repack.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/arch-fallback.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/binary-ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/cmake/FindSIMD.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/ggml-cpu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/hbm.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kernels.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/kleidiai/kleidiai.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/llamafile/sgemm.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/quants.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/repack.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-gemm.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/simd-mappings.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime1_kernels.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/spacemit/ime_kernels.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/traits.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/unary-ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cpu/vec.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cuda/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/ggml-hexagon.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/act-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/argsort-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/binary-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cmake-toolchain.cmake +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cpy-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/cumsum-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/flash-attn-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/get-rows-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dma.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-dump.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-fastdiv.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hex-utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-matmul-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-profile.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hmx-utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ctx.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-msg.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/htp-ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-arith.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-base.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-copy.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-div.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-dump.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-exp.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-floor.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-inverse.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-reduce.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-scale.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sigmoid.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-sqrt.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-types.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/hvx-utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/main.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/matmul-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/repeat-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/rope-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/set-rows-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/softmax-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/ssm-conv.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/sum-rows-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/unary-ops.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp/worker-pool.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/htp-drv.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/libdl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hexagon/op-desc.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-hip/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-context.m +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-device.m +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal-ops.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/ggml-metal.metal +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-matrices.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-metal/turbo-wht.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-musa/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-opencl/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-opencl/ggml-opencl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-decoder.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino-extra.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-openvino.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/ggml-quants.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/decoder.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/frontend.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/input_model.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/node_context.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cont.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/cpy.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/flash_attn_ext.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/get_rows.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_geglu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/glu_swiglu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/mulmat.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/permute.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/reshape.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rms_norm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/rope.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/scale.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/set_rows.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/softmax.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/transpose.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/unary_silu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op/view.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/op_table.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/eliminate_zp.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/fuse_to_sdpa.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/mark_decompression_convert_constant_folding.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/pass/squeeze_matmul.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/translate_session.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/openvino/utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-openvino/utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-opt.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-quants.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-quants.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-rpc/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-rpc/ggml-rpc.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/add-id.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/backend.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/binbcast.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/common.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/concat.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/conv.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/convert.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/count-equal.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/cpy.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/element_wise.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-common.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-tile.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn-vec.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/fattn.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/gated_delta_net.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/getrows.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/ggml-sycl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/gla.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/norm.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/outprod.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/pad_reflect_1d.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/presets.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/quantize.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/quants.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/repeat_back.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/roll.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/rope.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/set.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/set_rows.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/ssm_conv.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/sycl_hw.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq112-dv112.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq128-dv128.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq256-dv256.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq40-dv40.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq576-dv512.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq64-dv64.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq72-dv72.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq80-dv80.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-tile-instance-dkq96-dv96.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-f16-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_0-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q4_1-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_0-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q5_1-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-f16.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q4_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q5_1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/template-instances/fattn-vec-instance-q8_0-q8_0.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/type.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/upscale.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-sycl/wkv.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-threading.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-threading.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-turbo-quant.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-convert.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-backend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched-device.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.gen.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-dispatched.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend-virgl-apir.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/backend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/api_remoting.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.gen.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_backend.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_ggml.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/backend/shared/apir_cs_rpc.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer-type.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-buffer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-device.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend-reg.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-backend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/ggml-remoting.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/include/apir_hw.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-apir.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-backend.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-buffer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-device.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-forward.gen.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-shm.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu-utils.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-virtgpu/virtgpu.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-vulkan/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-vulkan/ggml-vulkan.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-vulkan/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-webgpu/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu-shader-lib.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-webgpu/ggml-webgpu.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-webgpu/pre_wgsl.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/common.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/ggml-zdnn.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/mmf.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zdnn/utils.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zendnn/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml-zendnn/ggml-zendnn.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml.c +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/ggml.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/ggml/src/gguf.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/include/llama-cpp.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/include/llama.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/licenses/LICENSE-jsonhpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-adapter.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-adapter.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-arch.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-arch.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-batch.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-batch.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-chat.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-chat.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-context.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-context.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-cparams.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-cparams.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-ext.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-grammar.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-grammar.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-graph.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-graph.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-hparams.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-hparams.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-impl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-io.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-io.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-kv-cache-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-kv-cache-iswa.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-kv-cache.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-kv-cache.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-kv-cells.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-hybrid-iswa.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-hybrid.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-hybrid.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-recurrent.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory-recurrent.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-memory.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-mmap.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-mmap.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model-loader.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model-loader.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model-saver.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model-saver.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-model.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-quant.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-quant.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-sampler.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-sampler.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-vocab.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama-vocab.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/llama.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/afmoe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/apertus.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/arcee.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/arctic.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/arwkv7.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/baichuan.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/bailingmoe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/bailingmoe2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/bert.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/bitnet.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/bloom.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/chameleon.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/chatglm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/codeshell.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/cogvlm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/cohere2-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/command-r.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/dbrx.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/deci.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/deepseek.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/deepseek2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/delta-net-base.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/dots1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/dream.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/ernie4-5-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/ernie4-5.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/eurobert.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/exaone-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/exaone.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/exaone4.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/falcon-h1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/falcon.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma-embedding.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma2-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma3n-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gemma4-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/glm4-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/glm4.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gpt2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/gptneox.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/granite-hybrid.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/granite.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/grok.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/grovemoe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/hunyuan-dense.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/hunyuan-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/internlm2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/jais.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/jais2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/jamba.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/kimi-linear.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/lfm2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/llada-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/llada.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/llama-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/llama.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/maincoder.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/mamba-base.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/mamba.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/mimo2-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/minicpm3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/minimax-m2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/mistral3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/models.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/modern-bert.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/mpt.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/nemotron-h.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/nemotron.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/neo-bert.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/olmo.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/olmo2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/olmoe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/openai-moe-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/openelm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/orion.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/paddleocr.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/pangu-embedded.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/phi2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/phi3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/plamo.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/plamo2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/plamo3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/plm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen2moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen2vl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen35.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen35moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen3moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen3next.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen3vl-moe.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/qwen3vl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/refact.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rnd1.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rwkv6-base.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rwkv6.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rwkv6qwen2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rwkv7-base.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/rwkv7.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/seed-oss.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/smallthinker.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/smollm3.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/stablelm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/starcoder.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/starcoder2.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/step35-iswa.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/t5-dec.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/t5-enc.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/wavtokenizer-dec.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/models/xverse.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/turbo-rotation-data-32.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/turbo-rotation-data.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/unicode-data.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/unicode-data.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/unicode.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/src/unicode.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/batched-bench/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/batched-bench/batched-bench.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cli/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cli/cli.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/completion/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/completion/completion.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cvector-generator/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cvector-generator/cvector-generator.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cvector-generator/mean.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/cvector-generator/pca.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/export-lora/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/export-lora/export-lora.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/fit-params/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/fit-params/fit-params.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/gguf-split/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/gguf-split/gguf-split.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/imatrix/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/imatrix/imatrix.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/llama-bench/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/llama-bench/llama-bench.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/clip-graph.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/clip-impl.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/clip-model.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/clip.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/clip.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/debug/mtmd-debug.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/deprecation-warning.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/cogvlm.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/conformer.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/deepseekocr.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/gemma4v.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/glm4v.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/hunyuanocr.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/internvl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/kimik25.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/kimivl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/llama4.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/llava.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/minicpmv.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/mobilenetv5.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/models.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/nemotron-v2-vl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/paddleocr.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/pixtral.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/qwen2vl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/qwen3vl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/siglip.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/whisper-enc.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/models/youtuvl.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-audio.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-cli.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-helper.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-image.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd-image.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/mtmd/mtmd.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/parser/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/parser/debug-template-parser.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/parser/template-analysis.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/perplexity/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/perplexity/perplexity.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/quantize/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/quantize/quantize.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/results/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/results/results.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/rpc/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/rpc/rpc-server.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-common.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-common.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-context.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-context.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-cors-proxy.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-http.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-http.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-models.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-models.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-queue.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-queue.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-task.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-task.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-tools.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server-tools.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/server/server.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/tokenize/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/tokenize/tokenize.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/tts/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/tools/tts/tts.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/cpp-httplib/CMakeLists.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.cpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/cpp-httplib/httplib.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/miniaudio/miniaudio.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/nlohmann/json.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/nlohmann/json_fwd.hpp +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/sheredom/subprocess.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/vendor/stb/stb_image.h +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/setup.cfg +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/setup.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/__main__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/_subproc_env.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/app_tasks.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/constants.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/context.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/goal.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/helpers.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/hooks.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/loop.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/prompt_context.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/prompts.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/reasoning_loop.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/recovery.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/recovery_controller.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/round_policy.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/sections.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/state_machine.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/streaming.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/tool_execution.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/tool_orchestration.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/agent/turn_finalization.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/app.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/approvals.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/auto_compact.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/autonomy.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/bin/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/bin/llama-server +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/cache.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/checkpoint.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/compact.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/compaction.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/composer.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/context.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/display.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/embeddings.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/entrypoint.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/errors.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/events.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/evidence.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/execution_policy.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/features.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/formatting.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/headless_json.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/health.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/hf_quants.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/history.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/hooks.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/indexer.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/injection_defense.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/launcher.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/logging_utils.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/lsp.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/mcp/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/mcp/_bridge.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/mcp/_config.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/mcp/_transports.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/mcp/client.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/memory_guard.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/model_config.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/model_delete.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/model_families.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/models.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/notebook.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/output.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/patching.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/paths.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/performance.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/permissions.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/permissions_v2.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/plans.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/process_registry.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/protocol/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/protocol/events.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/protocol/jsonl.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/protocol/outcomes.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/reasoning_capabilities.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/recommendations.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/recovery.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/runtime_diffusion.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/server_manager.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/session.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/shell.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/debug.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/edit-verified.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/explain.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/finish-verified.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/git-commit-safely.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/locate.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/plan-task.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/review.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills/run-tests.md +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/skills.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/snapshots.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/sounds.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/telemetry.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/theme.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/thermal.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/thinking.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tool_router.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/toolkit.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/agent.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/append_file.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/background_process.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/base.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/bash.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/code_navigation.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/edit_diff.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/edit_file.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/facts.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/glob_tool.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/grep.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/launch_app.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/list_files.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/multi_edit.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/plan_mode.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/project_check.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/read_file.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/read_state.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/skill_tool.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/syntax_check.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/todo_write.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/tool_call_repair.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/web_fetch.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/web_search.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tools/write_file.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/app.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/bridge.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/clipboard_image.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/paste_collapse.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/screens/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/screens/mode_picker.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/screens/model_picker.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/styles/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/styles/app.tcss +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/approval.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/chat_log.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/messages/__init__.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/messages/diff.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/tui/widgets/voice_visualizer.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/turn_diff.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/undo.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/verification.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode/voice.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode.egg-info/SOURCES.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode.egg-info/dependency_links.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode.egg-info/entry_points.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode.egg-info/requires.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/src/localcode.egg-info/top_level.txt +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_agent_event_regressions.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_agent_state_machine.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_anchor_guard.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_architecture.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_bootstrap.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_chat_worker_cancel.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_checkpoint.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_churn_detection.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_clipboard_image.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_code_navigation_and_processes.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_compaction.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_compaction_threshold.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_agent.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_bg_download.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_binary.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_cli.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_diffusion.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_download.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_hardening.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_install.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_machines.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_model_picker.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_tui.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_vision.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_voice.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_comprehensive_whisper.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_config.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_context.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_context_pipeline_e2e.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_delete_command.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_download.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_edit_guard_and_fuzzy.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_embeddings_retrieval.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_ephemeral_context_role.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_evidence_and_lifecycle_hooks.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_execution_policies.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_fresh_install.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_home_build_anchor.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_kv_cap.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_loop_recovery_ladder.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_model_config.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_not_found_recovery.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_output.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_paste_collapse.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_path_healing.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_prompt_language_steering.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_protocol.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_quant_browser_and_thinking.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_ram_ctx_ladder.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_real_models.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_reasoning_capabilities.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_reasoning_loop.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_run_json.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_runtime.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_security_hardening.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_subproc_env.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_syntax_check.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_task_statement_pinning.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_thermal.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_toolkit.py +0 -0
- {localcode-0.3.44 → localcode-0.3.45}/tests/test_tui_input.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: localcode
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.45
|
|
4
4
|
Summary: High-performance AI coding on consumer hardware.
|
|
5
5
|
Author: LocalCode contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -135,13 +135,14 @@ On launch, LocalCode recommends the best model for **your Mac's RAM** — there'
|
|
|
135
135
|
| Gemma 4 26B-A4B | 11.2 GB (Q3) | 3.8B (8/128 experts) | 24 GB | gemma4-iswa |
|
|
136
136
|
| Qwen 3.6 35B-A3B | 10.7 GB (Q2) | 3.0B (8+1/256) | 24 GB | qwen35moe |
|
|
137
137
|
| Qwen 3.8 27B | 17.9 GB (Q4) | 27B (dense) | 32 GB | qwen35 |
|
|
138
|
+
| Muse Glimmer 30B † | 15.9 GB (Q4) | 30B (dense, multimodal) | 32 GB | muse_glimmer |
|
|
138
139
|
| DiffusionGemma 26B-A4B † | 15.7 GB (Q4) | 4B (diffusion MoE) | 32 GB | diffusion_gemma |
|
|
139
140
|
| North-Mini-Code 30B-A3B † | 17.9 GB (Q4) | 3B (30B MoE) | 36 GB | cohere2_moe |
|
|
140
141
|
| Gemma 4 12B (full) | 23.8 GB (BF16) | 12B (dense) | 48 GB | gemma4-iswa |
|
|
141
142
|
| Gemma 4 26B-A4B | 28 GB (Q8) | 3.8B (8/128 experts) | 64 GB | gemma4-iswa |
|
|
142
143
|
| Qwen 3.6 35B-A3B | 38.5 GB (Q8) | 3.0B (8+1/256) | 96 GB | qwen35moe |
|
|
143
144
|
|
|
144
|
-
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended
|
|
145
|
+
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended. DiffusionGemma needs a separate runner; `cohere2_moe` is unvalidated on this stack; Muse Glimmer's `muse_glimmer` arch isn't in the TurboQuant server, so LocalCode builds a dedicated stock llama-server (llama.cpp PR #26841) on first use and serves it without TurboQuant KV compression.
|
|
145
146
|
|
|
146
147
|
## How LocalCode works
|
|
147
148
|
|
|
@@ -88,13 +88,14 @@ On launch, LocalCode recommends the best model for **your Mac's RAM** — there'
|
|
|
88
88
|
| Gemma 4 26B-A4B | 11.2 GB (Q3) | 3.8B (8/128 experts) | 24 GB | gemma4-iswa |
|
|
89
89
|
| Qwen 3.6 35B-A3B | 10.7 GB (Q2) | 3.0B (8+1/256) | 24 GB | qwen35moe |
|
|
90
90
|
| Qwen 3.8 27B | 17.9 GB (Q4) | 27B (dense) | 32 GB | qwen35 |
|
|
91
|
+
| Muse Glimmer 30B † | 15.9 GB (Q4) | 30B (dense, multimodal) | 32 GB | muse_glimmer |
|
|
91
92
|
| DiffusionGemma 26B-A4B † | 15.7 GB (Q4) | 4B (diffusion MoE) | 32 GB | diffusion_gemma |
|
|
92
93
|
| North-Mini-Code 30B-A3B † | 17.9 GB (Q4) | 3B (30B MoE) | 36 GB | cohere2_moe |
|
|
93
94
|
| Gemma 4 12B (full) | 23.8 GB (BF16) | 12B (dense) | 48 GB | gemma4-iswa |
|
|
94
95
|
| Gemma 4 26B-A4B | 28 GB (Q8) | 3.8B (8/128 experts) | 64 GB | gemma4-iswa |
|
|
95
96
|
| Qwen 3.6 35B-A3B | 38.5 GB (Q8) | 3.0B (8+1/256) | 96 GB | qwen35moe |
|
|
96
97
|
|
|
97
|
-
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended
|
|
98
|
+
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended. DiffusionGemma needs a separate runner; `cohere2_moe` is unvalidated on this stack; Muse Glimmer's `muse_glimmer` arch isn't in the TurboQuant server, so LocalCode builds a dedicated stock llama-server (llama.cpp PR #26841) on first use and serves it without TurboQuant KV compression.
|
|
98
99
|
|
|
99
100
|
## How LocalCode works
|
|
100
101
|
|
|
@@ -1239,6 +1239,97 @@ def ensure_cohere_server(
|
|
|
1239
1239
|
return False, f"cohere server build failed: {e}"
|
|
1240
1240
|
|
|
1241
1241
|
|
|
1242
|
+
# ── Muse Glimmer server (Meta Muse-Glimmer-30B) ─────────────────────
|
|
1243
|
+
#
|
|
1244
|
+
# The TurboQuant llama-server doesn't have Meta's muse_glimmer architecture.
|
|
1245
|
+
# Upstream llama.cpp added it in PR #26841 (merged 2026-08-10, first shipped in
|
|
1246
|
+
# release b10353), so — exactly like the cohere2moe and diffusion runners — we
|
|
1247
|
+
# build a stock llama-server from current master ONCE and cache it. Muse Glimmer
|
|
1248
|
+
# is an ordinary autoregressive multimodal model, served over the normal HTTP
|
|
1249
|
+
# path with stock (non-TurboQuant) flags; it just needs a binary with the arch
|
|
1250
|
+
# compiled in. Master is well past b10353, so the arch is present.
|
|
1251
|
+
_MUSE_BIN_NAME = "llama-server-muse"
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
def muse_server_path(config=None) -> Path | None:
|
|
1255
|
+
"""Locate an existing muse_glimmer-capable llama-server binary, or None."""
|
|
1256
|
+
if config is not None:
|
|
1257
|
+
p = (getattr(config.runtime, "muse_server_binary", "") or "").strip()
|
|
1258
|
+
if p and Path(p).is_file():
|
|
1259
|
+
return Path(p)
|
|
1260
|
+
cached = Path.home() / ".local" / "share" / "localcode" / _MUSE_BIN_NAME
|
|
1261
|
+
if cached.is_file():
|
|
1262
|
+
return cached
|
|
1263
|
+
return None
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
def ensure_muse_server(
|
|
1267
|
+
on_progress: Callable[[str], None] | None = None,
|
|
1268
|
+
) -> tuple[bool, str]:
|
|
1269
|
+
"""Build (once) and cache a llama-server with muse_glimmer support.
|
|
1270
|
+
|
|
1271
|
+
Returns (ok, binary_path_or_error). Idempotent — short-circuits if a
|
|
1272
|
+
cached binary exists. First build is several minutes of cmake.
|
|
1273
|
+
"""
|
|
1274
|
+
existing = muse_server_path()
|
|
1275
|
+
if existing is not None:
|
|
1276
|
+
return True, str(existing)
|
|
1277
|
+
|
|
1278
|
+
def _say(msg: str) -> None:
|
|
1279
|
+
if on_progress:
|
|
1280
|
+
on_progress(msg)
|
|
1281
|
+
|
|
1282
|
+
if not shutil.which("git"):
|
|
1283
|
+
return False, "git is required to build the Muse Glimmer server (xcode-select --install)."
|
|
1284
|
+
if not _ensure_cmake():
|
|
1285
|
+
return False, "cmake is required to build the Muse Glimmer server (brew install cmake)."
|
|
1286
|
+
|
|
1287
|
+
data_dir = Path.home() / ".local" / "share" / "localcode"
|
|
1288
|
+
data_dir.mkdir(parents=True, exist_ok=True)
|
|
1289
|
+
src = data_dir / "llama.cpp-muse"
|
|
1290
|
+
|
|
1291
|
+
def _run(cmd: list[str], cwd: Path | None, timeout: int) -> tuple[bool, str]:
|
|
1292
|
+
r = subprocess.run(cmd, cwd=str(cwd) if cwd else None,
|
|
1293
|
+
capture_output=True, text=True, timeout=timeout, check=False)
|
|
1294
|
+
if r.returncode != 0:
|
|
1295
|
+
tail = (r.stderr or r.stdout or "").strip().splitlines()[-8:]
|
|
1296
|
+
return False, "\n".join(tail)
|
|
1297
|
+
return True, ""
|
|
1298
|
+
|
|
1299
|
+
try:
|
|
1300
|
+
if not (src / "CMakeLists.txt").is_file():
|
|
1301
|
+
_say("Fetching llama.cpp (Muse Glimmer support, one-time)...")
|
|
1302
|
+
shutil.rmtree(src, ignore_errors=True)
|
|
1303
|
+
# master is past b10353 (PR #26841), so it has the muse_glimmer arch.
|
|
1304
|
+
ok, err = _run(["git", "clone", "--depth", "1", _DIFFUSION_LLAMA_REPO, str(src)],
|
|
1305
|
+
cwd=None, timeout=600)
|
|
1306
|
+
if not ok:
|
|
1307
|
+
return False, f"git clone failed:\n{err}"
|
|
1308
|
+
|
|
1309
|
+
_say("Building llama-server with muse_glimmer (one-time, ~5-12 min)...")
|
|
1310
|
+
ok, err = _run(["cmake", "-B", "build", "-DCMAKE_BUILD_TYPE=Release",
|
|
1311
|
+
"-DGGML_METAL=ON", "-DLLAMA_CURL=OFF"], cwd=src, timeout=600)
|
|
1312
|
+
if not ok:
|
|
1313
|
+
return False, f"cmake configure failed:\n{err}"
|
|
1314
|
+
ok, err = _run(["cmake", "--build", "build", "-j", "--config", "Release",
|
|
1315
|
+
"--target", "llama-server"], cwd=src, timeout=3600)
|
|
1316
|
+
if not ok:
|
|
1317
|
+
return False, f"cmake build failed:\n{err}"
|
|
1318
|
+
|
|
1319
|
+
built = src / "build" / "bin" / "llama-server"
|
|
1320
|
+
if not built.is_file():
|
|
1321
|
+
return False, f"build finished but {built} is missing."
|
|
1322
|
+
dest = data_dir / _MUSE_BIN_NAME
|
|
1323
|
+
shutil.copyfile(built, dest)
|
|
1324
|
+
dest.chmod(0o755)
|
|
1325
|
+
_say("Muse Glimmer server ready.")
|
|
1326
|
+
return True, str(dest)
|
|
1327
|
+
except subprocess.TimeoutExpired as e:
|
|
1328
|
+
return False, f"build step timed out: {' '.join(map(str, e.cmd))}"
|
|
1329
|
+
except Exception as e:
|
|
1330
|
+
return False, f"Muse Glimmer server build failed: {e}"
|
|
1331
|
+
|
|
1332
|
+
|
|
1242
1333
|
def build_turboquant(on_progress: Callable[[str], None] | None = None) -> tuple[bool, str]:
|
|
1243
1334
|
"""Build the TurboQuant llama.cpp fork from source with Metal support."""
|
|
1244
1335
|
source = _find_turboquant_source()
|
|
@@ -120,6 +120,7 @@ class RuntimeConfig:
|
|
|
120
120
|
llama_cpp_binary: str = "" # custom llama-server path (e.g. TurboQuant fork)
|
|
121
121
|
diffusion_cli_binary: str = "" # llama-diffusion-cli path (DiffusionGemma runner; built on demand)
|
|
122
122
|
cohere_server_binary: str = "" # llama-server with cohere2moe (North-Mini-Code; built on demand from PR #24260)
|
|
123
|
+
muse_server_binary: str = "" # llama-server with muse_glimmer (Meta Muse Glimmer; built on demand from llama.cpp master, PR #26841)
|
|
123
124
|
model_dir: str = "" # directory where GGUFs download to (blank → ~/.local/share/localcode/models)
|
|
124
125
|
# Vision toggle. Tracks whether the multimodal projector should be
|
|
125
126
|
# loaded (--mmproj) alongside the text decoder. Persisted so turning
|
|
@@ -252,6 +253,7 @@ def save_config(config: AppConfig) -> Path:
|
|
|
252
253
|
f"llama_cpp_cache_reuse = {config.runtime.llama_cpp_cache_reuse}\n"
|
|
253
254
|
f'diffusion_cli_binary = "{config.runtime.diffusion_cli_binary}"\n'
|
|
254
255
|
f'cohere_server_binary = "{config.runtime.cohere_server_binary}"\n'
|
|
256
|
+
f'muse_server_binary = "{config.runtime.muse_server_binary}"\n'
|
|
255
257
|
f'model_dir = "{config.runtime.model_dir}"\n'
|
|
256
258
|
f"vision_enabled = {'true' if config.runtime.vision_enabled else 'false'}\n"
|
|
257
259
|
f"temperature = {config.runtime.temperature}\n"
|
|
@@ -335,6 +337,7 @@ def load_config() -> AppConfig:
|
|
|
335
337
|
llama_cpp_cache_reuse=int(os.environ.get("LOCALCODE_LLAMA_CPP_CACHE_REUSE", runtime_data.get("llama_cpp_cache_reuse", 256))),
|
|
336
338
|
diffusion_cli_binary=os.environ.get("LOCALCODE_DIFFUSION_CLI_BINARY", runtime_data.get("diffusion_cli_binary", "")),
|
|
337
339
|
cohere_server_binary=os.environ.get("LOCALCODE_COHERE_SERVER_BINARY", runtime_data.get("cohere_server_binary", "")),
|
|
340
|
+
muse_server_binary=os.environ.get("LOCALCODE_MUSE_SERVER_BINARY", runtime_data.get("muse_server_binary", "")),
|
|
338
341
|
model_dir=os.environ.get("LOCALCODE_MODEL_DIR", runtime_data.get("model_dir", "")),
|
|
339
342
|
vision_enabled=str(os.environ.get("LOCALCODE_VISION_ENABLED", runtime_data.get("vision_enabled", False))).lower() in {"1", "true", "yes", "on"},
|
|
340
343
|
# `llama_cpp_spec_type` migration (2026-04-26): old configs
|
|
@@ -293,6 +293,32 @@ CHOICES: list[ModelChoice] = [
|
|
|
293
293
|
),
|
|
294
294
|
reasoning_budget_tokens=0,
|
|
295
295
|
),
|
|
296
|
+
ModelChoice(
|
|
297
|
+
key="muse-glimmer",
|
|
298
|
+
name="Muse Glimmer 30B (Q4)",
|
|
299
|
+
hf_repo="unsloth/Muse-Glimmer-30B-GGUF",
|
|
300
|
+
filename="Muse-Glimmer-30B-UD-Q4_K_XL.gguf",
|
|
301
|
+
size_gb=15.9,
|
|
302
|
+
active_params="30B dense (+ perception encoder for vision)",
|
|
303
|
+
architecture="muse_glimmer",
|
|
304
|
+
license="Apache 2.0",
|
|
305
|
+
humaneval_pass_at_1=None,
|
|
306
|
+
notes=(
|
|
307
|
+
"Meta's Muse Glimmer 30B (Meta Superintelligence Lab, Aug 2026) — a "
|
|
308
|
+
"multimodal agentic model purpose-built for local deployment: multi-step "
|
|
309
|
+
"reasoning, tool use, failure recovery, and vision in one model. Unsloth "
|
|
310
|
+
"Dynamic UD-Q4_K_XL quant. Its muse_glimmer arch isn't in the TurboQuant "
|
|
311
|
+
"server, so LocalCode builds a dedicated stock llama-server from current "
|
|
312
|
+
"llama.cpp (PR #26841) on first use (one-time, ~5-12 min) and serves it "
|
|
313
|
+
"with stock flags + --jinja (required by its chat template). Pair with the "
|
|
314
|
+
"BF16 perception encoder for image input. ~15.9 GiB; recommend 32 GB+ "
|
|
315
|
+
"unified memory."
|
|
316
|
+
),
|
|
317
|
+
mmproj_filename="mmproj-Muse-Glimmer-30B-BF16.gguf",
|
|
318
|
+
mmproj_size_gb=3.85,
|
|
319
|
+
mmproj_hf_filename="mmproj-Muse-Glimmer-30B-BF16.gguf",
|
|
320
|
+
reasoning_budget_tokens=0,
|
|
321
|
+
),
|
|
296
322
|
ModelChoice(
|
|
297
323
|
key="gemma-q8",
|
|
298
324
|
name="Gemma 4 26B-A4B (Q8)",
|
|
@@ -367,7 +393,7 @@ def _system_ram_gb() -> int:
|
|
|
367
393
|
# Architectures we never AUTO-recommend (users can still pick them explicitly in
|
|
368
394
|
# the model picker): diffusion needs a separate one-shot runner — not the
|
|
369
395
|
# standard llama-server — and cohere2_moe is unvalidated on this stack.
|
|
370
|
-
_NO_AUTO_RECOMMEND_ARCHS = {"diffusion_gemma", "cohere2_moe"}
|
|
396
|
+
_NO_AUTO_RECOMMEND_ARCHS = {"diffusion_gemma", "cohere2_moe", "muse_glimmer"}
|
|
371
397
|
|
|
372
398
|
# Capability order for auto-recommend, best → worst for coding-agent use. This
|
|
373
399
|
# is deliberately NOT raw file size: the big MoEs measure ~95% HumanEval here
|
|
@@ -608,6 +634,27 @@ MODEL_GROUPS: list[ModelGroup] = [
|
|
|
608
634
|
"use and serves it with stock flags. 256K context. Text-only."
|
|
609
635
|
),
|
|
610
636
|
),
|
|
637
|
+
ModelGroup(
|
|
638
|
+
key="muse-glimmer-30b",
|
|
639
|
+
display_name="Muse Glimmer 30B",
|
|
640
|
+
maker="Meta",
|
|
641
|
+
hf_repo="unsloth/Muse-Glimmer-30B-GGUF",
|
|
642
|
+
family="muse",
|
|
643
|
+
architecture="muse_glimmer",
|
|
644
|
+
license="Apache 2.0",
|
|
645
|
+
notes=(
|
|
646
|
+
"Meta's multimodal agentic model for local deployment (Meta "
|
|
647
|
+
"Superintelligence Lab, Aug 2026): multi-step reasoning, tool use, "
|
|
648
|
+
"failure recovery, native vision. Unsloth Dynamic quants. Its "
|
|
649
|
+
"muse_glimmer arch isn't in the TurboQuant server — LocalCode builds a "
|
|
650
|
+
"dedicated stock llama-server from llama.cpp PR #26841 on first use and "
|
|
651
|
+
"serves it with stock flags + --jinja. Pair with the BF16 perception "
|
|
652
|
+
"encoder for image input."
|
|
653
|
+
),
|
|
654
|
+
mmproj_filename="mmproj-Muse-Glimmer-30B-BF16.gguf",
|
|
655
|
+
mmproj_size_gb=3.85,
|
|
656
|
+
mmproj_hf_filename="mmproj-Muse-Glimmer-30B-BF16.gguf",
|
|
657
|
+
),
|
|
611
658
|
ModelGroup(
|
|
612
659
|
key="diffusiongemma-26b-a4b",
|
|
613
660
|
display_name="DiffusionGemma 26B-A4B",
|
|
@@ -402,6 +402,43 @@ class LocalCodeRuntimeGateway(_DiffusionMixin):
|
|
|
402
402
|
# No cohere binary yet — fall through; setup builds it on select,
|
|
403
403
|
# and _restart_server surfaces a clear error if it's truly missing.
|
|
404
404
|
|
|
405
|
+
# ── muse_glimmer (Meta Muse Glimmer 30B) ──────────────────────
|
|
406
|
+
# The TurboQuant fork doesn't have Meta's muse_glimmer arch; LocalCode
|
|
407
|
+
# builds a dedicated stock llama-server from llama.cpp master (PR
|
|
408
|
+
# #26841). Stock binary → STOCK flags only (no turbo4 KV / -fit /
|
|
409
|
+
# --ctx-checkpoints). The model card is explicit that `--jinja` is
|
|
410
|
+
# mandatory (its chat template drives tool calls and the <|eom|> stop
|
|
411
|
+
# handling). Multimodal: pass --mmproj when vision is on and the
|
|
412
|
+
# perception encoder is present on disk.
|
|
413
|
+
if "muse" in _arch:
|
|
414
|
+
from .bootstrap import muse_server_path
|
|
415
|
+
mbin = (self.config.muse_server_binary or "").strip()
|
|
416
|
+
if not (mbin and _P(mbin).is_file()):
|
|
417
|
+
found = muse_server_path()
|
|
418
|
+
mbin = str(found) if found else ""
|
|
419
|
+
if mbin:
|
|
420
|
+
cmd = [
|
|
421
|
+
mbin,
|
|
422
|
+
"--model", model_path,
|
|
423
|
+
"--port", str(port),
|
|
424
|
+
"--ctx-size", str(self._target_num_ctx(model_path=model_path)),
|
|
425
|
+
"--threads", str(threads),
|
|
426
|
+
"--flash-attn", "on",
|
|
427
|
+
"--mmap", "-ngl", "999",
|
|
428
|
+
"--jinja",
|
|
429
|
+
"-b", "512", "-ub", "512",
|
|
430
|
+
]
|
|
431
|
+
try:
|
|
432
|
+
if getattr(self.config, "vision_enabled", False):
|
|
433
|
+
from .models_catalog import by_filename as _bf_muse
|
|
434
|
+
_mc = _bf_muse(_P(model_path).name)
|
|
435
|
+
if _mc is not None and _mc.mmproj_path and _mc.mmproj_path.is_file():
|
|
436
|
+
cmd.extend(["--mmproj", str(_mc.mmproj_path)])
|
|
437
|
+
except Exception:
|
|
438
|
+
pass
|
|
439
|
+
return cmd
|
|
440
|
+
# No muse binary yet — fall through; setup builds it on select.
|
|
441
|
+
|
|
405
442
|
# ── Vanilla / stock llama.cpp compatibility (Linux CI, no Metal) ──
|
|
406
443
|
# The bundled server is a TurboQuant fork whose flags (turbo4 KV,
|
|
407
444
|
# -fit, --ctx-checkpoints, --spec-type) stock llama.cpp rejects.
|
|
@@ -3328,6 +3328,22 @@ class ChatScreen(Screen):
|
|
|
3328
3328
|
f"Couldn't build the cohere2moe server: {res}")
|
|
3329
3329
|
return
|
|
3330
3330
|
engine.config.cohere_server_binary = res
|
|
3331
|
+
# muse_glimmer (Meta Muse Glimmer): same story — the TurboQuant
|
|
3332
|
+
# binary lacks the arch, so build the dedicated stock server on an
|
|
3333
|
+
# in-chat /model swap that bypasses the setup screen.
|
|
3334
|
+
if "muse" in _arch:
|
|
3335
|
+
from ...bootstrap import ensure_muse_server
|
|
3336
|
+
self.app.call_from_thread(
|
|
3337
|
+
self._set_download_line, "Building Muse Glimmer server (one-time)…")
|
|
3338
|
+
ok, res = ensure_muse_server(
|
|
3339
|
+
on_progress=lambda m: self.app.call_from_thread(self._set_download_line, m))
|
|
3340
|
+
self.app.call_from_thread(self._clear_download_line)
|
|
3341
|
+
if not ok:
|
|
3342
|
+
self.app.call_from_thread(
|
|
3343
|
+
self._on_server_restart_failed,
|
|
3344
|
+
f"Couldn't build the Muse Glimmer server: {res}")
|
|
3345
|
+
return
|
|
3346
|
+
engine.config.muse_server_binary = res
|
|
3331
3347
|
# _restart_server now returns the healthcheck result that
|
|
3332
3348
|
# ServerManager.restart already waits for (up to 120 s for a
|
|
3333
3349
|
# 10 GB model cold-load). The previous code threw away that
|
|
@@ -727,6 +727,28 @@ class SetupScreen(Screen):
|
|
|
727
727
|
# the cohere binary on its own via cohere_server_path().
|
|
728
728
|
save_config(config)
|
|
729
729
|
|
|
730
|
+
# muse_glimmer (Meta Muse Glimmer): the TurboQuant server lacks the
|
|
731
|
+
# arch, so build a dedicated stock llama-server from llama.cpp master
|
|
732
|
+
# (PR #26841) one-time before launching. Serves over the normal HTTP path.
|
|
733
|
+
if _arch_choice is not None and "muse" in str(
|
|
734
|
+
getattr(_arch_choice, "architecture", "")
|
|
735
|
+
):
|
|
736
|
+
from ...bootstrap import ensure_muse_server
|
|
737
|
+
|
|
738
|
+
def _muse_progress(msg: str) -> None:
|
|
739
|
+
self._status_text = msg
|
|
740
|
+
|
|
741
|
+
ok, result = ensure_muse_server(on_progress=_muse_progress)
|
|
742
|
+
if not ok:
|
|
743
|
+
self.app.call_from_thread(lambda e=result: self._show_error(
|
|
744
|
+
msg="Couldn't build the Muse Glimmer server.",
|
|
745
|
+
code="E1002",
|
|
746
|
+
details=e,
|
|
747
|
+
))
|
|
748
|
+
return
|
|
749
|
+
config.runtime.muse_server_binary = result
|
|
750
|
+
save_config(config)
|
|
751
|
+
|
|
730
752
|
# Launch server
|
|
731
753
|
gw = LocalCodeRuntimeGateway(config.runtime)
|
|
732
754
|
from ...bootstrap import _turboquant_binary_path as _tbp
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: localcode
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.45
|
|
4
4
|
Summary: High-performance AI coding on consumer hardware.
|
|
5
5
|
Author: LocalCode contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -135,13 +135,14 @@ On launch, LocalCode recommends the best model for **your Mac's RAM** — there'
|
|
|
135
135
|
| Gemma 4 26B-A4B | 11.2 GB (Q3) | 3.8B (8/128 experts) | 24 GB | gemma4-iswa |
|
|
136
136
|
| Qwen 3.6 35B-A3B | 10.7 GB (Q2) | 3.0B (8+1/256) | 24 GB | qwen35moe |
|
|
137
137
|
| Qwen 3.8 27B | 17.9 GB (Q4) | 27B (dense) | 32 GB | qwen35 |
|
|
138
|
+
| Muse Glimmer 30B † | 15.9 GB (Q4) | 30B (dense, multimodal) | 32 GB | muse_glimmer |
|
|
138
139
|
| DiffusionGemma 26B-A4B † | 15.7 GB (Q4) | 4B (diffusion MoE) | 32 GB | diffusion_gemma |
|
|
139
140
|
| North-Mini-Code 30B-A3B † | 17.9 GB (Q4) | 3B (30B MoE) | 36 GB | cohere2_moe |
|
|
140
141
|
| Gemma 4 12B (full) | 23.8 GB (BF16) | 12B (dense) | 48 GB | gemma4-iswa |
|
|
141
142
|
| Gemma 4 26B-A4B | 28 GB (Q8) | 3.8B (8/128 experts) | 64 GB | gemma4-iswa |
|
|
142
143
|
| Qwen 3.6 35B-A3B | 38.5 GB (Q8) | 3.0B (8+1/256) | 96 GB | qwen35moe |
|
|
143
144
|
|
|
144
|
-
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended
|
|
145
|
+
*Min RAM* is the threshold for auto-recommendation (weights ≤ ~55% of unified memory, leaving room for KV cache + OS); you can still pick a heavier model manually. **†** experimental — pickable but **not** auto-recommended. DiffusionGemma needs a separate runner; `cohere2_moe` is unvalidated on this stack; Muse Glimmer's `muse_glimmer` arch isn't in the TurboQuant server, so LocalCode builds a dedicated stock llama-server (llama.cpp PR #26841) on first use and serves it without TurboQuant KV compression.
|
|
145
146
|
|
|
146
147
|
## How LocalCode works
|
|
147
148
|
|
|
@@ -45,6 +45,8 @@ def _backend_for(arch: str) -> str:
|
|
|
45
45
|
return "diffusion_cli"
|
|
46
46
|
if "cohere" in a:
|
|
47
47
|
return "cohere_server"
|
|
48
|
+
if "muse" in a:
|
|
49
|
+
return "muse_server"
|
|
48
50
|
return "turboquant_server"
|
|
49
51
|
|
|
50
52
|
|
|
@@ -67,10 +69,13 @@ def _make_gw(tmp_path: Path, choice, ram_gb: int) -> LocalCodeRuntimeGateway:
|
|
|
67
69
|
turbo.write_text("#!/bin/sh\n")
|
|
68
70
|
cohere = tmp_path / "llama-server-cohere"
|
|
69
71
|
cohere.write_text("#!/bin/sh\n")
|
|
72
|
+
muse = tmp_path / "llama-server-muse"
|
|
73
|
+
muse.write_text("#!/bin/sh\n")
|
|
70
74
|
diff = tmp_path / "llama-diffusion-cli"
|
|
71
75
|
diff.write_text("#!/bin/sh\n")
|
|
72
76
|
cfg.llama_cpp_binary = str(turbo)
|
|
73
77
|
cfg.cohere_server_binary = str(cohere)
|
|
78
|
+
cfg.muse_server_binary = str(muse)
|
|
74
79
|
cfg.diffusion_cli_binary = str(diff)
|
|
75
80
|
gw = LocalCodeRuntimeGateway(cfg)
|
|
76
81
|
return gw
|
|
@@ -92,6 +97,7 @@ def test_every_choice_is_wellformed(choice):
|
|
|
92
97
|
assert choice.size_gb and choice.size_gb > 0
|
|
93
98
|
assert choice.architecture in {
|
|
94
99
|
"gemma4-iswa", "qwen35moe", "qwen35", "diffusion_gemma", "cohere2_moe",
|
|
100
|
+
"muse_glimmer",
|
|
95
101
|
}, f"unknown arch {choice.architecture!r}"
|
|
96
102
|
# by_filename must round-trip to a choice carrying the same architecture
|
|
97
103
|
# (this is the dispatch key the runtime keys off).
|
|
@@ -136,9 +142,19 @@ def test_server_command_is_sane_for_every_ram(tmp_path, choice, ram_gb):
|
|
|
136
142
|
for i, tok in enumerate(cmd):
|
|
137
143
|
if tok in ("--cache-type-v", "--cache-type-k"):
|
|
138
144
|
assert cmd[i + 1] not in _TURBO_CACHE_VALUES, "cohere = stock KV only"
|
|
145
|
+
elif backend == "muse_server":
|
|
146
|
+
assert cmd[0].endswith("llama-server-muse")
|
|
147
|
+
assert "--jinja" in cmd, "Muse Glimmer requires --jinja (its chat template)"
|
|
148
|
+
# Stock binary: none of the TurboQuant-only flags / KV values.
|
|
149
|
+
for flag in _TURBO_ONLY:
|
|
150
|
+
assert flag not in cmd, f"muse server must not get {flag}"
|
|
151
|
+
for i, tok in enumerate(cmd):
|
|
152
|
+
if tok in ("--cache-type-v", "--cache-type-k"):
|
|
153
|
+
assert cmd[i + 1] not in _TURBO_CACHE_VALUES, "muse = stock KV only"
|
|
139
154
|
else:
|
|
140
155
|
assert cmd[0].endswith("llama-server")
|
|
141
156
|
assert not cmd[0].endswith("llama-server-cohere")
|
|
157
|
+
assert not cmd[0].endswith("llama-server-muse")
|
|
142
158
|
|
|
143
159
|
# Common required flags.
|
|
144
160
|
assert "--model" in cmd and "--port" in cmd
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-generator.cpp
RENAMED
|
File without changes
|
{localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-helpers.cpp
RENAMED
|
File without changes
|
{localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/chat-auto-parser-helpers.h
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{localcode-0.3.44 → localcode-0.3.45}/llama-cpp-turboquant/common/json-schema-to-grammar.cpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|