From 0263ccf2763c40b5866365acb8dde3db13aa5f2b Mon Sep 17 00:00:00 2001 From: "The gemma.cpp Authors" Date: Fri, 23 Feb 2024 01:19:17 -0800 Subject: [PATCH] remove UNROLL, negligible effect on codegen and may raise GCC warnings PiperOrigin-RevId: 609648249 --- ops.h | 1 - 1 file changed, 1 deletion(-) diff --git a/ops.h b/ops.h index ac91cc5..5539892 100644 --- a/ops.h +++ b/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);