OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
cblas_ssyr.c File Reference
#include "cblas.h"
#include "cblas_f77.h"

Go to the source code of this file.

Macros

#define F77_UL   &UL
#define F77_N   N
#define F77_incX   incX
#define F77_lda   lda

Functions

void cblas_ssyr (const CBLAS_LAYOUT layout, const CBLAS_UPLO Uplo, const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT incX, float *A, const CBLAS_INT lda)

Macro Definition Documentation

◆ F77_incX

#define F77_incX   incX

◆ F77_lda

#define F77_lda   lda

◆ F77_N

#define F77_N   N

◆ F77_UL

#define F77_UL   &UL

Function Documentation

◆ cblas_ssyr()

void cblas_ssyr ( const CBLAS_LAYOUT layout,
const CBLAS_UPLO Uplo,
const CBLAS_INT N,
const float alpha,
const float * X,
const CBLAS_INT incX,
float * A,
const CBLAS_INT lda )

Definition at line 11 of file cblas_ssyr.c.

14{
15 char UL;
16#ifdef F77_CHAR
17 F77_CHAR F77_UL;
18#else
19 #define F77_UL &UL
20#endif
21
22#ifdef F77_INT
23 F77_INT F77_N=N, F77_incX=incX, F77_lda=lda;
24#else
25 #define F77_N N
26 #define F77_incX incX
27 #define F77_lda lda
28#endif
29 extern int CBLAS_CallFromC;
30 extern int RowMajorStrg;
31 RowMajorStrg = 0;
33 if (layout == CblasColMajor)
34 {
35 if (Uplo == CblasLower) UL = 'L';
36 else if (Uplo == CblasUpper) UL = 'U';
37 else
38 {
39 cblas_xerbla(2, "cblas_ssyr","Illegal Uplo setting, %d\n",Uplo );
41 RowMajorStrg = 0;
42 return;
43 }
44 #ifdef F77_CHAR
45 F77_UL = C2F_CHAR(&UL);
46 #endif
47
49
50 } else if (layout == CblasRowMajor)
51 {
52 RowMajorStrg = 1;
53 if (Uplo == CblasLower) UL = 'U';
54 else if (Uplo == CblasUpper) UL = 'L';
55 else
56 {
57 cblas_xerbla(2, "cblas_ssyr","Illegal Uplo setting, %d\n",Uplo );
59 RowMajorStrg = 0;
60 return;
61 }
62 #ifdef F77_CHAR
63 F77_UL = C2F_CHAR(&UL);
64 #endif
66 } else cblas_xerbla(1, "cblas_ssyr", "Illegal layout setting, %d\n", layout);
68 RowMajorStrg = 0;
69 return;
70}
#define C2F_CHAR(a)
Definition pblas.h:125
@ CblasLower
Definition cblas.h:29
@ CblasUpper
Definition cblas.h:29
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)
@ CblasColMajor
Definition cblas.h:27
@ CblasRowMajor
Definition cblas.h:27
#define F77_incX
#define F77_N
#define F77_lda
#define F77_UL
#define F77_INT
Definition cblas_f77.h:32
#define F77_ssyr(...)
Definition cblas_f77.h:294
int CBLAS_CallFromC
int RowMajorStrg
#define alpha
Definition eval.h:35
#define N