Skip to content

Commit a8ed428

Browse files
authored
Disable multithreading in ztrmv
BLAS-Tester shows that the same problem exists as with DTRMV (issue #1332)
1 parent 0ab5bf1 commit a8ed428

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

interface/ztrmv.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
239239
} else
240240
nthreads = 1;
241241

242+
/* FIXME TRMV multithreading appears to be broken, see issue 1332*/
243+
nthreads = 1;
244+
242245
if(nthreads > 1) {
243246
buffer_size = n > 16 ? 0 : n * 4 + 40;
244247
}

0 commit comments

Comments
 (0)