remove extra/intermediate size step of min_jj from PR747
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Tue, 8 Dec 2020 19:59:56 +0000 (20:59 +0100)
committerGitHub <noreply@github.com>
Tue, 8 Dec 2020 19:59:56 +0000 (20:59 +0100)
driver/level3/level3.c

index a385065..9b44deb 100644 (file)
@@ -339,8 +339,10 @@ int CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n,
 #else
         if (min_jj >= 3*GEMM_UNROLL_N) min_jj = 3*GEMM_UNROLL_N;
         else
-               if (min_jj >= 2*GEMM_UNROLL_N) min_jj = 2*GEMM_UNROLL_N;
+/*
+               if (min_jj >= 2*GEMM_UNROLL_N) min_jj = 2*GEMM_UNROLL_N;
                else
+*/
                        if (min_jj > GEMM_UNROLL_N) min_jj = GEMM_UNROLL_N;
 #endif