From c5231a24481f76ab3dbca2a1b5ffd16a5dee0663 Mon Sep 17 00:00:00 2001 From: "Yu, Zijun" Date: Tue, 2 Sep 2025 14:52:04 +0800 Subject: [PATCH] Set m_is_static=false as default in decoder --- ggml/src/ggml-openvino/ggml-decoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-openvino/ggml-decoder.h b/ggml/src/ggml-openvino/ggml-decoder.h index 24e1d92dcf..4ba147da20 100644 --- a/ggml/src/ggml-openvino/ggml-decoder.h +++ b/ggml/src/ggml-openvino/ggml-decoder.h @@ -161,7 +161,7 @@ private: int m_head_size; int32_t* m_rope_params; std::vector m_kv_names; - bool m_is_static; + bool m_is_static = false; bool m_is_first_token; };