LAPACK
3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
cblas_dsymv.c
Go to the documentation of this file.
1
/*
2
*
3
* cblas_dsymv.c
4
* This program is a C interface to dsymv.
5
* Written by Keita Teranishi
6
* 4/6/1998
7
*
8
*/
9
10
#include "
cblas.h
"
11
#include "
cblas_f77.h
"
12
void
API_SUFFIX
(
cblas_dsymv
)(
const
CBLAS_LAYOUT
layout,
13
const
CBLAS_UPLO
Uplo,
const
CBLAS_INT
N,
14
const
double
alpha,
const
double
*A,
const
CBLAS_INT
lda,
15
const
double
*X,
const
CBLAS_INT
incX,
const
double
beta,
16
double
*Y,
const
CBLAS_INT
incY)
17
{
18
char
UL;
19
#ifdef F77_CHAR
20
F77_CHAR
F77_UL
;
21
#else
22
#define F77_UL &UL
23
#endif
24
#ifdef F77_INT
25
F77_INT
F77_N
=N,
F77_lda
=lda,
F77_incX
=incX,
F77_incY
=incY;
26
#else
27
#define F77_N N
28
#define F77_lda lda
29
#define F77_incX incX
30
#define F77_incY incY
31
#endif
32
extern
int
CBLAS_CallFromC
;
33
extern
int
RowMajorStrg
;
34
RowMajorStrg
= 0;
35
36
CBLAS_CallFromC
= 1;
37
if
(layout ==
CblasColMajor
)
38
{
39
if
(Uplo ==
CblasUpper
) UL =
'U'
;
40
else
if
(Uplo ==
CblasLower
) UL =
'L'
;
41
else
42
{
43
API_SUFFIX
(
cblas_xerbla
)(2,
"cblas_dsymv"
,
"Illegal Uplo setting, %d\n"
,Uplo );
44
CBLAS_CallFromC
= 0;
45
RowMajorStrg
= 0;
46
return
;
47
}
48
#ifdef F77_CHAR
49
F77_UL
= C2F_CHAR(&UL);
50
#endif
51
F77_dsymv
(
F77_UL
, &
F77_N
, &alpha, A, &
F77_lda
, X,
52
&
F77_incX
, &beta, Y, &
F77_incY
);
53
}
54
else
if
(layout ==
CblasRowMajor
)
55
{
56
RowMajorStrg
= 1;
57
if
(Uplo ==
CblasUpper
) UL =
'L'
;
58
else
if
(Uplo ==
CblasLower
) UL =
'U'
;
59
else
60
{
61
API_SUFFIX
(
cblas_xerbla
)(2,
"cblas_dsymv"
,
"Illegal Uplo setting, %d\n"
, Uplo);
62
CBLAS_CallFromC
= 0;
63
RowMajorStrg
= 0;
64
return
;
65
}
66
#ifdef F77_CHAR
67
F77_UL
= C2F_CHAR(&UL);
68
#endif
69
F77_dsymv
(
F77_UL
, &
F77_N
, &alpha,
70
A ,&
F77_lda
, X,&
F77_incX
, &beta, Y, &
F77_incY
);
71
}
72
else
API_SUFFIX
(
cblas_xerbla
)(1,
"cblas_dsymv"
,
"Illegal layout setting, %d\n"
, layout);
73
CBLAS_CallFromC
= 0;
74
RowMajorStrg
= 0;
75
return
;
76
}
CBLAS_UPLO
CBLAS_UPLO
Definition
cblas.h:41
CblasLower
@ CblasLower
Definition
cblas.h:41
CblasUpper
@ CblasUpper
Definition
cblas.h:41
cblas_xerbla
void cblas_xerbla(CBLAS_INT p, const char *rout, const char *form,...)
Definition
cblas_xerbla.c:12
CBLAS_LAYOUT
CBLAS_LAYOUT
Definition
cblas.h:39
CblasColMajor
@ CblasColMajor
Definition
cblas.h:39
CblasRowMajor
@ CblasRowMajor
Definition
cblas.h:39
API_SUFFIX
#define API_SUFFIX(a)
Definition
cblas.h:57
CBLAS_INT
#define CBLAS_INT
Definition
cblas.h:24
cblas.h
F77_incX
#define F77_incX
F77_incY
#define F77_incY
F77_N
#define F77_N
cblas_dsymv
void API_SUFFIX() 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
cblas_dsymv.c:12
F77_lda
#define F77_lda
F77_UL
#define F77_UL
F77_INT
#define F77_INT
Definition
cblas_example2_64.c:7
F77_dsymv
#define F77_dsymv(...)
Definition
cblas_f77.h:331
cblas_f77.h
CBLAS_CallFromC
int CBLAS_CallFromC
Definition
cblas_globals.c:1
RowMajorStrg
int RowMajorStrg
Definition
cblas_globals.c:2
CBLAS
src
cblas_dsymv.c
Generated on Tue Nov 28 2023 11:55:04 for LAPACK by
1.9.7