Skip to content

Commit 38763ec

Browse files
authored
Disable multithreading for trmv
as a (hopefully temporary) workaround for #1332
1 parent bede1c4 commit 38763ec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

interface/trmv.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
220220
#ifdef SMP
221221
nthreads = num_cpu_avail(2);
222222

223+
/*FIXME trmv_thread was found to be broken, see issue 1332 */
224+
nthreads = 1;
225+
223226
if (nthreads == 1) {
224227
#endif
225228

0 commit comments

Comments
 (0)