#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
void | cblas_ssymm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, const enum CBLAS_UPLO Uplo, const int M, const int N, const float alpha, const float *A, const int lda, const float *B, const int ldb, const float beta, float *C, const int ldc) |
|
◆ F77_lda
◆ F77_ldb
◆ F77_ldc
◆ F77_M
◆ F77_N
◆ F77_SD
◆ F77_UL
◆ cblas_ssymm()
void cblas_ssymm |
( |
const enum CBLAS_ORDER |
Order, |
|
|
const enum CBLAS_SIDE |
Side, |
|
|
const enum CBLAS_UPLO |
Uplo, |
|
|
const int |
M, |
|
|
const int |
N, |
|
|
const float |
alpha, |
|
|
const float * |
A, |
|
|
const int |
lda, |
|
|
const float * |
B, |
|
|
const int |
ldb, |
|
|
const float |
beta, |
|
|
float * |
C, |
|
|
const int |
ldc |
|
) |
| |
Definition at line 12 of file cblas_ssymm.c.
49 "Illegal Side setting, %d\n", Side);
60 "Illegal Uplo setting, %d\n", Uplo);
71 F77_ssymm(
F77_SD,
F77_UL, &
F77_M, &
F77_N, &
alpha, A, &
F77_lda,
B, &
F77_ldb, &beta, C, &
F77_ldc);
80 "Illegal Side setting, %d\n", Side);
91 "Illegal Uplo setting, %d\n", Uplo);
102 F77_ssymm(
F77_SD,
F77_UL, &
F77_N, &
F77_M, &
alpha, A, &
F77_lda,
B, &
F77_ldb, &beta, C, &
F77_ldc);
104 "Illegal Order setting, %d\n", Order);
void F77_ssymm(FCHAR, FCHAR, FINT, FINT, const float *, const float *, FINT, const float *, FINT, const float *, float *, FINT)