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

◆ cblas_cgeru()

void cblas_cgeru ( CBLAS_LAYOUT  layout,
const CBLAS_INT  M,
const CBLAS_INT  N,
const void *  alpha,
const void *  X,
const CBLAS_INT  incX,
const void *  Y,
const CBLAS_INT  incY,
void *  A,
const CBLAS_INT  lda 
)

Definition at line 10 of file cblas_cgeru.c.

13{
14#ifdef F77_INT
15 F77_INT F77_M=M, F77_N=N, F77_lda=lda, F77_incX=incX, F77_incY=incY;
16#else
17 #define F77_M M
18 #define F77_N N
19 #define F77_incX incX
20 #define F77_incY incY
21 #define F77_lda lda
22#endif
23
24 extern int CBLAS_CallFromC;
25 extern int RowMajorStrg;
26 RowMajorStrg = 0;
27
29
30 if (layout == CblasColMajor)
31 {
32 F77_cgeru( &F77_M, &F77_N, alpha, X, &F77_incX, Y, &F77_incY, A,
33 &F77_lda);
34 }
35 else if (layout == CblasRowMajor)
36 {
37 RowMajorStrg = 1;
38 F77_cgeru( &F77_N, &F77_M, alpha, Y, &F77_incY, X, &F77_incX, A,
39 &F77_lda);
40 }
41 else API_SUFFIX(cblas_xerbla)(1, "cblas_cgeru","Illegal layout setting, %d\n", layout);
43 RowMajorStrg = 0;
44 return;
45}
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)
@ CblasColMajor
Definition cblas.h:39
@ CblasRowMajor
Definition cblas.h:39
#define API_SUFFIX(a)
Definition cblas.h:57
#define F77_incX
#define F77_incY
#define F77_N
#define F77_lda
#define F77_M
#define F77_INT
#define F77_cgeru(...)
Definition cblas_f77.h:299
int CBLAS_CallFromC
int RowMajorStrg
Here is the call graph for this function:
Here is the caller graph for this function: