From 5adf63db3bc4612aa22b92e9f43e0f0f9128aeb8 Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Tue, 21 Oct 2025 08:07:02 +0300 Subject: [PATCH] Remove forgotten printf --- ggml/src/ggml-cuda/norm.cu | 1 - 1 file changed, 1 deletion(-) diff --git a/ggml/src/ggml-cuda/norm.cu b/ggml/src/ggml-cuda/norm.cu index 2061bd19..6c3e565b 100644 --- a/ggml/src/ggml-cuda/norm.cu +++ b/ggml/src/ggml-cuda/norm.cu @@ -297,7 +297,6 @@ static void rms_norm_f32_cuda(const float * x, float * dst, const int ncols, con static void rms_norm_f32_nc_cuda( const float * x, float * dst, const int ncols, const int nrows, const int nchannels, const int nsamples, const int64_t stride_row, const int64_t stride_channel, const int64_t stride_sample, const float eps, cudaStream_t stream) { - printf("%s: ncols = %d\n", __func__, ncols); const dim3 blocks_num(nrows, nchannels, nsamples); if (ncols < 1024) { const dim3 block_dims(WARP_SIZE, 1, 1);