Skip to content

Commit

Permalink
Merge pull request #1539 from martin-frbg/ztrmv-1332
Browse files Browse the repository at this point in the history
Disable multithreading in ztrmv
  • Loading branch information
martin-frbg authored Apr 27, 2018
2 parents 802cf6b + a8ed428 commit 1d27fa8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions interface/ztrmv.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
} else
nthreads = 1;

/* FIXME TRMV multithreading appears to be broken, see issue 1332*/
nthreads = 1;

if(nthreads > 1) {
buffer_size = n > 16 ? 0 : n * 4 + 40;
}
Expand Down

0 comments on commit 1d27fa8

Please sign in to comment.