You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cheevr.f 26 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. *> \brief <b> CHEEVR computes the eigenvalues and, optionally, the left and/or right eigenvectors for HE matrices</b>
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. *> \htmlonly
  9. *> Download CHEEVR + dependencies
  10. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/cheevr.f">
  11. *> [TGZ]</a>
  12. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/cheevr.f">
  13. *> [ZIP]</a>
  14. *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/cheevr.f">
  15. *> [TXT]</a>
  16. *> \endhtmlonly
  17. *
  18. * Definition:
  19. * ===========
  20. *
  21. * SUBROUTINE CHEEVR( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU,
  22. * ABSTOL, M, W, Z, LDZ, ISUPPZ, WORK, LWORK,
  23. * RWORK, LRWORK, IWORK, LIWORK, INFO )
  24. *
  25. * .. Scalar Arguments ..
  26. * CHARACTER JOBZ, RANGE, UPLO
  27. * INTEGER IL, INFO, IU, LDA, LDZ, LIWORK, LRWORK, LWORK,
  28. * $ M, N
  29. * REAL ABSTOL, VL, VU
  30. * ..
  31. * .. Array Arguments ..
  32. * INTEGER ISUPPZ( * ), IWORK( * )
  33. * REAL RWORK( * ), W( * )
  34. * COMPLEX A( LDA, * ), WORK( * ), Z( LDZ, * )
  35. * ..
  36. *
  37. *
  38. *> \par Purpose:
  39. * =============
  40. *>
  41. *> \verbatim
  42. *>
  43. *> CHEEVR computes selected eigenvalues and, optionally, eigenvectors
  44. *> of a complex Hermitian matrix A. Eigenvalues and eigenvectors can
  45. *> be selected by specifying either a range of values or a range of
  46. *> indices for the desired eigenvalues.
  47. *>
  48. *> CHEEVR first reduces the matrix A to tridiagonal form T with a call
  49. *> to CHETRD. Then, whenever possible, CHEEVR calls CSTEMR to compute
  50. *> the eigenspectrum using Relatively Robust Representations. CSTEMR
  51. *> computes eigenvalues by the dqds algorithm, while orthogonal
  52. *> eigenvectors are computed from various "good" L D L^T representations
  53. *> (also known as Relatively Robust Representations). Gram-Schmidt
  54. *> orthogonalization is avoided as far as possible. More specifically,
  55. *> the various steps of the algorithm are as follows.
  56. *>
  57. *> For each unreduced block (submatrix) of T,
  58. *> (a) Compute T - sigma I = L D L^T, so that L and D
  59. *> define all the wanted eigenvalues to high relative accuracy.
  60. *> This means that small relative changes in the entries of D and L
  61. *> cause only small relative changes in the eigenvalues and
  62. *> eigenvectors. The standard (unfactored) representation of the
  63. *> tridiagonal matrix T does not have this property in general.
  64. *> (b) Compute the eigenvalues to suitable accuracy.
  65. *> If the eigenvectors are desired, the algorithm attains full
  66. *> accuracy of the computed eigenvalues only right before
  67. *> the corresponding vectors have to be computed, see steps c) and d).
  68. *> (c) For each cluster of close eigenvalues, select a new
  69. *> shift close to the cluster, find a new factorization, and refine
  70. *> the shifted eigenvalues to suitable accuracy.
  71. *> (d) For each eigenvalue with a large enough relative separation compute
  72. *> the corresponding eigenvector by forming a rank revealing twisted
  73. *> factorization. Go back to (c) for any clusters that remain.
  74. *>
  75. *> The desired accuracy of the output can be specified by the input
  76. *> parameter ABSTOL.
  77. *>
  78. *> For more details, see DSTEMR's documentation and:
  79. *> - Inderjit S. Dhillon and Beresford N. Parlett: "Multiple representations
  80. *> to compute orthogonal eigenvectors of symmetric tridiagonal matrices,"
  81. *> Linear Algebra and its Applications, 387(1), pp. 1-28, August 2004.
  82. *> - Inderjit Dhillon and Beresford Parlett: "Orthogonal Eigenvectors and
  83. *> Relative Gaps," SIAM Journal on Matrix Analysis and Applications, Vol. 25,
  84. *> 2004. Also LAPACK Working Note 154.
  85. *> - Inderjit Dhillon: "A new O(n^2) algorithm for the symmetric
  86. *> tridiagonal eigenvalue/eigenvector problem",
  87. *> Computer Science Division Technical Report No. UCB/CSD-97-971,
  88. *> UC Berkeley, May 1997.
  89. *>
  90. *>
  91. *> Note 1 : CHEEVR calls CSTEMR when the full spectrum is requested
  92. *> on machines which conform to the ieee-754 floating point standard.
  93. *> CHEEVR calls SSTEBZ and CSTEIN on non-ieee machines and
  94. *> when partial spectrum requests are made.
  95. *>
  96. *> Normal execution of CSTEMR may create NaNs and infinities and
  97. *> hence may abort due to a floating point exception in environments
  98. *> which do not handle NaNs and infinities in the ieee standard default
  99. *> manner.
  100. *> \endverbatim
  101. *
  102. * Arguments:
  103. * ==========
  104. *
  105. *> \param[in] JOBZ
  106. *> \verbatim
  107. *> JOBZ is CHARACTER*1
  108. *> = 'N': Compute eigenvalues only;
  109. *> = 'V': Compute eigenvalues and eigenvectors.
  110. *> \endverbatim
  111. *>
  112. *> \param[in] RANGE
  113. *> \verbatim
  114. *> RANGE is CHARACTER*1
  115. *> = 'A': all eigenvalues will be found.
  116. *> = 'V': all eigenvalues in the half-open interval (VL,VU]
  117. *> will be found.
  118. *> = 'I': the IL-th through IU-th eigenvalues will be found.
  119. *> For RANGE = 'V' or 'I' and IU - IL < N - 1, SSTEBZ and
  120. *> CSTEIN are called
  121. *> \endverbatim
  122. *>
  123. *> \param[in] UPLO
  124. *> \verbatim
  125. *> UPLO is CHARACTER*1
  126. *> = 'U': Upper triangle of A is stored;
  127. *> = 'L': Lower triangle of A is stored.
  128. *> \endverbatim
  129. *>
  130. *> \param[in] N
  131. *> \verbatim
  132. *> N is INTEGER
  133. *> The order of the matrix A. N >= 0.
  134. *> \endverbatim
  135. *>
  136. *> \param[in,out] A
  137. *> \verbatim
  138. *> A is COMPLEX array, dimension (LDA, N)
  139. *> On entry, the Hermitian matrix A. If UPLO = 'U', the
  140. *> leading N-by-N upper triangular part of A contains the
  141. *> upper triangular part of the matrix A. If UPLO = 'L',
  142. *> the leading N-by-N lower triangular part of A contains
  143. *> the lower triangular part of the matrix A.
  144. *> On exit, the lower triangle (if UPLO='L') or the upper
  145. *> triangle (if UPLO='U') of A, including the diagonal, is
  146. *> destroyed.
  147. *> \endverbatim
  148. *>
  149. *> \param[in] LDA
  150. *> \verbatim
  151. *> LDA is INTEGER
  152. *> The leading dimension of the array A. LDA >= max(1,N).
  153. *> \endverbatim
  154. *>
  155. *> \param[in] VL
  156. *> \verbatim
  157. *> VL is REAL
  158. *> If RANGE='V', the lower bound of the interval to
  159. *> be searched for eigenvalues. VL < VU.
  160. *> Not referenced if RANGE = 'A' or 'I'.
  161. *> \endverbatim
  162. *>
  163. *> \param[in] VU
  164. *> \verbatim
  165. *> VU is REAL
  166. *> If RANGE='V', the upper bound of the interval to
  167. *> be searched for eigenvalues. VL < VU.
  168. *> Not referenced if RANGE = 'A' or 'I'.
  169. *> \endverbatim
  170. *>
  171. *> \param[in] IL
  172. *> \verbatim
  173. *> IL is INTEGER
  174. *> If RANGE='I', the index of the
  175. *> smallest eigenvalue to be returned.
  176. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0.
  177. *> Not referenced if RANGE = 'A' or 'V'.
  178. *> \endverbatim
  179. *>
  180. *> \param[in] IU
  181. *> \verbatim
  182. *> IU is INTEGER
  183. *> If RANGE='I', the index of the
  184. *> largest eigenvalue to be returned.
  185. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0.
  186. *> Not referenced if RANGE = 'A' or 'V'.
  187. *> \endverbatim
  188. *>
  189. *> \param[in] ABSTOL
  190. *> \verbatim
  191. *> ABSTOL is REAL
  192. *> The absolute error tolerance for the eigenvalues.
  193. *> An approximate eigenvalue is accepted as converged
  194. *> when it is determined to lie in an interval [a,b]
  195. *> of width less than or equal to
  196. *>
  197. *> ABSTOL + EPS * max( |a|,|b| ) ,
  198. *>
  199. *> where EPS is the machine precision. If ABSTOL is less than
  200. *> or equal to zero, then EPS*|T| will be used in its place,
  201. *> where |T| is the 1-norm of the tridiagonal matrix obtained
  202. *> by reducing A to tridiagonal form.
  203. *>
  204. *> See "Computing Small Singular Values of Bidiagonal Matrices
  205. *> with Guaranteed High Relative Accuracy," by Demmel and
  206. *> Kahan, LAPACK Working Note #3.
  207. *>
  208. *> If high relative accuracy is important, set ABSTOL to
  209. *> SLAMCH( 'Safe minimum' ). Doing so will guarantee that
  210. *> eigenvalues are computed to high relative accuracy when
  211. *> possible in future releases. The current code does not
  212. *> make any guarantees about high relative accuracy, but
  213. *> future releases will. See J. Barlow and J. Demmel,
  214. *> "Computing Accurate Eigensystems of Scaled Diagonally
  215. *> Dominant Matrices", LAPACK Working Note #7, for a discussion
  216. *> of which matrices define their eigenvalues to high relative
  217. *> accuracy.
  218. *> \endverbatim
  219. *>
  220. *> \param[out] M
  221. *> \verbatim
  222. *> M is INTEGER
  223. *> The total number of eigenvalues found. 0 <= M <= N.
  224. *> If RANGE = 'A', M = N, and if RANGE = 'I', M = IU-IL+1.
  225. *> \endverbatim
  226. *>
  227. *> \param[out] W
  228. *> \verbatim
  229. *> W is REAL array, dimension (N)
  230. *> The first M elements contain the selected eigenvalues in
  231. *> ascending order.
  232. *> \endverbatim
  233. *>
  234. *> \param[out] Z
  235. *> \verbatim
  236. *> Z is COMPLEX array, dimension (LDZ, max(1,M))
  237. *> If JOBZ = 'V', then if INFO = 0, the first M columns of Z
  238. *> contain the orthonormal eigenvectors of the matrix A
  239. *> corresponding to the selected eigenvalues, with the i-th
  240. *> column of Z holding the eigenvector associated with W(i).
  241. *> If JOBZ = 'N', then Z is not referenced.
  242. *> Note: the user must ensure that at least max(1,M) columns are
  243. *> supplied in the array Z; if RANGE = 'V', the exact value of M
  244. *> is not known in advance and an upper bound must be used.
  245. *> \endverbatim
  246. *>
  247. *> \param[in] LDZ
  248. *> \verbatim
  249. *> LDZ is INTEGER
  250. *> The leading dimension of the array Z. LDZ >= 1, and if
  251. *> JOBZ = 'V', LDZ >= max(1,N).
  252. *> \endverbatim
  253. *>
  254. *> \param[out] ISUPPZ
  255. *> \verbatim
  256. *> ISUPPZ is INTEGER array, dimension ( 2*max(1,M) )
  257. *> The support of the eigenvectors in Z, i.e., the indices
  258. *> indicating the nonzero elements in Z. The i-th eigenvector
  259. *> is nonzero only in elements ISUPPZ( 2*i-1 ) through
  260. *> ISUPPZ( 2*i ). This is an output of CSTEMR (tridiagonal
  261. *> matrix). The support of the eigenvectors of A is typically
  262. *> 1:N because of the unitary transformations applied by CUNMTR.
  263. *> Implemented only for RANGE = 'A' or 'I' and IU - IL = N - 1
  264. *> \endverbatim
  265. *>
  266. *> \param[out] WORK
  267. *> \verbatim
  268. *> WORK is COMPLEX array, dimension (MAX(1,LWORK))
  269. *> On exit, if INFO = 0, WORK(1) returns the optimal LWORK.
  270. *> \endverbatim
  271. *>
  272. *> \param[in] LWORK
  273. *> \verbatim
  274. *> LWORK is INTEGER
  275. *> The length of the array WORK. LWORK >= max(1,2*N).
  276. *> For optimal efficiency, LWORK >= (NB+1)*N,
  277. *> where NB is the max of the blocksize for CHETRD and for
  278. *> CUNMTR as returned by ILAENV.
  279. *>
  280. *> If LWORK = -1, then a workspace query is assumed; the routine
  281. *> only calculates the optimal sizes of the WORK, RWORK and
  282. *> IWORK arrays, returns these values as the first entries of
  283. *> the WORK, RWORK and IWORK arrays, and no error message
  284. *> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
  285. *> \endverbatim
  286. *>
  287. *> \param[out] RWORK
  288. *> \verbatim
  289. *> RWORK is REAL array, dimension (MAX(1,LRWORK))
  290. *> On exit, if INFO = 0, RWORK(1) returns the optimal
  291. *> (and minimal) LRWORK.
  292. *> \endverbatim
  293. *>
  294. *> \param[in] LRWORK
  295. *> \verbatim
  296. *> LRWORK is INTEGER
  297. *> The length of the array RWORK. LRWORK >= max(1,24*N).
  298. *>
  299. *> If LRWORK = -1, then a workspace query is assumed; the
  300. *> routine only calculates the optimal sizes of the WORK, RWORK
  301. *> and IWORK arrays, returns these values as the first entries
  302. *> of the WORK, RWORK and IWORK arrays, and no error message
  303. *> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
  304. *> \endverbatim
  305. *>
  306. *> \param[out] IWORK
  307. *> \verbatim
  308. *> IWORK is INTEGER array, dimension (MAX(1,LIWORK))
  309. *> On exit, if INFO = 0, IWORK(1) returns the optimal
  310. *> (and minimal) LIWORK.
  311. *> \endverbatim
  312. *>
  313. *> \param[in] LIWORK
  314. *> \verbatim
  315. *> LIWORK is INTEGER
  316. *> The dimension of the array IWORK. LIWORK >= max(1,10*N).
  317. *>
  318. *> If LIWORK = -1, then a workspace query is assumed; the
  319. *> routine only calculates the optimal sizes of the WORK, RWORK
  320. *> and IWORK arrays, returns these values as the first entries
  321. *> of the WORK, RWORK and IWORK arrays, and no error message
  322. *> related to LWORK or LRWORK or LIWORK is issued by XERBLA.
  323. *> \endverbatim
  324. *>
  325. *> \param[out] INFO
  326. *> \verbatim
  327. *> INFO is INTEGER
  328. *> = 0: successful exit
  329. *> < 0: if INFO = -i, the i-th argument had an illegal value
  330. *> > 0: Internal error
  331. *> \endverbatim
  332. *
  333. * Authors:
  334. * ========
  335. *
  336. *> \author Univ. of Tennessee
  337. *> \author Univ. of California Berkeley
  338. *> \author Univ. of Colorado Denver
  339. *> \author NAG Ltd.
  340. *
  341. *> \date June 2016
  342. *
  343. *> \ingroup complexHEeigen
  344. *
  345. *> \par Contributors:
  346. * ==================
  347. *>
  348. *> Inderjit Dhillon, IBM Almaden, USA \n
  349. *> Osni Marques, LBNL/NERSC, USA \n
  350. *> Ken Stanley, Computer Science Division, University of
  351. *> California at Berkeley, USA \n
  352. *> Jason Riedy, Computer Science Division, University of
  353. *> California at Berkeley, USA \n
  354. *>
  355. * =====================================================================
  356. SUBROUTINE CHEEVR( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU,
  357. $ ABSTOL, M, W, Z, LDZ, ISUPPZ, WORK, LWORK,
  358. $ RWORK, LRWORK, IWORK, LIWORK, INFO )
  359. *
  360. * -- LAPACK driver routine (version 3.7.0) --
  361. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  362. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  363. * June 2016
  364. *
  365. * .. Scalar Arguments ..
  366. CHARACTER JOBZ, RANGE, UPLO
  367. INTEGER IL, INFO, IU, LDA, LDZ, LIWORK, LRWORK, LWORK,
  368. $ M, N
  369. REAL ABSTOL, VL, VU
  370. * ..
  371. * .. Array Arguments ..
  372. INTEGER ISUPPZ( * ), IWORK( * )
  373. REAL RWORK( * ), W( * )
  374. COMPLEX A( LDA, * ), WORK( * ), Z( LDZ, * )
  375. * ..
  376. *
  377. * =====================================================================
  378. *
  379. * .. Parameters ..
  380. REAL ZERO, ONE, TWO
  381. PARAMETER ( ZERO = 0.0E+0, ONE = 1.0E+0, TWO = 2.0E+0 )
  382. * ..
  383. * .. Local Scalars ..
  384. LOGICAL ALLEIG, INDEIG, LOWER, LQUERY, TEST, VALEIG,
  385. $ WANTZ, TRYRAC
  386. CHARACTER ORDER
  387. INTEGER I, IEEEOK, IINFO, IMAX, INDIBL, INDIFL, INDISP,
  388. $ INDIWO, INDRD, INDRDD, INDRE, INDREE, INDRWK,
  389. $ INDTAU, INDWK, INDWKN, ISCALE, ITMP1, J, JJ,
  390. $ LIWMIN, LLWORK, LLRWORK, LLWRKN, LRWMIN,
  391. $ LWKOPT, LWMIN, NB, NSPLIT
  392. REAL ABSTLL, ANRM, BIGNUM, EPS, RMAX, RMIN, SAFMIN,
  393. $ SIGMA, SMLNUM, TMP1, VLL, VUU
  394. * ..
  395. * .. External Functions ..
  396. LOGICAL LSAME
  397. INTEGER ILAENV
  398. REAL CLANSY, SLAMCH
  399. EXTERNAL LSAME, ILAENV, CLANSY, SLAMCH
  400. * ..
  401. * .. External Subroutines ..
  402. EXTERNAL CHETRD, CSSCAL, CSTEMR, CSTEIN, CSWAP, CUNMTR,
  403. $ SCOPY, SSCAL, SSTEBZ, SSTERF, XERBLA
  404. * ..
  405. * .. Intrinsic Functions ..
  406. INTRINSIC MAX, MIN, REAL, SQRT
  407. * ..
  408. * .. Executable Statements ..
  409. *
  410. * Test the input parameters.
  411. *
  412. IEEEOK = ILAENV( 10, 'CHEEVR', 'N', 1, 2, 3, 4 )
  413. *
  414. LOWER = LSAME( UPLO, 'L' )
  415. WANTZ = LSAME( JOBZ, 'V' )
  416. ALLEIG = LSAME( RANGE, 'A' )
  417. VALEIG = LSAME( RANGE, 'V' )
  418. INDEIG = LSAME( RANGE, 'I' )
  419. *
  420. LQUERY = ( ( LWORK.EQ.-1 ) .OR. ( LRWORK.EQ.-1 ) .OR.
  421. $ ( LIWORK.EQ.-1 ) )
  422. *
  423. LRWMIN = MAX( 1, 24*N )
  424. LIWMIN = MAX( 1, 10*N )
  425. LWMIN = MAX( 1, 2*N )
  426. *
  427. INFO = 0
  428. IF( .NOT.( WANTZ .OR. LSAME( JOBZ, 'N' ) ) ) THEN
  429. INFO = -1
  430. ELSE IF( .NOT.( ALLEIG .OR. VALEIG .OR. INDEIG ) ) THEN
  431. INFO = -2
  432. ELSE IF( .NOT.( LOWER .OR. LSAME( UPLO, 'U' ) ) ) THEN
  433. INFO = -3
  434. ELSE IF( N.LT.0 ) THEN
  435. INFO = -4
  436. ELSE IF( LDA.LT.MAX( 1, N ) ) THEN
  437. INFO = -6
  438. ELSE
  439. IF( VALEIG ) THEN
  440. IF( N.GT.0 .AND. VU.LE.VL )
  441. $ INFO = -8
  442. ELSE IF( INDEIG ) THEN
  443. IF( IL.LT.1 .OR. IL.GT.MAX( 1, N ) ) THEN
  444. INFO = -9
  445. ELSE IF( IU.LT.MIN( N, IL ) .OR. IU.GT.N ) THEN
  446. INFO = -10
  447. END IF
  448. END IF
  449. END IF
  450. IF( INFO.EQ.0 ) THEN
  451. IF( LDZ.LT.1 .OR. ( WANTZ .AND. LDZ.LT.N ) ) THEN
  452. INFO = -15
  453. END IF
  454. END IF
  455. *
  456. IF( INFO.EQ.0 ) THEN
  457. NB = ILAENV( 1, 'CHETRD', UPLO, N, -1, -1, -1 )
  458. NB = MAX( NB, ILAENV( 1, 'CUNMTR', UPLO, N, -1, -1, -1 ) )
  459. LWKOPT = MAX( ( NB+1 )*N, LWMIN )
  460. WORK( 1 ) = LWKOPT
  461. RWORK( 1 ) = LRWMIN
  462. IWORK( 1 ) = LIWMIN
  463. *
  464. IF( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) THEN
  465. INFO = -18
  466. ELSE IF( LRWORK.LT.LRWMIN .AND. .NOT.LQUERY ) THEN
  467. INFO = -20
  468. ELSE IF( LIWORK.LT.LIWMIN .AND. .NOT.LQUERY ) THEN
  469. INFO = -22
  470. END IF
  471. END IF
  472. *
  473. IF( INFO.NE.0 ) THEN
  474. CALL XERBLA( 'CHEEVR', -INFO )
  475. RETURN
  476. ELSE IF( LQUERY ) THEN
  477. RETURN
  478. END IF
  479. *
  480. * Quick return if possible
  481. *
  482. M = 0
  483. IF( N.EQ.0 ) THEN
  484. WORK( 1 ) = 1
  485. RETURN
  486. END IF
  487. *
  488. IF( N.EQ.1 ) THEN
  489. WORK( 1 ) = 2
  490. IF( ALLEIG .OR. INDEIG ) THEN
  491. M = 1
  492. W( 1 ) = REAL( A( 1, 1 ) )
  493. ELSE
  494. IF( VL.LT.REAL( A( 1, 1 ) ) .AND. VU.GE.REAL( A( 1, 1 ) ) )
  495. $ THEN
  496. M = 1
  497. W( 1 ) = REAL( A( 1, 1 ) )
  498. END IF
  499. END IF
  500. IF( WANTZ ) THEN
  501. Z( 1, 1 ) = ONE
  502. ISUPPZ( 1 ) = 1
  503. ISUPPZ( 2 ) = 1
  504. END IF
  505. RETURN
  506. END IF
  507. *
  508. * Get machine constants.
  509. *
  510. SAFMIN = SLAMCH( 'Safe minimum' )
  511. EPS = SLAMCH( 'Precision' )
  512. SMLNUM = SAFMIN / EPS
  513. BIGNUM = ONE / SMLNUM
  514. RMIN = SQRT( SMLNUM )
  515. RMAX = MIN( SQRT( BIGNUM ), ONE / SQRT( SQRT( SAFMIN ) ) )
  516. *
  517. * Scale matrix to allowable range, if necessary.
  518. *
  519. ISCALE = 0
  520. ABSTLL = ABSTOL
  521. IF (VALEIG) THEN
  522. VLL = VL
  523. VUU = VU
  524. END IF
  525. ANRM = CLANSY( 'M', UPLO, N, A, LDA, RWORK )
  526. IF( ANRM.GT.ZERO .AND. ANRM.LT.RMIN ) THEN
  527. ISCALE = 1
  528. SIGMA = RMIN / ANRM
  529. ELSE IF( ANRM.GT.RMAX ) THEN
  530. ISCALE = 1
  531. SIGMA = RMAX / ANRM
  532. END IF
  533. IF( ISCALE.EQ.1 ) THEN
  534. IF( LOWER ) THEN
  535. DO 10 J = 1, N
  536. CALL CSSCAL( N-J+1, SIGMA, A( J, J ), 1 )
  537. 10 CONTINUE
  538. ELSE
  539. DO 20 J = 1, N
  540. CALL CSSCAL( J, SIGMA, A( 1, J ), 1 )
  541. 20 CONTINUE
  542. END IF
  543. IF( ABSTOL.GT.0 )
  544. $ ABSTLL = ABSTOL*SIGMA
  545. IF( VALEIG ) THEN
  546. VLL = VL*SIGMA
  547. VUU = VU*SIGMA
  548. END IF
  549. END IF
  550. * Initialize indices into workspaces. Note: The IWORK indices are
  551. * used only if SSTERF or CSTEMR fail.
  552. * WORK(INDTAU:INDTAU+N-1) stores the complex scalar factors of the
  553. * elementary reflectors used in CHETRD.
  554. INDTAU = 1
  555. * INDWK is the starting offset of the remaining complex workspace,
  556. * and LLWORK is the remaining complex workspace size.
  557. INDWK = INDTAU + N
  558. LLWORK = LWORK - INDWK + 1
  559. * RWORK(INDRD:INDRD+N-1) stores the real tridiagonal's diagonal
  560. * entries.
  561. INDRD = 1
  562. * RWORK(INDRE:INDRE+N-1) stores the off-diagonal entries of the
  563. * tridiagonal matrix from CHETRD.
  564. INDRE = INDRD + N
  565. * RWORK(INDRDD:INDRDD+N-1) is a copy of the diagonal entries over
  566. * -written by CSTEMR (the SSTERF path copies the diagonal to W).
  567. INDRDD = INDRE + N
  568. * RWORK(INDREE:INDREE+N-1) is a copy of the off-diagonal entries over
  569. * -written while computing the eigenvalues in SSTERF and CSTEMR.
  570. INDREE = INDRDD + N
  571. * INDRWK is the starting offset of the left-over real workspace, and
  572. * LLRWORK is the remaining workspace size.
  573. INDRWK = INDREE + N
  574. LLRWORK = LRWORK - INDRWK + 1
  575. * IWORK(INDIBL:INDIBL+M-1) corresponds to IBLOCK in SSTEBZ and
  576. * stores the block indices of each of the M<=N eigenvalues.
  577. INDIBL = 1
  578. * IWORK(INDISP:INDISP+NSPLIT-1) corresponds to ISPLIT in SSTEBZ and
  579. * stores the starting and finishing indices of each block.
  580. INDISP = INDIBL + N
  581. * IWORK(INDIFL:INDIFL+N-1) stores the indices of eigenvectors
  582. * that corresponding to eigenvectors that fail to converge in
  583. * SSTEIN. This information is discarded; if any fail, the driver
  584. * returns INFO > 0.
  585. INDIFL = INDISP + N
  586. * INDIWO is the offset of the remaining integer workspace.
  587. INDIWO = INDIFL + N
  588. *
  589. * Call CHETRD to reduce Hermitian matrix to tridiagonal form.
  590. *
  591. CALL CHETRD( UPLO, N, A, LDA, RWORK( INDRD ), RWORK( INDRE ),
  592. $ WORK( INDTAU ), WORK( INDWK ), LLWORK, IINFO )
  593. *
  594. * If all eigenvalues are desired
  595. * then call SSTERF or CSTEMR and CUNMTR.
  596. *
  597. TEST = .FALSE.
  598. IF( INDEIG ) THEN
  599. IF( IL.EQ.1 .AND. IU.EQ.N ) THEN
  600. TEST = .TRUE.
  601. END IF
  602. END IF
  603. IF( ( ALLEIG.OR.TEST ) .AND. ( IEEEOK.EQ.1 ) ) THEN
  604. IF( .NOT.WANTZ ) THEN
  605. CALL SCOPY( N, RWORK( INDRD ), 1, W, 1 )
  606. CALL SCOPY( N-1, RWORK( INDRE ), 1, RWORK( INDREE ), 1 )
  607. CALL SSTERF( N, W, RWORK( INDREE ), INFO )
  608. ELSE
  609. CALL SCOPY( N-1, RWORK( INDRE ), 1, RWORK( INDREE ), 1 )
  610. CALL SCOPY( N, RWORK( INDRD ), 1, RWORK( INDRDD ), 1 )
  611. *
  612. IF (ABSTOL .LE. TWO*N*EPS) THEN
  613. TRYRAC = .TRUE.
  614. ELSE
  615. TRYRAC = .FALSE.
  616. END IF
  617. CALL CSTEMR( JOBZ, 'A', N, RWORK( INDRDD ),
  618. $ RWORK( INDREE ), VL, VU, IL, IU, M, W,
  619. $ Z, LDZ, N, ISUPPZ, TRYRAC,
  620. $ RWORK( INDRWK ), LLRWORK,
  621. $ IWORK, LIWORK, INFO )
  622. *
  623. * Apply unitary matrix used in reduction to tridiagonal
  624. * form to eigenvectors returned by CSTEMR.
  625. *
  626. IF( WANTZ .AND. INFO.EQ.0 ) THEN
  627. INDWKN = INDWK
  628. LLWRKN = LWORK - INDWKN + 1
  629. CALL CUNMTR( 'L', UPLO, 'N', N, M, A, LDA,
  630. $ WORK( INDTAU ), Z, LDZ, WORK( INDWKN ),
  631. $ LLWRKN, IINFO )
  632. END IF
  633. END IF
  634. *
  635. *
  636. IF( INFO.EQ.0 ) THEN
  637. M = N
  638. GO TO 30
  639. END IF
  640. INFO = 0
  641. END IF
  642. *
  643. * Otherwise, call SSTEBZ and, if eigenvectors are desired, CSTEIN.
  644. * Also call SSTEBZ and CSTEIN if CSTEMR fails.
  645. *
  646. IF( WANTZ ) THEN
  647. ORDER = 'B'
  648. ELSE
  649. ORDER = 'E'
  650. END IF
  651. CALL SSTEBZ( RANGE, ORDER, N, VLL, VUU, IL, IU, ABSTLL,
  652. $ RWORK( INDRD ), RWORK( INDRE ), M, NSPLIT, W,
  653. $ IWORK( INDIBL ), IWORK( INDISP ), RWORK( INDRWK ),
  654. $ IWORK( INDIWO ), INFO )
  655. *
  656. IF( WANTZ ) THEN
  657. CALL CSTEIN( N, RWORK( INDRD ), RWORK( INDRE ), M, W,
  658. $ IWORK( INDIBL ), IWORK( INDISP ), Z, LDZ,
  659. $ RWORK( INDRWK ), IWORK( INDIWO ), IWORK( INDIFL ),
  660. $ INFO )
  661. *
  662. * Apply unitary matrix used in reduction to tridiagonal
  663. * form to eigenvectors returned by CSTEIN.
  664. *
  665. INDWKN = INDWK
  666. LLWRKN = LWORK - INDWKN + 1
  667. CALL CUNMTR( 'L', UPLO, 'N', N, M, A, LDA, WORK( INDTAU ), Z,
  668. $ LDZ, WORK( INDWKN ), LLWRKN, IINFO )
  669. END IF
  670. *
  671. * If matrix was scaled, then rescale eigenvalues appropriately.
  672. *
  673. 30 CONTINUE
  674. IF( ISCALE.EQ.1 ) THEN
  675. IF( INFO.EQ.0 ) THEN
  676. IMAX = M
  677. ELSE
  678. IMAX = INFO - 1
  679. END IF
  680. CALL SSCAL( IMAX, ONE / SIGMA, W, 1 )
  681. END IF
  682. *
  683. * If eigenvalues are not in order, then sort them, along with
  684. * eigenvectors.
  685. *
  686. IF( WANTZ ) THEN
  687. DO 50 J = 1, M - 1
  688. I = 0
  689. TMP1 = W( J )
  690. DO 40 JJ = J + 1, M
  691. IF( W( JJ ).LT.TMP1 ) THEN
  692. I = JJ
  693. TMP1 = W( JJ )
  694. END IF
  695. 40 CONTINUE
  696. *
  697. IF( I.NE.0 ) THEN
  698. ITMP1 = IWORK( INDIBL+I-1 )
  699. W( I ) = W( J )
  700. IWORK( INDIBL+I-1 ) = IWORK( INDIBL+J-1 )
  701. W( J ) = TMP1
  702. IWORK( INDIBL+J-1 ) = ITMP1
  703. CALL CSWAP( N, Z( 1, I ), 1, Z( 1, J ), 1 )
  704. END IF
  705. 50 CONTINUE
  706. END IF
  707. *
  708. * Set WORK(1) to optimal workspace size.
  709. *
  710. WORK( 1 ) = LWKOPT
  711. RWORK( 1 ) = LRWMIN
  712. IWORK( 1 ) = LIWMIN
  713. *
  714. RETURN
  715. *
  716. * End of CHEEVR
  717. *
  718. END