LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
void cblas_cgeru ( CBLAS_LAYOUT  layout,
const int  M,
const int  N,
const void *  alpha,
const void *  X,
const int  incX,
const void *  Y,
const int  incY,
void *  A,
const 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 
28  CBLAS_CallFromC = 1;
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 cblas_xerbla(1, "cblas_cgeru","Illegal layout setting, %d\n", layout);
42  CBLAS_CallFromC = 0;
43  RowMajorStrg = 0;
44  return;
45 }
#define F77_cgeru
Definition: cblas_f77.h:111
#define F77_N
int RowMajorStrg
Definition: cblas_globals.c:2
#define F77_lda
#define F77_incY
#define F77_M
int CBLAS_CallFromC
Definition: cblas_globals.c:1
#define F77_incX
void cblas_xerbla(int p, const char *rout, const char *form,...)
Definition: cblas_xerbla.c:8
#define N
Definition: example_user.c:10

Here is the call graph for this function:

Here is the caller graph for this function: