We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70437b3 commit 59c0077Copy full SHA for 59c0077
1 file changed
backends/mlx/custom_kernel_ops/gguf/q6k/linear.py
@@ -293,7 +293,7 @@ def _q6k_matmul_source(has_bias: bool) -> str:
293
// reused as float staging for the output. Without this barrier, a fast
294
// simdgroup could start writing mc[] into sa while a slower one is still
295
// reading the last weight tile via simdgroup_load(ma[]).
296
- // (Matches ggml-metal.metal:9546 in llama.cpp's bounds-checked write path.)
+ // (Mirrors the barrier in llama.cpp kernel_mul_mm's bounds-checked write path.)
297
threadgroup_barrier(mem_flags::mem_threadgroup);
298
{{
299
threadgroup float * temp_str = ((threadgroup float *) sa)
0 commit comments