From 2aee6a0d940d3590913ac8b86cb40751e0f16cd2 Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Wed, 12 Nov 2025 17:00:13 +0200 Subject: [PATCH] Fix rope_norm_fast_cuda --- ggml/src/ggml-cuda/rope.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/rope.cu b/ggml/src/ggml-cuda/rope.cu index 4dfc0efb..113d1544 100644 --- a/ggml/src/ggml-cuda/rope.cu +++ b/ggml/src/ggml-cuda/rope.cu @@ -895,7 +895,7 @@ void ggml_cuda_op_rope_fast(ggml_backend_cuda_context & ctx, ggml_tensor * dst) } else { //printf("Using norm\n"); rope_norm_fast_cuda( - (const float *)src0->data, (const float *)src1->data, (float *)dst->data, ne00, ne01, s01, s02, n_dims, nr, stream); + (const float *)src0->data, (const float *)src1->data, (float *)dst->data, ne00, ne01, ne02, s01, s02, n_dims, stream); } }