Update gemv.c

This commit is contained in:
Martin Kroeker 2021-04-16 11:35:35 +02:00 committed by GitHub
parent 0a8f96c084
commit 5711ab0c90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ void CNAME(enum CBLAS_ORDER order,
} }
fprintf(stderr,"interface for CBLAS_?GEMV starting, order=%d trans=%d m=%ld n=%ld\n",order,trans,m,n); fprintf(stderr,"interface for CBLAS_?GEMV starting, order=%d trans=%d m=%ld n=%ld\n",order,trans,m,n);
fprintf(stderr,"SCAL_K is %x SSCAL_K %x DSCAL_K %x CSCAL_K %x ZSCAL_K %x\n",SCAL_K,SSCAL_K,DSCAL_K,CSCAL_K, ZSCAL_K);
#endif #endif
if ((m==0) || (n==0)) return; if ((m==0) || (n==0)) return;