LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
ssbev_2stage.f
Go to the documentation of this file.
1*> \brief <b> SSBEV_2STAGE computes the eigenvalues and, optionally, the left and/or right eigenvectors for OTHER matrices</b>
2*
3* @generated from dsbev_2stage.f, fortran d -> s, Sat Nov 5 23:58:09 2016
4*
5* =========== DOCUMENTATION ===========
6*
7* Online html documentation available at
8* http://www.netlib.org/lapack/explore-html/
9*
10*> \htmlonly
11*> Download SSBEV_2STAGE + dependencies
12*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ssbev_2stage.f">
13*> [TGZ]</a>
14*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ssbev_2stage.f">
15*> [ZIP]</a>
16*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ssbev_2stage.f">
17*> [TXT]</a>
18*> \endhtmlonly
19*
20* Definition:
21* ===========
22*
23* SUBROUTINE SSBEV_2STAGE( JOBZ, UPLO, N, KD, AB, LDAB, W, Z, LDZ,
24* WORK, LWORK, INFO )
25*
26* IMPLICIT NONE
27*
28* .. Scalar Arguments ..
29* CHARACTER JOBZ, UPLO
30* INTEGER INFO, KD, LDAB, LDZ, N, LWORK
31* ..
32* .. Array Arguments ..
33* REAL AB( LDAB, * ), W( * ), WORK( * ), Z( LDZ, * )
34* ..
35*
36*
37*> \par Purpose:
38* =============
39*>
40*> \verbatim
41*>
42*> SSBEV_2STAGE computes all the eigenvalues and, optionally, eigenvectors of
43*> a real symmetric band matrix A using the 2stage technique for
44*> the reduction to tridiagonal.
45*> \endverbatim
46*
47* Arguments:
48* ==========
49*
50*> \param[in] JOBZ
51*> \verbatim
52*> JOBZ is CHARACTER*1
53*> = 'N': Compute eigenvalues only;
54*> = 'V': Compute eigenvalues and eigenvectors.
55*> Not available in this release.
56*> \endverbatim
57*>
58*> \param[in] UPLO
59*> \verbatim
60*> UPLO is CHARACTER*1
61*> = 'U': Upper triangle of A is stored;
62*> = 'L': Lower triangle of A is stored.
63*> \endverbatim
64*>
65*> \param[in] N
66*> \verbatim
67*> N is INTEGER
68*> The order of the matrix A. N >= 0.
69*> \endverbatim
70*>
71*> \param[in] KD
72*> \verbatim
73*> KD is INTEGER
74*> The number of superdiagonals of the matrix A if UPLO = 'U',
75*> or the number of subdiagonals if UPLO = 'L'. KD >= 0.
76*> \endverbatim
77*>
78*> \param[in,out] AB
79*> \verbatim
80*> AB is REAL array, dimension (LDAB, N)
81*> On entry, the upper or lower triangle of the symmetric band
82*> matrix A, stored in the first KD+1 rows of the array. The
83*> j-th column of A is stored in the j-th column of the array AB
84*> as follows:
85*> if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-kd)<=i<=j;
86*> if UPLO = 'L', AB(1+i-j,j) = A(i,j) for j<=i<=min(n,j+kd).
87*>
88*> On exit, AB is overwritten by values generated during the
89*> reduction to tridiagonal form. If UPLO = 'U', the first
90*> superdiagonal and the diagonal of the tridiagonal matrix T
91*> are returned in rows KD and KD+1 of AB, and if UPLO = 'L',
92*> the diagonal and first subdiagonal of T are returned in the
93*> first two rows of AB.
94*> \endverbatim
95*>
96*> \param[in] LDAB
97*> \verbatim
98*> LDAB is INTEGER
99*> The leading dimension of the array AB. LDAB >= KD + 1.
100*> \endverbatim
101*>
102*> \param[out] W
103*> \verbatim
104*> W is REAL array, dimension (N)
105*> If INFO = 0, the eigenvalues in ascending order.
106*> \endverbatim
107*>
108*> \param[out] Z
109*> \verbatim
110*> Z is REAL array, dimension (LDZ, N)
111*> If JOBZ = 'V', then if INFO = 0, Z contains the orthonormal
112*> eigenvectors of the matrix A, with the i-th column of Z
113*> holding the eigenvector associated with W(i).
114*> If JOBZ = 'N', then Z is not referenced.
115*> \endverbatim
116*>
117*> \param[in] LDZ
118*> \verbatim
119*> LDZ is INTEGER
120*> The leading dimension of the array Z. LDZ >= 1, and if
121*> JOBZ = 'V', LDZ >= max(1,N).
122*> \endverbatim
123*>
124*> \param[out] WORK
125*> \verbatim
126*> WORK is REAL array, dimension LWORK
127*> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
128*> \endverbatim
129*>
130*> \param[in] LWORK
131*> \verbatim
132*> LWORK is INTEGER
133*> The length of the array WORK. LWORK >= 1, when N <= 1;
134*> otherwise
135*> If JOBZ = 'N' and N > 1, LWORK must be queried.
136*> LWORK = MAX(1, dimension) where
137*> dimension = (2KD+1)*N + KD*NTHREADS + N
138*> where KD is the size of the band.
139*> NTHREADS is the number of threads used when
140*> openMP compilation is enabled, otherwise =1.
141*> If JOBZ = 'V' and N > 1, LWORK must be queried. Not yet available.
142*>
143*> If LWORK = -1, then a workspace query is assumed; the routine
144*> only calculates the optimal size of the WORK array, returns
145*> this value as the first entry of the WORK array, and no error
146*> message related to LWORK is issued by XERBLA.
147*> \endverbatim
148*>
149*> \param[out] INFO
150*> \verbatim
151*> INFO is INTEGER
152*> = 0: successful exit
153*> < 0: if INFO = -i, the i-th argument had an illegal value
154*> > 0: if INFO = i, the algorithm failed to converge; i
155*> off-diagonal elements of an intermediate tridiagonal
156*> form did not converge to zero.
157*> \endverbatim
158*
159* Authors:
160* ========
161*
162*> \author Univ. of Tennessee
163*> \author Univ. of California Berkeley
164*> \author Univ. of Colorado Denver
165*> \author NAG Ltd.
166*
167*> \ingroup hbev_2stage
168*
169*> \par Further Details:
170* =====================
171*>
172*> \verbatim
173*>
174*> All details about the 2stage techniques are available in:
175*>
176*> Azzam Haidar, Hatem Ltaief, and Jack Dongarra.
177*> Parallel reduction to condensed forms for symmetric eigenvalue problems
178*> using aggregated fine-grained and memory-aware kernels. In Proceedings
179*> of 2011 International Conference for High Performance Computing,
180*> Networking, Storage and Analysis (SC '11), New York, NY, USA,
181*> Article 8 , 11 pages.
182*> http://doi.acm.org/10.1145/2063384.2063394
183*>
184*> A. Haidar, J. Kurzak, P. Luszczek, 2013.
185*> An improved parallel singular value algorithm and its implementation
186*> for multicore hardware, In Proceedings of 2013 International Conference
187*> for High Performance Computing, Networking, Storage and Analysis (SC '13).
188*> Denver, Colorado, USA, 2013.
189*> Article 90, 12 pages.
190*> http://doi.acm.org/10.1145/2503210.2503292
191*>
192*> A. Haidar, R. Solca, S. Tomov, T. Schulthess and J. Dongarra.
193*> A novel hybrid CPU-GPU generalized eigensolver for electronic structure
194*> calculations based on fine-grained memory aware tasks.
195*> International Journal of High Performance Computing Applications.
196*> Volume 28 Issue 2, Pages 196-209, May 2014.
197*> http://hpc.sagepub.com/content/28/2/196
198*>
199*> \endverbatim
200*
201* =====================================================================
202 SUBROUTINE ssbev_2stage( JOBZ, UPLO, N, KD, AB, LDAB, W, Z, LDZ,
203 $ WORK, LWORK, INFO )
204*
205 IMPLICIT NONE
206*
207* -- LAPACK driver routine --
208* -- LAPACK is a software package provided by Univ. of Tennessee, --
209* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
210*
211* .. Scalar Arguments ..
212 CHARACTER JOBZ, UPLO
213 INTEGER INFO, KD, LDAB, LDZ, N, LWORK
214* ..
215* .. Array Arguments ..
216 REAL AB( LDAB, * ), W( * ), WORK( * ), Z( LDZ, * )
217* ..
218*
219* =====================================================================
220*
221* .. Parameters ..
222 REAL ZERO, ONE
223 parameter( zero = 0.0e0, one = 1.0e0 )
224* ..
225* .. Local Scalars ..
226 LOGICAL LOWER, WANTZ, LQUERY
227 INTEGER IINFO, IMAX, INDE, INDWRK, ISCALE,
228 $ llwork, lwmin, lhtrd, lwtrd, ib, indhous
229 REAL ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN, SIGMA,
230 $ smlnum
231* ..
232* .. External Functions ..
233 LOGICAL LSAME
234 INTEGER ILAENV2STAGE
235 REAL SLAMCH, SLANSB, SROUNDUP_LWORK
236 EXTERNAL lsame, slamch, slansb, ilaenv2stage,
237 $ sroundup_lwork
238* ..
239* .. External Subroutines ..
240 EXTERNAL slascl, sscal, ssteqr, ssterf, xerbla,
242* ..
243* .. Intrinsic Functions ..
244 INTRINSIC sqrt
245* ..
246* .. Executable Statements ..
247*
248* Test the input parameters.
249*
250 wantz = lsame( jobz, 'V' )
251 lower = lsame( uplo, 'L' )
252 lquery = ( lwork.EQ.-1 )
253*
254 info = 0
255 IF( .NOT.( lsame( jobz, 'N' ) ) ) THEN
256 info = -1
257 ELSE IF( .NOT.( lower .OR. lsame( uplo, 'U' ) ) ) THEN
258 info = -2
259 ELSE IF( n.LT.0 ) THEN
260 info = -3
261 ELSE IF( kd.LT.0 ) THEN
262 info = -4
263 ELSE IF( ldab.LT.kd+1 ) THEN
264 info = -6
265 ELSE IF( ldz.LT.1 .OR. ( wantz .AND. ldz.LT.n ) ) THEN
266 info = -9
267 END IF
268*
269 IF( info.EQ.0 ) THEN
270 IF( n.LE.1 ) THEN
271 lwmin = 1
272 work( 1 ) = sroundup_lwork(lwmin)
273 ELSE
274 ib = ilaenv2stage( 2, 'SSYTRD_SB2ST', jobz,
275 $ n, kd, -1, -1 )
276 lhtrd = ilaenv2stage( 3, 'SSYTRD_SB2ST', jobz,
277 $ n, kd, ib, -1 )
278 lwtrd = ilaenv2stage( 4, 'SSYTRD_SB2ST', jobz,
279 $ n, kd, ib, -1 )
280 lwmin = n + lhtrd + lwtrd
281 work( 1 ) = sroundup_lwork(lwmin)
282 ENDIF
283*
284 IF( lwork.LT.lwmin .AND. .NOT.lquery )
285 $ info = -11
286 END IF
287*
288 IF( info.NE.0 ) THEN
289 CALL xerbla( 'SSBEV_2STAGE ', -info )
290 RETURN
291 ELSE IF( lquery ) THEN
292 RETURN
293 END IF
294*
295* Quick return if possible
296*
297 IF( n.EQ.0 )
298 $ RETURN
299*
300 IF( n.EQ.1 ) THEN
301 IF( lower ) THEN
302 w( 1 ) = ab( 1, 1 )
303 ELSE
304 w( 1 ) = ab( kd+1, 1 )
305 END IF
306 IF( wantz )
307 $ z( 1, 1 ) = one
308 RETURN
309 END IF
310*
311* Get machine constants.
312*
313 safmin = slamch( 'Safe minimum' )
314 eps = slamch( 'Precision' )
315 smlnum = safmin / eps
316 bignum = one / smlnum
317 rmin = sqrt( smlnum )
318 rmax = sqrt( bignum )
319*
320* Scale matrix to allowable range, if necessary.
321*
322 anrm = slansb( 'M', uplo, n, kd, ab, ldab, work )
323 iscale = 0
324 IF( anrm.GT.zero .AND. anrm.LT.rmin ) THEN
325 iscale = 1
326 sigma = rmin / anrm
327 ELSE IF( anrm.GT.rmax ) THEN
328 iscale = 1
329 sigma = rmax / anrm
330 END IF
331 IF( iscale.EQ.1 ) THEN
332 IF( lower ) THEN
333 CALL slascl( 'B', kd, kd, one, sigma, n, n, ab, ldab, info )
334 ELSE
335 CALL slascl( 'Q', kd, kd, one, sigma, n, n, ab, ldab, info )
336 END IF
337 END IF
338*
339* Call SSYTRD_SB2ST to reduce symmetric band matrix to tridiagonal form.
340*
341 inde = 1
342 indhous = inde + n
343 indwrk = indhous + lhtrd
344 llwork = lwork - indwrk + 1
345*
346 CALL ssytrd_sb2st( "N", jobz, uplo, n, kd, ab, ldab, w,
347 $ work( inde ), work( indhous ), lhtrd,
348 $ work( indwrk ), llwork, iinfo )
349*
350* For eigenvalues only, call SSTERF. For eigenvectors, call SSTEQR.
351*
352 IF( .NOT.wantz ) THEN
353 CALL ssterf( n, w, work( inde ), info )
354 ELSE
355 CALL ssteqr( jobz, n, w, work( inde ), z, ldz, work( indwrk ),
356 $ info )
357 END IF
358*
359* If matrix was scaled, then rescale eigenvalues appropriately.
360*
361 IF( iscale.EQ.1 ) THEN
362 IF( info.EQ.0 ) THEN
363 imax = n
364 ELSE
365 imax = info - 1
366 END IF
367 CALL sscal( imax, one / sigma, w, 1 )
368 END IF
369*
370* Set WORK(1) to optimal workspace size.
371*
372 work( 1 ) = sroundup_lwork(lwmin)
373*
374 RETURN
375*
376* End of SSBEV_2STAGE
377*
378 END
subroutine xerbla(srname, info)
Definition cblat2.f:3285
subroutine ssbev_2stage(jobz, uplo, n, kd, ab, ldab, w, z, ldz, work, lwork, info)
SSBEV_2STAGE computes the eigenvalues and, optionally, the left and/or right eigenvectors for OTHER m...
subroutine ssytrd_sb2st(stage1, vect, uplo, n, kd, ab, ldab, d, e, hous, lhous, work, lwork, info)
SSYTRD_SB2ST reduces a real symmetric band matrix A to real symmetric tridiagonal form T
subroutine slascl(type, kl, ku, cfrom, cto, m, n, a, lda, info)
SLASCL multiplies a general rectangular matrix by a real scalar defined as cto/cfrom.
Definition slascl.f:143
subroutine sscal(n, sa, sx, incx)
SSCAL
Definition sscal.f:79
subroutine ssteqr(compz, n, d, e, z, ldz, work, info)
SSTEQR
Definition ssteqr.f:131
subroutine ssterf(n, d, e, info)
SSTERF
Definition ssterf.f:86