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

◆ F77_dger()

void F77_dger ( CBLAS_INT layout,
CBLAS_INT m,
CBLAS_INT n,
double *  alpha,
double *  x,
CBLAS_INT incx,
double *  y,
CBLAS_INT incy,
double *  a,
CBLAS_INT lda 
)

Definition at line 38 of file c_dblas2.c.

39 {
40
41 double *A;
42 CBLAS_INT i,j,LDA;
43
44 if (*layout == TEST_ROW_MJR) {
45 LDA = *n+1;
46 A = ( double* )malloc( (*m)*LDA*sizeof( double ) );
47
48 for( i=0; i<*m; i++ ) {
49 for( j=0; j<*n; j++ )
50 A[ LDA*i+j ]=a[ (*lda)*j+i ];
51 }
52
53 cblas_dger(CblasRowMajor, *m, *n, *alpha, x, *incx, y, *incy, A, LDA );
54 for( i=0; i<*m; i++ )
55 for( j=0; j<*n; j++ )
56 a[ (*lda)*j+i ]=A[ LDA*i+j ];
57 free(A);
58 }
59 else
60 cblas_dger( CblasColMajor, *m, *n, *alpha, x, *incx, y, *incy, a, *lda );
61}
void cblas_dger(CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *X, const CBLAS_INT incX, const double *Y, const CBLAS_INT incY, double *A, const CBLAS_INT lda)
Definition cblas_dger.c:12
@ CblasColMajor
Definition cblas.h:39
@ CblasRowMajor
Definition cblas.h:39
#define CBLAS_INT
Definition cblas.h:24
#define TEST_ROW_MJR
Definition cblas_test.h:12
Here is the call graph for this function: