Cleanup, consistent style

This commit is contained in:
Alberto Cabrera 2025-12-16 12:33:26 +00:00
parent 815123c472
commit 26ef6770d0
1 changed files with 25 additions and 26 deletions

View File

@ -751,6 +751,7 @@ void ggml_gemv_q8_0_4x8_q8_0_generic(int n,
const int ncols_interleaved = 4; const int ncols_interleaved = 4;
const int blocklen = 8; const int blocklen = 8;
assert(nr == 1);
assert(n % qk == 0); assert(n % qk == 0);
assert(nc % ncols_interleaved == 0); assert(nc % ncols_interleaved == 0);
@ -1328,7 +1329,6 @@ void ggml_gemm_q8_0_4x4_q8_0_generic(int n,
assert(nr % 4 == 0); assert(nr % 4 == 0);
assert(nc % ncols_interleaved == 0); assert(nc % ncols_interleaved == 0);
{
float sumf[4][4]; float sumf[4][4];
int sumi; int sumi;
@ -1363,7 +1363,6 @@ void ggml_gemm_q8_0_4x4_q8_0_generic(int n,
} }
} }
} }
}
} }
void ggml_gemm_q8_0_4x8_q8_0_generic(int n, void ggml_gemm_q8_0_4x8_q8_0_generic(int n,