Skip to content

Commit 43cb266

Browse files
authored
Merge pull request #4441 from martin-frbg/gemv-threshold
Increase multithreading threshold for S/DGEMV by a factor of 50
2 parents ec46ca7 + d2fc4f3 commit 43cb266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/gemv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ void CNAME(enum CBLAS_ORDER order,
226226

227227
#ifdef SMP
228228

229-
if ( 1L * m * n < 2304L * GEMM_MULTITHREAD_THRESHOLD )
229+
if ( 1L * m * n < 115200L * GEMM_MULTITHREAD_THRESHOLD )
230230
nthreads = 1;
231231
else
232232
nthreads = num_cpu_avail(2);

0 commit comments

Comments
 (0)