Skip to content

Commit 1d27fa8

Browse files
authored
Merge pull request #1539 from martin-frbg/ztrmv-1332
Disable multithreading in ztrmv
2 parents 802cf6b + a8ed428 commit 1d27fa8

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)