From 6b8ed41f2be77c67e893b506d2693aa8c68c62d2 Mon Sep 17 00:00:00 2001 From: zhang hui Date: Sat, 13 Dec 2025 17:52:50 +0800 Subject: [PATCH] fix cuda error --- ggml/src/ggml-cuda/mmq.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/mmq.cuh b/ggml/src/ggml-cuda/mmq.cuh index d1c75a22e1..a91d95df15 100644 --- a/ggml/src/ggml-cuda/mmq.cuh +++ b/ggml/src/ggml-cuda/mmq.cuh @@ -1589,7 +1589,7 @@ static __device__ __forceinline__ void vec_dot_q2_K_q8_1_mma( } #elif defined(TURING_MMA_AVAILABLE) - 16, 4, int> tile_A; + typedef tile<16, 4, int> tile_A; typedef tile<16, 8, int> tile_A_8; typedef tile< 8, 4, int> tile_B; typedef tile<16, 8, int> tile_C;