#include "cblas.h"
#include "cblas_f77.h"
Go to the source code of this file.
|
| void | cblas_ssbmv (const CBLAS_LAYOUT layout, const CBLAS_UPLO Uplo, const CBLAS_INT N, const CBLAS_INT K, const float alpha, const float *A, const CBLAS_INT lda, const float *X, const CBLAS_INT incX, const float beta, float *Y, const CBLAS_INT incY) |
◆ F77_incX
◆ F77_incY
◆ F77_K
◆ F77_lda
◆ F77_N
◆ F77_UL
◆ cblas_ssbmv()
| void cblas_ssbmv |
( |
const CBLAS_LAYOUT | layout, |
|
|
const CBLAS_UPLO | Uplo, |
|
|
const CBLAS_INT | N, |
|
|
const CBLAS_INT | K, |
|
|
const float | alpha, |
|
|
const float * | A, |
|
|
const CBLAS_INT | lda, |
|
|
const float * | X, |
|
|
const CBLAS_INT | incX, |
|
|
const float | beta, |
|
|
float * | Y, |
|
|
const CBLAS_INT | incY ) |
Definition at line 11 of file cblas_ssbmv.c.
15{
16 char UL;
17#ifdef F77_CHAR
19#else
20 #define F77_UL &UL
21#endif
22
23#ifdef F77_INT
25#else
26 #define F77_N N
27 #define F77_K K
28 #define F77_lda lda
29 #define F77_incX incX
30 #define F77_incY incY
31#endif
35
38 {
39
42 else
43 {
44 cblas_xerbla(2,
"cblas_ssbmv",
"Illegal Uplo setting, %d\n",Uplo );
47 return;
48 }
49 #ifdef F77_CHAR
51 #endif
55 {
59 else
60 {
61 cblas_xerbla(2,
"cblas_ssbmv",
"Illegal Uplo setting, %d\n", Uplo);
64 return;
65 }
66 #ifdef F77_CHAR
68 #endif
71 }
72 else cblas_xerbla(1,
"cblas_ssbmv",
"Illegal layout setting, %d\n", layout);
75 return;
76}
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)