opencl: fix q6_K mv for m=1 (llama/18893)

This commit is contained in:
lhez 2026-01-17 13:50:32 -08:00 committed by Georgi Gerganov
parent 389dafc7c2
commit 62a09b106d
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ kernel void kernel_mul_mv_q6_K_f32(
int row = N_SIMDGROUP * r0 + get_sub_group_id();
if (row >= ne01) {
return;
}
int i12 = im%ne12;
int i13 = im/ne12;