Browse Source
Disable multithreading for trmv
as a (hopefully temporary) workaround for #1332
tags/v0.3.0
Martin Kroeker
GitHub
8 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
interface/trmv.c
|
|
|
@@ -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 |
|
|
|
|
|
|
|
|