#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
| void | cblas_cherk (const CBLAS_LAYOUT layout, const CBLAS_UPLO Uplo, const CBLAS_TRANSPOSE Trans, const CBLAS_INT N, const CBLAS_INT K, const float alpha, const void *A, const CBLAS_INT lda, const float beta, void *C, const CBLAS_INT ldc) |
◆ F77_K
◆ F77_lda
◆ F77_ldc
◆ F77_N
◆ F77_TR
◆ F77_UL
◆ cblas_cherk()
| void cblas_cherk |
( |
const CBLAS_LAYOUT | layout, |
|
|
const CBLAS_UPLO | Uplo, |
|
|
const CBLAS_TRANSPOSE | Trans, |
|
|
const CBLAS_INT | N, |
|
|
const CBLAS_INT | K, |
|
|
const float | alpha, |
|
|
const void * | A, |
|
|
const CBLAS_INT | lda, |
|
|
const float | beta, |
|
|
void * | C, |
|
|
const CBLAS_INT | ldc ) |
Definition at line 12 of file cblas_cherk.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 {
44 else
45 {
46 cblas_xerbla(2,
"cblas_cherk",
"Illegal Uplo setting, %d\n", Uplo);
49 return;
50 }
51
55 else
56 {
57 cblas_xerbla(3,
"cblas_cherk",
"Illegal Trans setting, %d\n", Trans);
60 return;
61 }
62
63 #ifdef F77_CHAR
66 #endif
67
71 {
75 else
76 {
77 cblas_xerbla(3,
"cblas_cherk",
"Illegal Uplo setting, %d\n", Uplo);
80 return;
81 }
85 else
86 {
87 cblas_xerbla(3,
"cblas_cherk",
"Illegal Trans setting, %d\n", Trans);
90 return;
91 }
92
93 #ifdef F77_CHAR
96 #endif
97
100 }
101 else cblas_xerbla(1,
"cblas_cherk",
"Illegal layout setting, %d\n", layout);
104 return;
105}
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)