Browse Source

Remove dangerous optimization from previous #3252 - buffer is never unused here

tags/v0.3.19
Martin Kroeker GitHub 4 years ago
parent
commit
2845f54eb8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions
  1. +0
    -6
      interface/ztrsv.c

+ 0
- 6
interface/ztrsv.c View File

@@ -199,12 +199,6 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,

if (n == 0) return;

if (incx == 1 && trans == 0 && n < 50) {
buffer = NULL;
(trsv[(trans<<2) | (uplo<<1) | unit])(n, a, lda, x, incx, buffer);
return;
}

IDEBUG_START;

FUNCTION_PROFILE_START();


Loading…
Cancel
Save