mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-11 05:30:20 +00:00
metal : fix NSG1 > 1
This commit is contained in:
+1
-1
@@ -4980,7 +4980,7 @@ void kernel_mul_mm2_impl(
|
||||
|
||||
for (int is = 0; is < NSG1; is++) {
|
||||
const int i1 = i11 + is*8;
|
||||
const int nstore = MIN(8*NSG1, ne1 - i1) * (8*NSG0);
|
||||
const int nstore = MIN(8, ne1 - i1) * (8*NSG0);
|
||||
|
||||
for (int i = tiisg; i < nstore; i += NW) {
|
||||
const int ic = i%(8*NSG0);
|
||||
|
||||
Reference in New Issue
Block a user