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

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