From fc309e83a09ca87f04abe878abb437627a8f1225 Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Fri, 7 Aug 2026 10:39:11 +0000 Subject: [PATCH] Minor --- src/llama.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/llama.cpp b/src/llama.cpp index 75331f1a0..8295b53ab 100644 --- a/src/llama.cpp +++ b/src/llama.cpp @@ -660,7 +660,6 @@ static void why_not_reuse_previous(const llama_batch & u_batch, const llama_cont bool llama_context::can_reuse_graph(const llama_batch & u_batch, uint64_t seq_fingerprint, uint64_t model_state_hash) { if (!cparams.graph_reuse) return false; - //if (model.arch == LLM_ARCH_DEEPSEEK4) return false; auto the_prev = cparams.mtp_op_type == MTP_OP_NONE ? prev.get() : prev_mtp.get(); if (!the_prev || !the_prev->graph) return false; if (u_batch.embd) return false;