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