From 8c875b23cbd7063ab556fc87c1ba89f1ea7592a8 Mon Sep 17 00:00:00 2001 From: zhang hui Date: Thu, 15 Jan 2026 16:27:19 +0800 Subject: [PATCH] fix cuda error --- ggml/src/ggml-cuda/mmf.cuh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/mmf.cuh b/ggml/src/ggml-cuda/mmf.cuh index e1bffa0b3a..1a203f2c76 100644 --- a/ggml/src/ggml-cuda/mmf.cuh +++ b/ggml/src/ggml-cuda/mmf.cuh @@ -809,7 +809,7 @@ static void mul_mat_f_switch_cols_per_block( } #define DECL_MMF_CASE_HELPER(T, ncols_dst) \ - template void mul_mat_f_cuda( \ + template void mul_mat_f_cuda( \ const T * x, const float * y, const int32_t * ids, float * dst, \ const int64_t ncols_x, const int64_t nrows_x, int64_t ncols_dst_total, const int64_t stride_row, const int64_t stride_col_y, const int64_t stride_col_dst, \ const int64_t stride_col_id, const int64_t stride_row_id, \