#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
| void | cblas_ssyrk (const CBLAS_LAYOUT layout, const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE Trans, const CBLAS_INT N, const CBLAS_INT K, const float alpha, const float *A, const CBLAS_INT lda, const float beta, float *C, const CBLAS_INT ldc) |
◆ F77_K
◆ F77_lda
◆ F77_ldc
◆ F77_N
◆ F77_TR
◆ F77_UL
◆ cblas_ssyrk()
| void cblas_ssyrk |
( |
const CBLAS_LAYOUT | layout, |
|
|
const CBLAS_UPLO | Uplo, |
|
|
const CBLAS_TRANSPOSE | Trans, |
|
|
const CBLAS_INT | N, |
|
|
const CBLAS_INT | K, |
|
|
const float | alpha, |
|
|
const float * | A, |
|
|
const CBLAS_INT | lda, |
|
|
const float | beta, |
|
|
float * | C, |
|
|
const CBLAS_INT | ldc ) |
Definition at line 12 of file cblas_ssyrk.c.
16{
17 char UL, TR;
18#ifdef F77_CHAR
20#else
21 #define F77_TR &TR
22 #define F77_UL &UL
23#endif
24
25#ifdef F77_INT
28#else
29 #define F77_N N
30 #define F77_K K
31 #define F77_lda lda
32 #define F77_ldc ldc
33#endif
34
39
41 {
42
45 else
46 {
48 "Illegal Uplo setting, %d\n", Uplo);
51 return;
52 }
53
57 else
58 {
60 "Illegal Trans setting, %d\n", Trans);
63 return;
64 }
65
66
67 #ifdef F77_CHAR
70 #endif
71
74 {
78 else
79 {
81 "Illegal Uplo setting, %d\n", Uplo);
84 return;
85 }
89 else
90 {
92 "Illegal Trans setting, %d\n", Trans);
95 return;
96 }
97
98 #ifdef F77_CHAR
101 #endif
102
105 "Illegal layout setting, %d\n", layout);
108 return;
109}
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)