Browse Source

remove extra/intermediate size step for min_jj introduced in PR747

tags/v0.3.13^2
Martin Kroeker GitHub 4 years ago
parent
commit
a554712439
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      driver/level3/level3_thread.c

+ 2
- 0
driver/level3/level3_thread.c View File

@@ -373,8 +373,10 @@ static int inner_thread(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;
else
*/
if (min_jj > GEMM_UNROLL_N) min_jj = GEMM_UNROLL_N;
#endif
/* Copy part of local region of B into workspace */


Loading…
Cancel
Save