Update c_sblas2.c

This commit is contained in:
Martin Kroeker 2021-04-15 11:28:41 +02:00 committed by GitHub
parent 4ec55143f5
commit 82eda82d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ void F77_sgemv(blasint *order, char *transp, blasint *m, blasint *n, float *alph
free(A);
}
else if (*order == TEST_COL_MJR) {
fprintf(stderr,"calling cblas_sgemv COL %s %d %ld %ld from c_cblas2.c\n, transp,trans,*m,*n");
fprintf(stderr,"calling cblas_sgemv COL %s %d %ld %ld from c_cblas2.c\n", transp,trans,*m,*n);
cblas_sgemv( CblasColMajor, trans,
*m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
fprintf(stderr,"calling cblas_sgemv COL from c_cblas2.c done\n");