Browse Source

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

Disable multithreading in ztrmv
tags/v0.3.0^2
Martin Kroeker GitHub 7 years ago
parent
commit
1d27fa8507
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/ztrmv.c

+ 3
- 0
interface/ztrmv.c 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;
}


Loading…
Cancel
Save