mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-05-01 14:44:05 +00:00
opencl: fix q6_K mv for m=1 (#18893)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user