From 763083e5676dba7471a48a68e4395953740b3363 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=A4=C3=9Fler?= Date: Sun, 11 Feb 2024 19:07:03 +0100 Subject: [PATCH] Update ggml-cuda.cu Co-authored-by: slaren --- ggml-cuda.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-cuda.cu b/ggml-cuda.cu index f2cc6bc98..96976f248 100644 --- a/ggml-cuda.cu +++ b/ggml-cuda.cu @@ -6898,7 +6898,7 @@ static void mul_mat_vec_q_cuda( const dim3 block_nums(nblocks, 1, 1); const dim3 block_dims(WARP_SIZE, nwarps, 1); - switch(ncols_y) { + switch (ncols_y) { case 1: mul_mat_vec_q<1, qk, qi, block_q_t, vdr, vec_dot> <<>>(vx, vy, dst, ncols_x, nrows_x, nrows_y, nrows_dst);