From: Georgi Gerganov Date: Fri, 6 Feb 2026 05:55:06 +0000 (+0200) Subject: cuda : cuda graphs now compare all node params (llama/19383) X-Git-Tag: upstream/1.8.3+155~49 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=2a7d5490f17fc8fdeae04251220e9fa7733a8539;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp cuda : cuda graphs now compare all node params (llama/19383) --- diff --git a/ggml/src/ggml-cuda/ggml-cuda.cu b/ggml/src/ggml-cuda/ggml-cuda.cu index eeb8625d..9e77c231 100644 --- a/ggml/src/ggml-cuda/ggml-cuda.cu +++ b/ggml/src/ggml-cuda/ggml-cuda.cu @@ -2979,8 +2979,7 @@ static bool ggml_cuda_graph_node_properties_match(ggml_tensor * node, ggml_cuda_ } } - if ((node->op == GGML_OP_SCALE || node->op == GGML_OP_GLU) && - memcmp(props->op_params, node->op_params, GGML_MAX_OP_PARAMS) != 0) { + if (memcmp(props->op_params, node->op_params, GGML_MAX_OP_PARAMS) != 0) { return false; }