Disable multithreading for trmv

as a (hopefully temporary) workaround for #1332
This commit is contained in:
Martin Kroeker 2017-12-03 22:40:54 +01:00 committed by GitHub
parent bede1c4fb4
commit 38763ec4f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -220,6 +220,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
#ifdef SMP
nthreads = num_cpu_avail(2);
/*FIXME trmv_thread was found to be broken, see issue 1332 */
nthreads = 1;
if (nthreads == 1) {
#endif