Skip to content

Commit d2fc4f3

Browse files
authored
Increase multithreading threshold by a factor of 50
1 parent ec46ca7 commit d2fc4f3

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)