mirror of https://github.com/google/gemma.cpp.git
remove UNROLL, negligible effect on codegen and may raise GCC warnings
PiperOrigin-RevId: 609648249
This commit is contained in:
parent
6747c24eef
commit
0263ccf276
1
ops.h
1
ops.h
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue