Compare commits

...

1 Commits

Author SHA1 Message Date
Kawrakow
88f5258ed3 Don't disable CUDA graphs for Qwen3-Next 2026-02-17 15:19:51 +00:00

View File

@ -3956,7 +3956,8 @@ static bool check_node_graph_compatibility_and_refresh_copy_ops(ggml_cuda_graph
}
}
if (node->op == GGML_OP_ADD &&
// Why was this needed? Leaving it in place but disabled in case it is actually needed.
if (false && node->op == GGML_OP_ADD &&
node->src[1] && node->src[1]->ne[1] > 1 &&
(node->src[0] ? node->src[0]->name != gemma3n_per_layer_proj_src0_name : true) &&
(node->src[1] ? node->src[1]->name != gemma3n_per_layer_proj_src1_name : true) &&