tests: record what the qwen4exp arch-test skip actually observes

The old note guessed that the hyper-connection keys never reach the file.
They do: dumping the gguf_context handed to llama_model_init_from_user
shows both among its 67 KVs, and the loader still reports one missing.
This commit is contained in:
Daniel Han
2026-08-26 13:40:52 +00:00
parent 1b599101d2
commit dd8962766f
+3 -3
View File
@@ -493,9 +493,9 @@ static bool arch_supported(const llm_arch arch) {
return false; // FIXME @ngxson
}
if (arch == LLM_ARCH_QWEN4EXP) {
// FIXME: get_gguf_ctx's hyper-connection keys never reach the synthesised
// file, so loading trips on hyper_connection.count. Graph is covered by
// the vLLM parity tests.
// FIXME: loading reports "key not found: qwen4exp.hyper_connection.count" even
// though the gguf_context passed in carries both HC keys among its 67 KVs, so
// the mismatch is in the loader's view of it. Graph is covered by vLLM parity.
return false;
}
if (arch == LLM_ARCH_GRANITE_SWITCH) {