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