From 96938a109486becd482e059a163afb189e300c4e Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Sun, 2 Aug 2026 18:07:31 +0300 Subject: [PATCH] Disable quantized indexer cache (#2236) --- common/common.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index 9e4d73518..82885c49a 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1809,7 +1809,8 @@ bool gpt_params_find_arg(int argc, char ** argv, const std::string & arg, gpt_pa return true; } if (arg == "-ictk" || arg == "--indexer-cache-type-k") { - params.indexer_cache_type_k = argv[++i]; + LLAMA_LOG_WARN("================== Quantized inexer cache has been disabled for now => argument '%s' ignored\n", arg.c_str()); + //params.indexer_cache_type_k = argv[++i]; return true; } if (arg == "-ctk-first" || arg == "--cache-type-k-first") {