Browse Source

Update c_sblas2.c

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

+ 4
- 4
ctest/c_sblas2.c View File

@@ -8,12 +8,12 @@
#include "common.h"
#include "cblas_test.h"

void F77_sgemv(blasint *order, char *transp, blasint *m, blasint *n, float *alpha,
float *a, blasint *lda, float *x, blasint *incx, float *beta,
float *y, blasint *incy ) {
void F77_sgemv(int *order, char *transp, int *m, int *n, float *alpha,
float *a, int *lda, float *x, int *incx, float *beta,
float *y, int *incy ) {

float *A;
blasint i,j,LDA;
int i,j,LDA;
enum CBLAS_TRANSPOSE trans;

get_transpose_type(transp, &trans);


Loading…
Cancel
Save