Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015
00016 int sgemv_(char *trans, integer *m, integer *n, real *alpha,
00017 real *a, integer *lda, real *x, integer *incx, real *beta, real *y,
00018 integer *incy)
00019 {
00020
00021 integer a_dim1, a_offset, i__1, i__2;
00022
00023
00024 integer i__, j, ix, iy, jx, jy, kx, ky, info;
00025 real temp;
00026 integer lenx, leny;
00027 extern logical lsame_(char *, char *);
00028 extern int xerbla_(char *, integer *);
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140 a_dim1 = *lda;
00141 a_offset = 1 + a_dim1;
00142 a -= a_offset;
00143 --x;
00144 --y;
00145
00146
00147 info = 0;
00148 if (! lsame_(trans, "N") && ! lsame_(trans, "T") && ! lsame_(trans, "C")
00149 ) {
00150 info = 1;
00151 } else if (*m < 0) {
00152 info = 2;
00153 } else if (*n < 0) {
00154 info = 3;
00155 } else if (*lda < max(1,*m)) {
00156 info = 6;
00157 } else if (*incx == 0) {
00158 info = 8;
00159 } else if (*incy == 0) {
00160 info = 11;
00161 }
00162 if (info != 0) {
00163 xerbla_("SGEMV ", &info);
00164 return 0;
00165 }
00166
00167
00168
00169 if (*m == 0 || *n == 0 || *alpha == 0.f && *beta == 1.f) {
00170 return 0;
00171 }
00172
00173
00174
00175
00176 if (lsame_(trans, "N")) {
00177 lenx = *n;
00178 leny = *m;
00179 } else {
00180 lenx = *m;
00181 leny = *n;
00182 }
00183 if (*incx > 0) {
00184 kx = 1;
00185 } else {
00186 kx = 1 - (lenx - 1) * *incx;
00187 }
00188 if (*incy > 0) {
00189 ky = 1;
00190 } else {
00191 ky = 1 - (leny - 1) * *incy;
00192 }
00193
00194
00195
00196
00197
00198
00199 if (*beta != 1.f) {
00200 if (*incy == 1) {
00201 if (*beta == 0.f) {
00202 i__1 = leny;
00203 for (i__ = 1; i__ <= i__1; ++i__) {
00204 y[i__] = 0.f;
00205
00206 }
00207 } else {
00208 i__1 = leny;
00209 for (i__ = 1; i__ <= i__1; ++i__) {
00210 y[i__] = *beta * y[i__];
00211
00212 }
00213 }
00214 } else {
00215 iy = ky;
00216 if (*beta == 0.f) {
00217 i__1 = leny;
00218 for (i__ = 1; i__ <= i__1; ++i__) {
00219 y[iy] = 0.f;
00220 iy += *incy;
00221
00222 }
00223 } else {
00224 i__1 = leny;
00225 for (i__ = 1; i__ <= i__1; ++i__) {
00226 y[iy] = *beta * y[iy];
00227 iy += *incy;
00228
00229 }
00230 }
00231 }
00232 }
00233 if (*alpha == 0.f) {
00234 return 0;
00235 }
00236 if (lsame_(trans, "N")) {
00237
00238
00239
00240 jx = kx;
00241 if (*incy == 1) {
00242 i__1 = *n;
00243 for (j = 1; j <= i__1; ++j) {
00244 if (x[jx] != 0.f) {
00245 temp = *alpha * x[jx];
00246 i__2 = *m;
00247 for (i__ = 1; i__ <= i__2; ++i__) {
00248 y[i__] += temp * a[i__ + j * a_dim1];
00249
00250 }
00251 }
00252 jx += *incx;
00253
00254 }
00255 } else {
00256 i__1 = *n;
00257 for (j = 1; j <= i__1; ++j) {
00258 if (x[jx] != 0.f) {
00259 temp = *alpha * x[jx];
00260 iy = ky;
00261 i__2 = *m;
00262 for (i__ = 1; i__ <= i__2; ++i__) {
00263 y[iy] += temp * a[i__ + j * a_dim1];
00264 iy += *incy;
00265
00266 }
00267 }
00268 jx += *incx;
00269
00270 }
00271 }
00272 } else {
00273
00274
00275
00276 jy = ky;
00277 if (*incx == 1) {
00278 i__1 = *n;
00279 for (j = 1; j <= i__1; ++j) {
00280 temp = 0.f;
00281 i__2 = *m;
00282 for (i__ = 1; i__ <= i__2; ++i__) {
00283 temp += a[i__ + j * a_dim1] * x[i__];
00284
00285 }
00286 y[jy] += *alpha * temp;
00287 jy += *incy;
00288
00289 }
00290 } else {
00291 i__1 = *n;
00292 for (j = 1; j <= i__1; ++j) {
00293 temp = 0.f;
00294 ix = kx;
00295 i__2 = *m;
00296 for (i__ = 1; i__ <= i__2; ++i__) {
00297 temp += a[i__ + j * a_dim1] * x[ix];
00298 ix += *incx;
00299
00300 }
00301 y[jy] += *alpha * temp;
00302 jy += *incy;
00303
00304 }
00305 }
00306 }
00307
00308 return 0;
00309
00310
00311
00312 }