remove UNROLL, negligible effect on codegen and may raise GCC warnings

PiperOrigin-RevId: 609648249
This commit is contained in:
The gemma.cpp Authors 2024-02-23 01:19:17 -08:00
parent 6747c24eef
commit 0263ccf276
1 changed files with 0 additions and 1 deletions

1
ops.h
View File

@ -151,7 +151,6 @@ HWY_INLINE void FullDotProductsForStrip(
MaxCols(), vec_aligned, out);
// For further multiples of MaxCols, accumulate. Remainders handled below.
size_t c0 = MaxCols();
HWY_UNROLL(1)
for (; c0 <= mat_stride - MaxCols(); c0 += MaxCols()) {
AccumulatePartialDotProducts(df, mat, mat_ofs, mat_stride, r0, c0, num_rows,
MaxCols(), vec_aligned, out);