Skip to content

Commit 464ebeb

Browse files
committed
opencl: fix kernel_restore_block_mxfp4
1 parent 374c3b7 commit 464ebeb

File tree

1 file changed

+1
-1
lines changed
  • ggml/src/ggml-opencl/kernels

1 file changed

+1
-1
lines changed

ggml/src/ggml-opencl/kernels/cvt.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ kernel void kernel_restore_block_mxfp4(
155155
) {
156156
global struct block_mxfp4 * b = (global struct block_mxfp4 *) dst + get_global_id(0);
157157
global uchar * q = (global uchar *) src_q + QK_MXFP4 / 2 * get_global_id(0);
158-
global half * e = (global uchar *) src_e + get_global_id(0);
158+
global uchar * e = (global uchar *) src_e + get_global_id(0);
159159

160160
b->e = *e;
161161
for (int i = 0; i < QK_MXFP4 / 2; ++i) {

0 commit comments

Comments
 (0)