cuda: get_rows: dfloat2 -> float2

This commit is contained in:
leejet
2025-08-31 12:10:01 +08:00
parent 8f5e7b0ce6
commit 21e933806f

View File

@@ -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<dst_t>(v.x);