Skip to content

Commit 7aa67ce

Browse files
committed
opencl: fix ndst for mul_mv_mxfp4_f32_flat for adreno
1 parent 7a15e0e commit 7aa67ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-opencl/ggml-opencl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6984,7 +6984,7 @@ static void ggml_cl_mul_mat(ggml_backend_t backend, const ggml_tensor * src0, co
69846984
} else if (backend_ctx->gpu_family == ADRENO) {
69856985
nth0 = 64;
69866986
nth1 = 2;
6987-
ndst = nth1;
6987+
ndst = nth1*2;
69886988

69896989
q = extra0_mxfp4->q_img;
69906990
} else {

0 commit comments

Comments
 (0)