Browse Source

Disable multithreading for trmv

as a (hopefully temporary) workaround for #1332
tags/v0.3.0
Martin Kroeker GitHub 8 years ago
parent
commit
38763ec4f3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      interface/trmv.c

+ 3
- 0
interface/trmv.c 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



Loading…
Cancel
Save