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.

cchksy_aa.f 18 kB

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