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.

cchkhe_aa.f 17 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. *> \brief \b CCHKHE_AA
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. * Definition:
  9. * ===========
  10. *
  11. * SUBROUTINE CCHKHE_AA( DOTYPE, NN, NVAL, NNB, NBVAL, NNS, NSVAL,
  12. * THRESH, TSTERR, NMAX, A, AFAC, AINV, B, X,
  13. * XACT, WORK, RWORK, IWORK, NOUT )
  14. *
  15. * .. Scalar Arguments ..
  16. * LOGICAL TSTERR
  17. * INTEGER NN, NNB, NNS, NOUT
  18. * REAL THRESH
  19. * ..
  20. * .. Array Arguments ..
  21. * LOGICAL DOTYPE( * )
  22. * INTEGER IWORK( * ), NBVAL( * ), NSVAL( * ), NVAL( * )
  23. * REAL RWORK( * )
  24. * COMPLEX A( * ), AFAC( * ), AINV( * ), B( * ),
  25. * $ WORK( * ), X( * ), XACT( * )
  26. * ..
  27. *
  28. *
  29. *> \par Purpose:
  30. * =============
  31. *>
  32. *> \verbatim
  33. *>
  34. *> CCHKHE_AA tests CHETRF_AA, -TRS_AA.
  35. *> \endverbatim
  36. *
  37. * Arguments:
  38. * ==========
  39. *
  40. *> \param[in] DOTYPE
  41. *> \verbatim
  42. *> DOTYPE is LOGICAL array, dimension (NTYPES)
  43. *> The matrix types to be used for testing. Matrices of type j
  44. *> (for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) =
  45. *> .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used.
  46. *> \endverbatim
  47. *>
  48. *> \param[in] NN
  49. *> \verbatim
  50. *> NN is INTEGER
  51. *> The number of values of N contained in the vector NVAL.
  52. *> \endverbatim
  53. *>
  54. *> \param[in] NVAL
  55. *> \verbatim
  56. *> NVAL is INTEGER array, dimension (NN)
  57. *> The values of the matrix dimension N.
  58. *> \endverbatim
  59. *>
  60. *> \param[in] NNB
  61. *> \verbatim
  62. *> NNB is INTEGER
  63. *> The number of values of NB contained in the vector NBVAL.
  64. *> \endverbatim
  65. *>
  66. *> \param[in] NBVAL
  67. *> \verbatim
  68. *> NBVAL is INTEGER array, dimension (NNB)
  69. *> The values of the blocksize NB.
  70. *> \endverbatim
  71. *>
  72. *> \param[in] NNS
  73. *> \verbatim
  74. *> NNS is INTEGER
  75. *> The number of values of NRHS contained in the vector NSVAL.
  76. *> \endverbatim
  77. *>
  78. *> \param[in] NSVAL
  79. *> \verbatim
  80. *> NSVAL is INTEGER array, dimension (NNS)
  81. *> The values of the number of right hand sides NRHS.
  82. *> \endverbatim
  83. *>
  84. *> \param[in] THRESH
  85. *> \verbatim
  86. *> THRESH is REAL
  87. *> The threshold value for the test ratios. A result is
  88. *> included in the output file if RESULT >= THRESH. To have
  89. *> every test ratio printed, use THRESH = 0.
  90. *> \endverbatim
  91. *>
  92. *> \param[in] TSTERR
  93. *> \verbatim
  94. *> TSTERR is LOGICAL
  95. *> Flag that indicates whether error exits are to be tested.
  96. *> \endverbatim
  97. *>
  98. *> \param[in] NMAX
  99. *> \verbatim
  100. *> NMAX is INTEGER
  101. *> The maximum value permitted for N, used in dimensioning the
  102. *> work arrays.
  103. *> \endverbatim
  104. *>
  105. *> \param[out] A
  106. *> \verbatim
  107. *> A is COMPLEX array, dimension (NMAX*NMAX)
  108. *> \endverbatim
  109. *>
  110. *> \param[out] AFAC
  111. *> \verbatim
  112. *> AFAC is COMPLEX array, dimension (NMAX*NMAX)
  113. *> \endverbatim
  114. *>
  115. *> \param[out] AINV
  116. *> \verbatim
  117. *> AINV is COMPLEX array, dimension (NMAX*NMAX)
  118. *> \endverbatim
  119. *>
  120. *> \param[out] B
  121. *> \verbatim
  122. *> B is COMPLEX array, dimension (NMAX*NSMAX)
  123. *> where NSMAX is the largest entry in NSVAL.
  124. *> \endverbatim
  125. *>
  126. *> \param[out] X
  127. *> \verbatim
  128. *> X is COMPLEX array, dimension (NMAX*NSMAX)
  129. *> \endverbatim
  130. *>
  131. *> \param[out] XACT
  132. *> \verbatim
  133. *> XACT is COMPLEX array, dimension (NMAX*NSMAX)
  134. *> \endverbatim
  135. *>
  136. *> \param[out] WORK
  137. *> \verbatim
  138. *> WORK is COMPLEX array, dimension (NMAX*max(3,NSMAX))
  139. *> \endverbatim
  140. *>
  141. *> \param[out] RWORK
  142. *> \verbatim
  143. *> RWORK is REAL array, dimension (max(NMAX,2*NSMAX))
  144. *> \endverbatim
  145. *>
  146. *> \param[out] IWORK
  147. *> \verbatim
  148. *> IWORK is INTEGER array, dimension (NMAX)
  149. *> \endverbatim
  150. *>
  151. *> \param[in] NOUT
  152. *> \verbatim
  153. *> NOUT is INTEGER
  154. *> The unit number for output.
  155. *> \endverbatim
  156. *
  157. * Authors:
  158. * ========
  159. *
  160. *> \author Univ. of Tennessee
  161. *> \author Univ. of California Berkeley
  162. *> \author Univ. of Colorado Denver
  163. *> \author NAG Ltd.
  164. *
  165. *> \ingroup complex_lin
  166. *
  167. * =====================================================================
  168. SUBROUTINE CCHKHE_AA( DOTYPE, NN, NVAL, NNB, NBVAL, NNS, NSVAL,
  169. $ THRESH, TSTERR, NMAX, A, AFAC, AINV, B,
  170. $ X, XACT, WORK, RWORK, IWORK, NOUT )
  171. *
  172. * -- LAPACK test routine --
  173. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  174. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  175. *
  176. IMPLICIT NONE
  177. *
  178. * .. Scalar Arguments ..
  179. LOGICAL TSTERR
  180. INTEGER NMAX, NN, NNB, NNS, NOUT
  181. REAL THRESH
  182. * ..
  183. * .. Array Arguments ..
  184. LOGICAL DOTYPE( * )
  185. INTEGER IWORK( * ), NBVAL( * ), NSVAL( * ), NVAL( * )
  186. REAL RWORK( * )
  187. COMPLEX A( * ), AFAC( * ), AINV( * ), B( * ),
  188. $ WORK( * ), X( * ), XACT( * )
  189. * ..
  190. *
  191. * =====================================================================
  192. *
  193. * .. Parameters ..
  194. REAL ZERO
  195. PARAMETER ( ZERO = 0.0E+0 )
  196. COMPLEX CZERO
  197. PARAMETER ( CZERO = ( 0.0E+0, 0.0E+0 ) )
  198. INTEGER NTYPES
  199. PARAMETER ( NTYPES = 10 )
  200. INTEGER NTESTS
  201. PARAMETER ( NTESTS = 9 )
  202. * ..
  203. * .. Local Scalars ..
  204. LOGICAL ZEROT
  205. CHARACTER DIST, TYPE, UPLO, XTYPE
  206. CHARACTER*3 PATH, MATPATH
  207. INTEGER I, I1, I2, IMAT, IN, INB, INFO, IOFF, IRHS,
  208. $ IUPLO, IZERO, J, K, KL, KU, LDA, LWORK, MODE,
  209. $ N, NB, NERRS, NFAIL, NIMAT, NRHS, NRUN, NT
  210. REAL ANORM, CNDNUM
  211. * ..
  212. * .. Local Arrays ..
  213. CHARACTER UPLOS( 2 )
  214. INTEGER ISEED( 4 ), ISEEDY( 4 )
  215. REAL RESULT( NTESTS )
  216. * ..
  217. * .. External Subroutines ..
  218. EXTERNAL ALAERH, ALAHD, ALASUM, XLAENV, CERRHE, CHET01_AA,
  219. $ CHETRF_AA, CHETRS_AA, CLACPY, CLAIPD, CLARHS,
  220. $ CLATB4, CLATMS, CPOT02
  221. * ..
  222. * .. Intrinsic Functions ..
  223. INTRINSIC MAX, MIN
  224. * ..
  225. * .. Scalars in Common ..
  226. LOGICAL LERR, OK
  227. CHARACTER*32 SRNAMT
  228. INTEGER INFOT, NUNIT
  229. * ..
  230. * .. Common blocks ..
  231. COMMON / INFOC / INFOT, NUNIT, OK, LERR
  232. COMMON / SRNAMC / SRNAMT
  233. * ..
  234. * .. Data statements ..
  235. DATA ISEEDY / 1988, 1989, 1990, 1991 /
  236. DATA UPLOS / 'U', 'L' /
  237. * ..
  238. * .. Executable Statements ..
  239. *
  240. * Initialize constants and the random number seed.
  241. *
  242. *
  243. * Test path
  244. *
  245. PATH( 1: 1 ) = 'Complex precision'
  246. PATH( 2: 3 ) = 'HA'
  247. *
  248. * Path to generate matrices
  249. *
  250. MATPATH( 1: 1 ) = 'Complex precision'
  251. MATPATH( 2: 3 ) = 'HE'
  252. NRUN = 0
  253. NFAIL = 0
  254. NERRS = 0
  255. DO 10 I = 1, 4
  256. ISEED( I ) = ISEEDY( I )
  257. 10 CONTINUE
  258. *
  259. * Test the error exits
  260. *
  261. IF( TSTERR )
  262. $ CALL CERRHE( PATH, NOUT )
  263. INFOT = 0
  264. *
  265. * Set the minimum block size for which the block routine should
  266. * be used, which will be later returned by ILAENV
  267. *
  268. CALL XLAENV( 2, 2 )
  269. *
  270. * Do for each value of N in NVAL
  271. *
  272. DO 180 IN = 1, NN
  273. N = NVAL( IN )
  274. IF( N .GT. NMAX ) THEN
  275. NFAIL = NFAIL + 1
  276. WRITE(NOUT, 9995) 'M ', N, NMAX
  277. GO TO 180
  278. END IF
  279. LDA = MAX( N, 1 )
  280. XTYPE = 'N'
  281. NIMAT = NTYPES
  282. IF( N.LE.0 )
  283. $ NIMAT = 1
  284. *
  285. IZERO = 0
  286. DO 170 IMAT = 1, NIMAT
  287. *
  288. * Do the tests only if DOTYPE( IMAT ) is true.
  289. *
  290. IF( .NOT.DOTYPE( IMAT ) )
  291. $ GO TO 170
  292. *
  293. * Skip types 3, 4, 5, or 6 if the matrix size is too small.
  294. *
  295. ZEROT = IMAT.GE.3 .AND. IMAT.LE.6
  296. IF( ZEROT .AND. N.LT.IMAT-2 )
  297. $ GO TO 170
  298. *
  299. * Do first for UPLO = 'U', then for UPLO = 'L'
  300. *
  301. DO 160 IUPLO = 1, 2
  302. UPLO = UPLOS( IUPLO )
  303. *
  304. * Set up parameters with CLATB4 for the matrix generator
  305. * based on the type of matrix to be generated.
  306. *
  307. CALL CLATB4( MATPATH, IMAT, N, N, TYPE, KL, KU,
  308. $ ANORM, MODE, CNDNUM, DIST )
  309. *
  310. * Generate a matrix with CLATMS.
  311. *
  312. SRNAMT = 'CLATMS'
  313. CALL CLATMS( N, N, DIST, ISEED, TYPE, RWORK, MODE,
  314. $ CNDNUM, ANORM, KL, KU, UPLO, A, LDA, WORK,
  315. $ INFO )
  316. *
  317. * Check error code from CLATMS and handle error.
  318. *
  319. IF( INFO.NE.0 ) THEN
  320. CALL ALAERH( PATH, 'CLATMS', INFO, 0, UPLO, N, N, -1,
  321. $ -1, -1, IMAT, NFAIL, NERRS, NOUT )
  322. *
  323. * Skip all tests for this generated matrix
  324. *
  325. GO TO 160
  326. END IF
  327. *
  328. * For types 3-6, zero one or more rows and columns of
  329. * the matrix to test that INFO is returned correctly.
  330. *
  331. IF( ZEROT ) THEN
  332. IF( IMAT.EQ.3 ) THEN
  333. IZERO = 1
  334. ELSE IF( IMAT.EQ.4 ) THEN
  335. IZERO = N
  336. ELSE
  337. IZERO = N / 2 + 1
  338. END IF
  339. *
  340. IF( IMAT.LT.6 ) THEN
  341. *
  342. * Set row and column IZERO to zero.
  343. *
  344. IF( IUPLO.EQ.1 ) THEN
  345. IOFF = ( IZERO-1 )*LDA
  346. DO 20 I = 1, IZERO - 1
  347. A( IOFF+I ) = CZERO
  348. 20 CONTINUE
  349. IOFF = IOFF + IZERO
  350. DO 30 I = IZERO, N
  351. A( IOFF ) = CZERO
  352. IOFF = IOFF + LDA
  353. 30 CONTINUE
  354. ELSE
  355. IOFF = IZERO
  356. DO 40 I = 1, IZERO - 1
  357. A( IOFF ) = CZERO
  358. IOFF = IOFF + LDA
  359. 40 CONTINUE
  360. IOFF = IOFF - IZERO
  361. DO 50 I = IZERO, N
  362. A( IOFF+I ) = CZERO
  363. 50 CONTINUE
  364. END IF
  365. ELSE
  366. IF( IUPLO.EQ.1 ) THEN
  367. *
  368. * Set the first IZERO rows and columns to zero.
  369. *
  370. IOFF = 0
  371. DO 70 J = 1, N
  372. I2 = MIN( J, IZERO )
  373. DO 60 I = 1, I2
  374. A( IOFF+I ) = CZERO
  375. 60 CONTINUE
  376. IOFF = IOFF + LDA
  377. 70 CONTINUE
  378. IZERO = 1
  379. ELSE
  380. *
  381. * Set the last IZERO rows and columns to zero.
  382. *
  383. IOFF = 0
  384. DO 90 J = 1, N
  385. I1 = MAX( J, IZERO )
  386. DO 80 I = I1, N
  387. A( IOFF+I ) = CZERO
  388. 80 CONTINUE
  389. IOFF = IOFF + LDA
  390. 90 CONTINUE
  391. END IF
  392. END IF
  393. ELSE
  394. IZERO = 0
  395. END IF
  396. *
  397. * End generate test matrix A.
  398. *
  399. *
  400. * Set the imaginary part of the diagonals.
  401. *
  402. CALL CLAIPD( N, A, LDA+1, 0 )
  403. *
  404. * Do for each value of NB in NBVAL
  405. *
  406. DO 150 INB = 1, NNB
  407. *
  408. * Set the optimal blocksize, which will be later
  409. * returned by ILAENV.
  410. *
  411. NB = NBVAL( INB )
  412. CALL XLAENV( 1, NB )
  413. *
  414. * Copy the test matrix A into matrix AFAC which
  415. * will be factorized in place. This is needed to
  416. * preserve the test matrix A for subsequent tests.
  417. *
  418. CALL CLACPY( UPLO, N, N, A, LDA, AFAC, LDA )
  419. *
  420. * Compute the L*D*L**T or U*D*U**T factorization of the
  421. * matrix. IWORK stores details of the interchanges and
  422. * the block structure of D. AINV is a work array for
  423. * block factorization, LWORK is the length of AINV.
  424. *
  425. LWORK = MAX( 1, ( NB+1 )*LDA )
  426. SRNAMT = 'CHETRF_AA'
  427. CALL CHETRF_AA( UPLO, N, AFAC, LDA, IWORK, AINV,
  428. $ LWORK, INFO )
  429. *
  430. * Adjust the expected value of INFO to account for
  431. * pivoting.
  432. *
  433. c IF( IZERO.GT.0 ) THEN
  434. c J = 1
  435. c K = IZERO
  436. c 100 CONTINUE
  437. c IF( J.EQ.K ) THEN
  438. c K = IWORK( J )
  439. c ELSE IF( IWORK( J ).EQ.K ) THEN
  440. c K = J
  441. c END IF
  442. c IF( J.LT.K ) THEN
  443. c J = J + 1
  444. c GO TO 100
  445. c END IF
  446. c ELSE
  447. K = 0
  448. c END IF
  449. *
  450. * Check error code from CHETRF and handle error.
  451. *
  452. IF( INFO.NE.K ) THEN
  453. CALL ALAERH( PATH, 'CHETRF_AA', INFO, K, UPLO,
  454. $ N, N, -1, -1, NB, IMAT, NFAIL, NERRS,
  455. $ NOUT )
  456. END IF
  457. *
  458. *+ TEST 1
  459. * Reconstruct matrix from factors and compute residual.
  460. *
  461. CALL CHET01_AA( UPLO, N, A, LDA, AFAC, LDA, IWORK,
  462. $ AINV, LDA, RWORK, RESULT( 1 ) )
  463. NT = 1
  464. *
  465. *
  466. * Print information about the tests that did not pass
  467. * the threshold.
  468. *
  469. DO 110 K = 1, NT
  470. IF( RESULT( K ).GE.THRESH ) THEN
  471. IF( NFAIL.EQ.0 .AND. NERRS.EQ.0 )
  472. $ CALL ALAHD( NOUT, PATH )
  473. WRITE( NOUT, FMT = 9999 )UPLO, N, NB, IMAT, K,
  474. $ RESULT( K )
  475. NFAIL = NFAIL + 1
  476. END IF
  477. 110 CONTINUE
  478. NRUN = NRUN + NT
  479. *
  480. * Skip solver test if INFO is not 0.
  481. *
  482. IF( INFO.NE.0 ) THEN
  483. GO TO 140
  484. END IF
  485. *
  486. * Do for each value of NRHS in NSVAL.
  487. *
  488. DO 130 IRHS = 1, NNS
  489. NRHS = NSVAL( IRHS )
  490. *
  491. *+ TEST 2 (Using TRS)
  492. * Solve and compute residual for A * X = B.
  493. *
  494. * Choose a set of NRHS random solution vectors
  495. * stored in XACT and set up the right hand side B
  496. *
  497. SRNAMT = 'CLARHS'
  498. CALL CLARHS( MATPATH, XTYPE, UPLO, ' ', N, N,
  499. $ KL, KU, NRHS, A, LDA, XACT, LDA,
  500. $ B, LDA, ISEED, INFO )
  501. CALL CLACPY( 'Full', N, NRHS, B, LDA, X, LDA )
  502. *
  503. SRNAMT = 'CHETRS_AA'
  504. LWORK = MAX( 1, 3*N-2 )
  505. CALL CHETRS_AA( UPLO, N, NRHS, AFAC, LDA, IWORK,
  506. $ X, LDA, WORK, LWORK, INFO )
  507. *
  508. * Check error code from CHETRS and handle error.
  509. *
  510. IF( INFO.NE.0 ) THEN
  511. IF( IZERO.EQ.0 ) THEN
  512. CALL ALAERH( PATH, 'CHETRS_AA', INFO, 0,
  513. $ UPLO, N, N, -1, -1, NRHS, IMAT,
  514. $ NFAIL, NERRS, NOUT )
  515. END IF
  516. ELSE
  517. CALL CLACPY( 'Full', N, NRHS, B, LDA, WORK, LDA
  518. $ )
  519. *
  520. * Compute the residual for the solution
  521. *
  522. CALL CPOT02( UPLO, N, NRHS, A, LDA, X, LDA,
  523. $ WORK, LDA, RWORK, RESULT( 2 ) )
  524. *
  525. * Print information about the tests that did not pass
  526. * the threshold.
  527. *
  528. DO 120 K = 2, 2
  529. IF( RESULT( K ).GE.THRESH ) THEN
  530. IF( NFAIL.EQ.0 .AND. NERRS.EQ.0 )
  531. $ CALL ALAHD( NOUT, PATH )
  532. WRITE( NOUT, FMT = 9998 )UPLO, N, NRHS,
  533. $ IMAT, K, RESULT( K )
  534. NFAIL = NFAIL + 1
  535. END IF
  536. 120 CONTINUE
  537. END IF
  538. NRUN = NRUN + 1
  539. *
  540. * End do for each value of NRHS in NSVAL.
  541. *
  542. 130 CONTINUE
  543. 140 CONTINUE
  544. 150 CONTINUE
  545. 160 CONTINUE
  546. 170 CONTINUE
  547. 180 CONTINUE
  548. *
  549. * Print a summary of the results.
  550. *
  551. CALL ALASUM( PATH, NOUT, NFAIL, NRUN, NERRS )
  552. *
  553. 9999 FORMAT( ' UPLO = ''', A1, ''', N =', I5, ', NB =', I4, ', type ',
  554. $ I2, ', test ', I2, ', ratio =', G12.5 )
  555. 9998 FORMAT( ' UPLO = ''', A1, ''', N =', I5, ', NRHS=', I3, ', type ',
  556. $ I2, ', test(', I2, ') =', G12.5 )
  557. 9995 FORMAT( ' Invalid input value: ', A4, '=', I6, '; must be <=',
  558. $ I6 )
  559. RETURN
  560. *
  561. * End of CCHKHE_AA
  562. *
  563. END