LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ F77_sgemv()

void F77_sgemv ( CBLAS_INT layout,
char *  transp,
CBLAS_INT m,
CBLAS_INT n,
float *  alpha,
float *  a,
CBLAS_INT lda,
float *  x,
CBLAS_INT incx,
float *  beta,
float *  y,
CBLAS_INT incy 
)

Definition at line 11 of file c_sblas2.c.

13 {
14
15 float *A;
16 CBLAS_INT i,j,LDA;
17 CBLAS_TRANSPOSE trans;
18
19 get_transpose_type(transp, &trans);
20 if (*layout == TEST_ROW_MJR) {
21 LDA = *n+1;
22 A = ( float* )malloc( (*m)*LDA*sizeof( float ) );
23 for( i=0; i<*m; i++ )
24 for( j=0; j<*n; j++ )
25 A[ LDA*i+j ]=a[ (*lda)*j+i ];
27 *m, *n, *alpha, A, LDA, x, *incx, *beta, y, *incy );
28 free(A);
29 }
30 else if (*layout == TEST_COL_MJR)
32 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
33 else
34 cblas_sgemv( UNDEFINED, trans,
35 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
36}
void cblas_sgemv(const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE TransA, const CBLAS_INT M, const CBLAS_INT N, const float alpha, const float *A, const CBLAS_INT lda, const float *X, const CBLAS_INT incX, const float beta, float *Y, const CBLAS_INT incY)
Definition cblas_sgemv.c:11
CBLAS_TRANSPOSE
Definition cblas.h:40
@ CblasColMajor
Definition cblas.h:39
@ CblasRowMajor
Definition cblas.h:39
#define CBLAS_INT
Definition cblas.h:24
#define UNDEFINED
Definition cblas_test.h:19
#define TEST_ROW_MJR
Definition cblas_test.h:12
#define TEST_COL_MJR
Definition cblas_test.h:16
void get_transpose_type(char *type, CBLAS_TRANSPOSE *trans)
Definition auxiliary.c:8
Here is the call graph for this function: