- Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathcblas_cgemv.c
162 lines (152 loc) · 3.95 KB
/
cblas_cgemv.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
* cblas_cgemv.c
* The program is a C interface of cgemv
*
* Keita Teranishi 5/20/98
*
*/
#include<stdio.h>
#include<stdlib.h>
#include"cblas.h"
#include"cblas_f77.h"
voidcblas_cgemv(constCBLAS_LAYOUTlayout,
constCBLAS_TRANSPOSETransA, constintM, constintN,
constvoid*alpha, constvoid*A, constintlda,
constvoid*X, constintincX, constvoid*beta,
void*Y, constintincY)
{
charTA;
#ifdefF77_CHAR
F77_CHARF77_TA;
#else
#defineF77_TA &TA
#endif
#ifdefF77_INT
F77_INTF77_M=M, F77_N=N, F77_lda=lda, F77_incX=incX, F77_incY=incY;
#else
#defineF77_M M
#defineF77_N N
#defineF77_lda lda
#defineF77_incX incx
#defineF77_incY incY
#endif
intn=0, i=0, incx=incX;
constfloat*xx= (constfloat*)X;
floatALPHA[2],BETA[2];
inttincY, tincx;
float*x=(float*)X, *y=(float*)Y, *st=0, *tx=0;
constfloat*stx=x;
externintCBLAS_CallFromC;
externintRowMajorStrg;
RowMajorStrg=0;
CBLAS_CallFromC=1;
if (layout==CblasColMajor)
{
if (TransA==CblasNoTrans) TA='N';
elseif (TransA==CblasTrans) TA='T';
elseif (TransA==CblasConjTrans) TA='C';
else
{
cblas_xerbla(2, "cblas_cgemv","Illegal TransA setting, %d\n", TransA);
CBLAS_CallFromC=0;
RowMajorStrg=0;
return;
}
#ifdefF77_CHAR
F77_TA=C2F_CHAR(&TA);
#endif
F77_cgemv(F77_TA, &F77_M, &F77_N, alpha, A, &F77_lda, X, &F77_incX,
beta, Y, &F77_incY);
}
elseif (layout==CblasRowMajor)
{
RowMajorStrg=1;
if (TransA==CblasNoTrans) TA='T';
elseif (TransA==CblasTrans) TA='N';
elseif (TransA==CblasConjTrans)
{
ALPHA[0]=*( (constfloat*) alpha );
ALPHA[1]=-( *( (constfloat*) alpha+1) );
BETA[0]=*( (constfloat*) beta );
BETA[1]=-( *( (constfloat*) beta+1 ) );
TA='N';
if (M>0)
{
n=M << 1;
x=malloc(n*sizeof(float));
tx=x;
if( incX>0 ) {
i=incX << 1 ;
tincx=2;
st=x+n;
} else {
i=incX*(-2);
tincx=-2;
st=x-2;
x+=(n-2);
}
do
{
*x=*xx;
x[1] =-xx[1];
x+=tincx ;
xx+=i;
}
while (x!=st);
x=tx;
F77_incX=1;
if(incY>0)
tincY=incY;
else
tincY=-incY;
y++;
if (N>0)
{
i=tincY << 1;
n=i*N ;
st=y+n;
do {
*y=-(*y);
y+=i;
} while(y!=st);
y-=n;
}
stx=x;
}
elsestx= (constfloat*)X;
}
else
{
cblas_xerbla(2, "cblas_cgemv","Illegal TransA setting, %d\n", TransA);
CBLAS_CallFromC=0;
RowMajorStrg=0;
return;
}
#ifdefF77_CHAR
F77_TA=C2F_CHAR(&TA);
#endif
if (TransA==CblasConjTrans)
F77_cgemv(F77_TA, &F77_N, &F77_M, ALPHA, A, &F77_lda, stx,
&F77_incX, BETA, Y, &F77_incY);
else
F77_cgemv(F77_TA, &F77_N, &F77_M, alpha, A, &F77_lda, x,
&F77_incX, beta, Y, &F77_incY);
if (TransA==CblasConjTrans)
{
if (x!= (constfloat*)X) free(x);
if (N>0)
{
do
{
*y=-(*y);
y+=i;
}
while (y!=st);
}
}
}
elsecblas_xerbla(1, "cblas_cgemv", "Illegal layout setting, %d\n", layout);
CBLAS_CallFromC=0;
RowMajorStrg=0;
return;
}