#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
void | cblas_chemm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const void *alpha, const void *A, const int lda, const void *B, const int ldb, const void *beta, void *C, const int ldc) |
|
◆ F77_lda
◆ F77_ldb
◆ F77_ldc
◆ F77_M
◆ F77_N
◆ F77_SD
◆ F77_UL
◆ cblas_chemm()
void cblas_chemm |
( |
const enum CBLAS_ORDER |
Order, |
|
|
const enum CBLAS_SIDE |
Side, |
|
|
const enum CBLAS_UPLO |
Uplo, |
|
|
const int |
M, |
|
|
const int |
N, |
|
|
const void * |
alpha, |
|
|
const void * |
A, |
|
|
const int |
lda, |
|
|
const void * |
B, |
|
|
const int |
ldb, |
|
|
const void * |
beta, |
|
|
void * |
C, |
|
|
const int |
ldc |
|
) |
| |
Definition at line 12 of file cblas_chemm.c.
48 cblas_xerbla(2,
"cblas_chemm",
"Illegal Side setting, %d\n", Side);
58 cblas_xerbla(3,
"cblas_chemm",
"Illegal Uplo setting, %d\n", Uplo);
78 cblas_xerbla(2,
"cblas_chemm",
"Illegal Side setting, %d\n", Side);
88 cblas_xerbla(3,
"cblas_chemm",
"Illegal Uplo setting, %d\n", Uplo);
102 else cblas_xerbla(1,
"cblas_chemm",
"Illegal Order setting, %d\n", Order);
void cblas_xerbla(int p, const char *rout, const char *form,...)
void F77_chemm(FCHAR, FCHAR, FINT, FINT, const float *, const float *, FINT, const float *, FINT, const float *, float *, FINT)