From 51fc78750f236fda8e6db2695e8b0406aeb064c8 Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Thu, 5 Feb 2026 16:52:24 +0200 Subject: [PATCH] Remove forgotten printf --- ggml/src/ggml.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml.c b/ggml/src/ggml.c index 2cc63b78..9937a480 100644 --- a/ggml/src/ggml.c +++ b/ggml/src/ggml.c @@ -15141,7 +15141,6 @@ static void ggml_compute_forward_fused_mul_unary_f32( const struct ggml_tensor * src1 = dst->src[1]; enum ggml_unary_op op = (enum ggml_unary_op)dst->op_params[0]; const float limit = *(const float *)(dst->op_params + 1); - if (params->ith == 0) printf("%s(%s) using limit = %g\n", __func__, dst->name, (double)limit); GGML_ASSERT(ggml_is_contiguous_1(src0)); GGML_ASSERT(ggml_are_same_shape(src0, dst));