Merge pull request #1539 from martin-frbg/ztrmv-1332

Disable multithreading in ztrmv
This commit is contained in:
Martin Kroeker 2018-04-27 23:10:21 +02:00 committed by GitHub
commit 1d27fa8507
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}