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

◆ cblas_zgeru()

void cblas_zgeru ( 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_zgeru.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;
28
29 if (layout == CblasColMajor)
30 {
31 F77_zgeru( &F77_M, &F77_N, alpha, X, &F77_incX, Y, &F77_incY, A,
32 &F77_lda);
33 }
34 else if (layout == CblasRowMajor)
35 {
36 RowMajorStrg = 1;
37 F77_zgeru( &F77_N, &F77_M, alpha, Y, &F77_incY, X, &F77_incX, A,
38 &F77_lda);
39 }
40 else API_SUFFIX(cblas_xerbla)(1, "cblas_zgeru", "Illegal layout setting, %d\n", layout);
42 RowMajorStrg = 0;
43 return;
44}
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_INT
#define F77_zgeru(...)
Definition cblas_f77.h:301
int CBLAS_CallFromC
int RowMajorStrg
#define F77_incX
#define F77_incY
#define F77_N
#define F77_lda
#define F77_M
Here is the call graph for this function:
Here is the caller graph for this function: