From 21e933806f08aac3391aa31ee6dec5ab724c39c8 Mon Sep 17 00:00:00 2001 From: leejet Date: Sun, 31 Aug 2025 12:10:01 +0800 Subject: [PATCH] cuda: get_rows: dfloat2 -> float2 --- ggml/src/ggml-cuda/getrows.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cuda/getrows.cu b/ggml/src/ggml-cuda/getrows.cu index 6bc97cea41..83d02474f5 100644 --- a/ggml/src/ggml-cuda/getrows.cu +++ b/ggml/src/ggml-cuda/getrows.cu @@ -30,7 +30,7 @@ static __global__ void k_get_rows( const int y_offset = qr == 1 ? 1 : qk/2; // dequantize - dfloat2 v; + float2 v; dequantize_kernel(src0_row, ib, iqs, v); dst_row[iybs + iqs + 0] = ggml_cuda_cast(v.x);