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

◆ F77_ssyr2()

void F77_ssyr2 ( CBLAS_INT layout,
char *  uplow,
CBLAS_INT n,
float *  alpha,
float *  x,
CBLAS_INT incx,
float *  y,
CBLAS_INT incy,
float *  a,
CBLAS_INT lda 
)

Definition at line 163 of file c_sblas2.c.

164 {
165 float *A;
166 CBLAS_INT i,j,LDA;
167 CBLAS_UPLO uplo;
168
169 get_uplo_type(uplow,&uplo);
170
171 if (*layout == TEST_ROW_MJR) {
172 LDA = *n+1;
173 A = ( float* )malloc( (*n)*LDA*sizeof( float ) );
174 for( i=0; i<*n; i++ )
175 for( j=0; j<*n; j++ )
176 A[ LDA*i+j ]=a[ (*lda)*j+i ];
177 cblas_ssyr2(CblasRowMajor, uplo, *n, *alpha, x, *incx, y, *incy, A, LDA);
178 for( i=0; i<*n; i++ )
179 for( j=0; j<*n; j++ )
180 a[ (*lda)*j+i ]=A[ LDA*i+j ];
181 free(A);
182 }
183 else
184 cblas_ssyr2(CblasColMajor, uplo, *n, *alpha, x, *incx, y, *incy, a, *lda);
185}
CBLAS_UPLO
Definition cblas.h:41
void cblas_ssyr2(CBLAS_LAYOUT layout, CBLAS_UPLO Uplo, const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT incX, const float *Y, const CBLAS_INT incY, float *A, const CBLAS_INT lda)
Definition cblas_ssyr2.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
void get_uplo_type(char *type, CBLAS_UPLO *uplo)
Definition auxiliary.c:18
Here is the call graph for this function: