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

This commit is contained in:
lhez 2026-01-17 13:50:32 -08:00 committed by GitHub
parent 57c0beaed0
commit d1b4757ded
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;