From 2a615b27e48982bbba1b5ecb5e4f7c94ae8b890b Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Tue, 9 Dec 2025 10:58:06 +0200 Subject: [PATCH] ggml : remove redundant src in ggml_cast --- ggml/src/ggml.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c index 9f5cdc1398..233ea9a665 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -3418,7 +3418,6 @@ struct ggml_tensor * ggml_cast( result->op = GGML_OP_CPY; result->src[0] = a; - result->src[1] = result; return result; }