#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
| void | cblas_ssyr2k (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 *B, const CBLAS_INT ldb, const float beta, float *C, const CBLAS_INT ldc) |
◆ F77_K
◆ F77_lda
◆ F77_ldb
◆ F77_ldc
◆ F77_N
◆ F77_TR
◆ F77_UL
◆ cblas_ssyr2k()
| void cblas_ssyr2k |
( |
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 * | B, |
|
|
const CBLAS_INT | ldb, |
|
|
const float | beta, |
|
|
float * | C, |
|
|
const CBLAS_INT | ldc ) |
Definition at line 12 of file cblas_ssyr2k.c.
17{
18 char UL, TR;
19#ifdef F77_CHAR
21#else
22 #define F77_TR &TR
23 #define F77_UL &UL
24#endif
25
26#ifdef F77_INT
29#else
30 #define F77_N N
31 #define F77_K K
32 #define F77_lda lda
33 #define F77_ldb ldb
34 #define F77_ldc ldc
35#endif
36
41
43 {
44
47 else
48 {
50 "Illegal Uplo setting, %d\n", Uplo);
53 return;
54 }
55
59 else
60 {
62 "Illegal Trans setting, %d\n", Trans);
65 return;
66 }
67
68
69 #ifdef F77_CHAR
72 #endif
73
74 F77_ssyr2k(
F77_UL,
F77_TR, &
F77_N, &
F77_K, &
alpha, A, &
F77_lda, B, &
F77_ldb, &beta, C, &
F77_ldc);
76 {
80 else
81 {
83 "Illegal Uplo setting, %d\n", Uplo);
86 return;
87 }
91 else
92 {
94 "Illegal Trans setting, %d\n", Trans);
97 return;
98 }
99
100 #ifdef F77_CHAR
103 #endif
104
105 F77_ssyr2k(
F77_UL,
F77_TR, &
F77_N, &
F77_K, &
alpha, A, &
F77_lda, B, &
F77_ldb, &beta, C, &
F77_ldc);
107 "Illegal layout setting, %d\n", layout);
110 return;
111}
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)