| /* |
| * cblas_zgeru.c |
| * The program is a C interface to zgeru. |
| * |
| * Keita Teranishi 5/20/98 |
| * |
| */ |
| #include "cblas.h" |
| #include "cblas_f77.h" |
| void cblas_zgeru(const enum CBLAS_ORDER order, 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) |
| { |
| #ifdef F77_INT |
| F77_INT F77_M=M, F77_N=N, F77_lda=lda, F77_incX=incX, F77_incY=incY; |
| #else |
| #define F77_M M |
| #define F77_N N |
| #define F77_incX incX |
| #define F77_incY incY |
| #define F77_lda lda |
| #endif |
| |
| extern int CBLAS_CallFromC; |
| extern int RowMajorStrg; |
| RowMajorStrg = 0; |
| CBLAS_CallFromC = 1; |
| |
| if (order == CblasColMajor) |
| { |
| F77_zgeru( &F77_M, &F77_N, alpha, X, &F77_incX, Y, &F77_incY, A, |
| &F77_lda); |
| } |
| else if (order == CblasRowMajor) |
| { |
| RowMajorStrg = 1; |
| F77_zgeru( &F77_N, &F77_M, alpha, Y, &F77_incY, X, &F77_incX, A, |
| &F77_lda); |
| } |
| else cblas_xerbla(1, "cblas_zgeru", "Illegal Order setting, %d\n", order); |
| CBLAS_CallFromC = 0; |
| RowMajorStrg = 0; |
| return; |
| } |