00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015
00016
00017
00018 static integer c__1 = 1;
00019 static real c_b10 = -1.f;
00020 static real c_b12 = 1.f;
00021
00022 int spotf2_(char *uplo, integer *n, real *a, integer *lda,
00023 integer *info)
00024 {
00025
00026 integer a_dim1, a_offset, i__1, i__2, i__3;
00027 real r__1;
00028
00029
00030 double sqrt(doublereal);
00031
00032
00033 integer j;
00034 real ajj;
00035 extern doublereal sdot_(integer *, real *, integer *, real *, integer *);
00036 extern logical lsame_(char *, char *);
00037 extern int sscal_(integer *, real *, real *, integer *),
00038 sgemv_(char *, integer *, integer *, real *, real *, integer *,
00039 real *, integer *, real *, real *, integer *);
00040 logical upper;
00041 extern int xerbla_(char *, integer *);
00042 extern logical sisnan_(real *);
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 a_dim1 = *lda;
00119 a_offset = 1 + a_dim1;
00120 a -= a_offset;
00121
00122
00123 *info = 0;
00124 upper = lsame_(uplo, "U");
00125 if (! upper && ! lsame_(uplo, "L")) {
00126 *info = -1;
00127 } else if (*n < 0) {
00128 *info = -2;
00129 } else if (*lda < max(1,*n)) {
00130 *info = -4;
00131 }
00132 if (*info != 0) {
00133 i__1 = -(*info);
00134 xerbla_("SPOTF2", &i__1);
00135 return 0;
00136 }
00137
00138
00139
00140 if (*n == 0) {
00141 return 0;
00142 }
00143
00144 if (upper) {
00145
00146
00147
00148 i__1 = *n;
00149 for (j = 1; j <= i__1; ++j) {
00150
00151
00152
00153 i__2 = j - 1;
00154 ajj = a[j + j * a_dim1] - sdot_(&i__2, &a[j * a_dim1 + 1], &c__1,
00155 &a[j * a_dim1 + 1], &c__1);
00156 if (ajj <= 0.f || sisnan_(&ajj)) {
00157 a[j + j * a_dim1] = ajj;
00158 goto L30;
00159 }
00160 ajj = sqrt(ajj);
00161 a[j + j * a_dim1] = ajj;
00162
00163
00164
00165 if (j < *n) {
00166 i__2 = j - 1;
00167 i__3 = *n - j;
00168 sgemv_("Transpose", &i__2, &i__3, &c_b10, &a[(j + 1) * a_dim1
00169 + 1], lda, &a[j * a_dim1 + 1], &c__1, &c_b12, &a[j + (
00170 j + 1) * a_dim1], lda);
00171 i__2 = *n - j;
00172 r__1 = 1.f / ajj;
00173 sscal_(&i__2, &r__1, &a[j + (j + 1) * a_dim1], lda);
00174 }
00175
00176 }
00177 } else {
00178
00179
00180
00181 i__1 = *n;
00182 for (j = 1; j <= i__1; ++j) {
00183
00184
00185
00186 i__2 = j - 1;
00187 ajj = a[j + j * a_dim1] - sdot_(&i__2, &a[j + a_dim1], lda, &a[j
00188 + a_dim1], lda);
00189 if (ajj <= 0.f || sisnan_(&ajj)) {
00190 a[j + j * a_dim1] = ajj;
00191 goto L30;
00192 }
00193 ajj = sqrt(ajj);
00194 a[j + j * a_dim1] = ajj;
00195
00196
00197
00198 if (j < *n) {
00199 i__2 = *n - j;
00200 i__3 = j - 1;
00201 sgemv_("No transpose", &i__2, &i__3, &c_b10, &a[j + 1 +
00202 a_dim1], lda, &a[j + a_dim1], lda, &c_b12, &a[j + 1 +
00203 j * a_dim1], &c__1);
00204 i__2 = *n - j;
00205 r__1 = 1.f / ajj;
00206 sscal_(&i__2, &r__1, &a[j + 1 + j * a_dim1], &c__1);
00207 }
00208
00209 }
00210 }
00211 goto L40;
00212
00213 L30:
00214 *info = j;
00215
00216 L40:
00217 return 0;
00218
00219
00220
00221 }