Browse Source

Update gemv.c

pull/3166/head
Martin Kroeker GitHub 5 years ago
parent
commit
723a56b045
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      interface/gemv.c

+ 2
- 2
interface/gemv.c View File

@@ -198,13 +198,13 @@ fprintf(stderr,"interface for CBLAS_?GEMV starting, order=%d trans=%d m=%ld n=%l
leny = m;
if (trans) lenx = m;
if (trans) leny = n;
if (alpha == ZERO) return;
if (beta != ONE) {
fprintf(stderr,"CBLAS_?GEMV calling SCAL_K\n");
SCAL_K(leny, 0, 0, beta, y, blasabs(incy), NULL, 0, NULL, 0);
fprintf(stderr,"CBLAS_?GEMV done calling SCAL_K\n");
}
if (alpha == ZERO) return;

IDEBUG_START;



Loading…
Cancel
Save