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.

ddrvsy_rook.f 16 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. *> \brief \b DDRVSY_ROOK
  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 DDRVSY_ROOK( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR,
  12. * $ NMAX, A, AFAC, AINV, B, X, XACT, WORK,
  13. * $ RWORK, IWORK, NOUT )
  14. *
  15. * .. Scalar Arguments ..
  16. * LOGICAL TSTERR
  17. * INTEGER NMAX, NN, NOUT, NRHS
  18. * DOUBLE PRECISION THRESH
  19. * ..
  20. * .. Array Arguments ..
  21. * LOGICAL DOTYPE( * )
  22. * INTEGER IWORK( * ), NVAL( * )
  23. * DOUBLE PRECISION A( * ), AFAC( * ), AINV( * ), B( * ),
  24. * $ RWORK( * ), WORK( * ), X( * ), XACT( * )
  25. * ..
  26. *
  27. *
  28. *> \par Purpose:
  29. * =============
  30. *>
  31. *> \verbatim
  32. *>
  33. *> DDRVSY_ROOK tests the driver routines DSYSV_ROOK.
  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] NRHS
  60. *> \verbatim
  61. *> NRHS is INTEGER
  62. *> The number of right hand side vectors to be generated for
  63. *> each linear system.
  64. *> \endverbatim
  65. *>
  66. *> \param[in] THRESH
  67. *> \verbatim
  68. *> THRESH is DOUBLE PRECISION
  69. *> The threshold value for the test ratios. A result is
  70. *> included in the output file if RESULT >= THRESH. To have
  71. *> every test ratio printed, use THRESH = 0.
  72. *> \endverbatim
  73. *>
  74. *> \param[in] TSTERR
  75. *> \verbatim
  76. *> TSTERR is LOGICAL
  77. *> Flag that indicates whether error exits are to be tested.
  78. *> \endverbatim
  79. *>
  80. *> \param[in] NMAX
  81. *> \verbatim
  82. *> NMAX is INTEGER
  83. *> The maximum value permitted for N, used in dimensioning the
  84. *> work arrays.
  85. *> \endverbatim
  86. *>
  87. *> \param[out] A
  88. *> \verbatim
  89. *> A is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  90. *> \endverbatim
  91. *>
  92. *> \param[out] AFAC
  93. *> \verbatim
  94. *> AFAC is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  95. *> \endverbatim
  96. *>
  97. *> \param[out] AINV
  98. *> \verbatim
  99. *> AINV is DOUBLE PRECISION array, dimension (NMAX*NMAX)
  100. *> \endverbatim
  101. *>
  102. *> \param[out] B
  103. *> \verbatim
  104. *> B is DOUBLE PRECISION array, dimension (NMAX*NRHS)
  105. *> \endverbatim
  106. *>
  107. *> \param[out] X
  108. *> \verbatim
  109. *> X is DOUBLE PRECISION array, dimension (NMAX*NRHS)
  110. *> \endverbatim
  111. *>
  112. *> \param[out] XACT
  113. *> \verbatim
  114. *> XACT is DOUBLE PRECISION array, dimension (NMAX*NRHS)
  115. *> \endverbatim
  116. *>
  117. *> \param[out] WORK
  118. *> \verbatim
  119. *> WORK is DOUBLE PRECISION array, dimension (NMAX*max(2,NRHS))
  120. *> \endverbatim
  121. *>
  122. *> \param[out] RWORK
  123. *> \verbatim
  124. *> RWORK is DOUBLE PRECISION array, dimension (NMAX+2*NRHS)
  125. *> \endverbatim
  126. *>
  127. *> \param[out] IWORK
  128. *> \verbatim
  129. *> IWORK is INTEGER array, dimension (2*NMAX)
  130. *> \endverbatim
  131. *>
  132. *> \param[in] NOUT
  133. *> \verbatim
  134. *> NOUT is INTEGER
  135. *> The unit number for output.
  136. *> \endverbatim
  137. *
  138. * Authors:
  139. * ========
  140. *
  141. *> \author Univ. of Tennessee
  142. *> \author Univ. of California Berkeley
  143. *> \author Univ. of Colorado Denver
  144. *> \author NAG Ltd.
  145. *
  146. *> \date November 2013
  147. *
  148. *> \ingroup double_lin
  149. *
  150. * =====================================================================
  151. SUBROUTINE DDRVSY_ROOK( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR,
  152. $ NMAX, A, AFAC, AINV, B, X, XACT, WORK,
  153. $ RWORK, IWORK, NOUT )
  154. *
  155. * -- LAPACK test routine (version 3.5.0) --
  156. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  157. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  158. * November 2013
  159. *
  160. * .. Scalar Arguments ..
  161. LOGICAL TSTERR
  162. INTEGER NMAX, NN, NOUT, NRHS
  163. DOUBLE PRECISION THRESH
  164. * ..
  165. * .. Array Arguments ..
  166. LOGICAL DOTYPE( * )
  167. INTEGER IWORK( * ), NVAL( * )
  168. DOUBLE PRECISION A( * ), AFAC( * ), AINV( * ), B( * ),
  169. $ RWORK( * ), WORK( * ), X( * ), XACT( * )
  170. * ..
  171. *
  172. * =====================================================================
  173. *
  174. * .. Parameters ..
  175. DOUBLE PRECISION ONE, ZERO
  176. PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 )
  177. INTEGER NTYPES, NTESTS
  178. PARAMETER ( NTYPES = 10, NTESTS = 3 )
  179. INTEGER NFACT
  180. PARAMETER ( NFACT = 2 )
  181. * ..
  182. * .. Local Scalars ..
  183. LOGICAL ZEROT
  184. CHARACTER DIST, FACT, TYPE, UPLO, XTYPE
  185. CHARACTER*3 PATH, MATPATH
  186. INTEGER I, I1, I2, IFACT, IMAT, IN, INFO, IOFF, IUPLO,
  187. $ IZERO, J, K, KL, KU, LDA, LWORK, MODE, N,
  188. $ NB, NBMIN, NERRS, NFAIL, NIMAT, NRUN, NT
  189. DOUBLE PRECISION AINVNM, ANORM, CNDNUM, RCONDC
  190. * ..
  191. * .. Local Arrays ..
  192. CHARACTER FACTS( NFACT ), UPLOS( 2 )
  193. INTEGER ISEED( 4 ), ISEEDY( 4 )
  194. DOUBLE PRECISION RESULT( NTESTS )
  195. * ..
  196. * .. External Functions ..
  197. DOUBLE PRECISION DLANSY
  198. EXTERNAL DLANSY
  199. * ..
  200. * .. External Subroutines ..
  201. EXTERNAL ALADHD, ALAERH, ALASVM, DERRVX, DGET04, DLACPY,
  202. $ DLARHS, DLASET, DLATB4, DLATMS, DPOT02, DPOT05,
  203. $ DSYSV_ROOK, DSYT01_ROOK, DSYTRF_ROOK,
  204. $ DSYTRI_ROOK,
  205. $ XLAENV
  206. * ..
  207. * .. Scalars in Common ..
  208. LOGICAL LERR, OK
  209. CHARACTER*32 SRNAMT
  210. INTEGER INFOT, NUNIT
  211. * ..
  212. * .. Common blocks ..
  213. COMMON / INFOC / INFOT, NUNIT, OK, LERR
  214. COMMON / SRNAMC / SRNAMT
  215. * ..
  216. * .. Intrinsic Functions ..
  217. INTRINSIC MAX, MIN
  218. * ..
  219. * .. Data statements ..
  220. DATA ISEEDY / 1988, 1989, 1990, 1991 /
  221. DATA UPLOS / 'U', 'L' / , FACTS / 'F', 'N' /
  222. * ..
  223. * .. Executable Statements ..
  224. *
  225. * Initialize constants and the random number seed.
  226. *
  227. * Test path
  228. *
  229. PATH( 1: 1 ) = 'Double precision'
  230. PATH( 2: 3 ) = 'SR'
  231. *
  232. * Path to generate matrices
  233. *
  234. MATPATH( 1: 1 ) = 'Double precision'
  235. MATPATH( 2: 3 ) = 'SY'
  236. *
  237. NRUN = 0
  238. NFAIL = 0
  239. NERRS = 0
  240. DO 10 I = 1, 4
  241. ISEED( I ) = ISEEDY( I )
  242. 10 CONTINUE
  243. LWORK = MAX( 2*NMAX, NMAX*NRHS )
  244. *
  245. * Test the error exits
  246. *
  247. IF( TSTERR )
  248. $ CALL DERRVX( PATH, NOUT )
  249. INFOT = 0
  250. *
  251. * Set the block size and minimum block size for which the block
  252. * routine should be used, which will be later returned by ILAENV.
  253. *
  254. NB = 1
  255. NBMIN = 2
  256. CALL XLAENV( 1, NB )
  257. CALL XLAENV( 2, NBMIN )
  258. *
  259. * Do for each value of N in NVAL
  260. *
  261. DO 180 IN = 1, NN
  262. N = NVAL( IN )
  263. LDA = MAX( N, 1 )
  264. XTYPE = 'N'
  265. NIMAT = NTYPES
  266. IF( N.LE.0 )
  267. $ NIMAT = 1
  268. *
  269. DO 170 IMAT = 1, NIMAT
  270. *
  271. * Do the tests only if DOTYPE( IMAT ) is true.
  272. *
  273. IF( .NOT.DOTYPE( IMAT ) )
  274. $ GO TO 170
  275. *
  276. * Skip types 3, 4, 5, or 6 if the matrix size is too small.
  277. *
  278. ZEROT = IMAT.GE.3 .AND. IMAT.LE.6
  279. IF( ZEROT .AND. N.LT.IMAT-2 )
  280. $ GO TO 170
  281. *
  282. * Do first for UPLO = 'U', then for UPLO = 'L'
  283. *
  284. DO 160 IUPLO = 1, 2
  285. UPLO = UPLOS( IUPLO )
  286. *
  287. * Begin generate the test matrix A.
  288. *
  289. * Set up parameters with DLATB4 for the matrix generator
  290. * based on the type of matrix to be generated.
  291. *
  292. CALL DLATB4( MATPATH, IMAT, N, N, TYPE, KL, KU, ANORM,
  293. $ MODE, CNDNUM, DIST )
  294. *
  295. * Generate a matrix with DLATMS.
  296. *
  297. SRNAMT = 'DLATMS'
  298. CALL DLATMS( N, N, DIST, ISEED, TYPE, RWORK, MODE,
  299. $ CNDNUM, ANORM, KL, KU, UPLO, A, LDA, WORK,
  300. $ INFO )
  301. *
  302. * Check error code from DLATMS and handle error.
  303. *
  304. IF( INFO.NE.0 ) THEN
  305. CALL ALAERH( PATH, 'DLATMS', INFO, 0, UPLO, N, N, -1,
  306. $ -1, -1, IMAT, NFAIL, NERRS, NOUT )
  307. *
  308. * Skip all tests for this generated matrix
  309. *
  310. GO TO 160
  311. END IF
  312. *
  313. * For types 3-6, zero one or more rows and columns of the
  314. * matrix to test that INFO is returned correctly.
  315. *
  316. IF( ZEROT ) THEN
  317. IF( IMAT.EQ.3 ) THEN
  318. IZERO = 1
  319. ELSE IF( IMAT.EQ.4 ) THEN
  320. IZERO = N
  321. ELSE
  322. IZERO = N / 2 + 1
  323. END IF
  324. *
  325. IF( IMAT.LT.6 ) THEN
  326. *
  327. * Set row and column IZERO to zero.
  328. *
  329. IF( IUPLO.EQ.1 ) THEN
  330. IOFF = ( IZERO-1 )*LDA
  331. DO 20 I = 1, IZERO - 1
  332. A( IOFF+I ) = ZERO
  333. 20 CONTINUE
  334. IOFF = IOFF + IZERO
  335. DO 30 I = IZERO, N
  336. A( IOFF ) = ZERO
  337. IOFF = IOFF + LDA
  338. 30 CONTINUE
  339. ELSE
  340. IOFF = IZERO
  341. DO 40 I = 1, IZERO - 1
  342. A( IOFF ) = ZERO
  343. IOFF = IOFF + LDA
  344. 40 CONTINUE
  345. IOFF = IOFF - IZERO
  346. DO 50 I = IZERO, N
  347. A( IOFF+I ) = ZERO
  348. 50 CONTINUE
  349. END IF
  350. ELSE
  351. IOFF = 0
  352. IF( IUPLO.EQ.1 ) THEN
  353. *
  354. * Set the first IZERO rows and columns to zero.
  355. *
  356. DO 70 J = 1, N
  357. I2 = MIN( J, IZERO )
  358. DO 60 I = 1, I2
  359. A( IOFF+I ) = ZERO
  360. 60 CONTINUE
  361. IOFF = IOFF + LDA
  362. 70 CONTINUE
  363. ELSE
  364. *
  365. * Set the last IZERO rows and columns to zero.
  366. *
  367. DO 90 J = 1, N
  368. I1 = MAX( J, IZERO )
  369. DO 80 I = I1, N
  370. A( IOFF+I ) = ZERO
  371. 80 CONTINUE
  372. IOFF = IOFF + LDA
  373. 90 CONTINUE
  374. END IF
  375. END IF
  376. ELSE
  377. IZERO = 0
  378. END IF
  379. *
  380. * End generate the test matrix A.
  381. *
  382. DO 150 IFACT = 1, NFACT
  383. *
  384. * Do first for FACT = 'F', then for other values.
  385. *
  386. FACT = FACTS( IFACT )
  387. *
  388. * Compute the condition number for comparison with
  389. * the value returned by DSYSVX_ROOK.
  390. *
  391. IF( ZEROT ) THEN
  392. IF( IFACT.EQ.1 )
  393. $ GO TO 150
  394. RCONDC = ZERO
  395. *
  396. ELSE IF( IFACT.EQ.1 ) THEN
  397. *
  398. * Compute the 1-norm of A.
  399. *
  400. ANORM = DLANSY( '1', UPLO, N, A, LDA, RWORK )
  401. *
  402. * Factor the matrix A.
  403. *
  404. CALL DLACPY( UPLO, N, N, A, LDA, AFAC, LDA )
  405. CALL DSYTRF_ROOK( UPLO, N, AFAC, LDA, IWORK, WORK,
  406. $ LWORK, INFO )
  407. *
  408. * Compute inv(A) and take its norm.
  409. *
  410. CALL DLACPY( UPLO, N, N, AFAC, LDA, AINV, LDA )
  411. LWORK = (N+NB+1)*(NB+3)
  412. CALL DSYTRI_ROOK( UPLO, N, AINV, LDA, IWORK,
  413. $ WORK, INFO )
  414. AINVNM = DLANSY( '1', UPLO, N, AINV, LDA, RWORK )
  415. *
  416. * Compute the 1-norm condition number of A.
  417. *
  418. IF( ANORM.LE.ZERO .OR. AINVNM.LE.ZERO ) THEN
  419. RCONDC = ONE
  420. ELSE
  421. RCONDC = ( ONE / ANORM ) / AINVNM
  422. END IF
  423. END IF
  424. *
  425. * Form an exact solution and set the right hand side.
  426. *
  427. SRNAMT = 'DLARHS'
  428. CALL DLARHS( MATPATH, XTYPE, UPLO, ' ', N, N, KL, KU,
  429. $ NRHS, A, LDA, XACT, LDA, B, LDA, ISEED,
  430. $ INFO )
  431. XTYPE = 'C'
  432. *
  433. * --- Test DSYSV_ROOK ---
  434. *
  435. IF( IFACT.EQ.2 ) THEN
  436. CALL DLACPY( UPLO, N, N, A, LDA, AFAC, LDA )
  437. CALL DLACPY( 'Full', N, NRHS, B, LDA, X, LDA )
  438. *
  439. * Factor the matrix and solve the system using
  440. * DSYSV_ROOK.
  441. *
  442. SRNAMT = 'DSYSV_ROOK'
  443. CALL DSYSV_ROOK( UPLO, N, NRHS, AFAC, LDA, IWORK,
  444. $ X, LDA, WORK, LWORK, INFO )
  445. *
  446. * Adjust the expected value of INFO to account for
  447. * pivoting.
  448. *
  449. K = IZERO
  450. IF( K.GT.0 ) THEN
  451. 100 CONTINUE
  452. IF( IWORK( K ).LT.0 ) THEN
  453. IF( IWORK( K ).NE.-K ) THEN
  454. K = -IWORK( K )
  455. GO TO 100
  456. END IF
  457. ELSE IF( IWORK( K ).NE.K ) THEN
  458. K = IWORK( K )
  459. GO TO 100
  460. END IF
  461. END IF
  462. *
  463. * Check error code from DSYSV_ROOK and handle error.
  464. *
  465. IF( INFO.NE.K ) THEN
  466. CALL ALAERH( PATH, 'DSYSV_ROOK', INFO, K, UPLO,
  467. $ N, N, -1, -1, NRHS, IMAT, NFAIL,
  468. $ NERRS, NOUT )
  469. GO TO 120
  470. ELSE IF( INFO.NE.0 ) THEN
  471. GO TO 120
  472. END IF
  473. *
  474. *+ TEST 1 Reconstruct matrix from factors and compute
  475. * residual.
  476. *
  477. CALL DSYT01_ROOK( UPLO, N, A, LDA, AFAC, LDA,
  478. $ IWORK, AINV, LDA, RWORK,
  479. $ RESULT( 1 ) )
  480. *
  481. *+ TEST 2 Compute residual of the computed solution.
  482. *
  483. CALL DLACPY( 'Full', N, NRHS, B, LDA, WORK, LDA )
  484. CALL DPOT02( UPLO, N, NRHS, A, LDA, X, LDA, WORK,
  485. $ LDA, RWORK, RESULT( 2 ) )
  486. *
  487. *+ TEST 3
  488. * Check solution from generated exact solution.
  489. *
  490. CALL DGET04( N, NRHS, X, LDA, XACT, LDA, RCONDC,
  491. $ RESULT( 3 ) )
  492. NT = 3
  493. *
  494. * Print information about the tests that did not pass
  495. * the threshold.
  496. *
  497. DO 110 K = 1, NT
  498. IF( RESULT( K ).GE.THRESH ) THEN
  499. IF( NFAIL.EQ.0 .AND. NERRS.EQ.0 )
  500. $ CALL ALADHD( NOUT, PATH )
  501. WRITE( NOUT, FMT = 9999 )'DSYSV_ROOK', UPLO,
  502. $ N, IMAT, K, RESULT( K )
  503. NFAIL = NFAIL + 1
  504. END IF
  505. 110 CONTINUE
  506. NRUN = NRUN + NT
  507. 120 CONTINUE
  508. END IF
  509. *
  510. 150 CONTINUE
  511. *
  512. 160 CONTINUE
  513. 170 CONTINUE
  514. 180 CONTINUE
  515. *
  516. * Print a summary of the results.
  517. *
  518. CALL ALASVM( PATH, NOUT, NFAIL, NRUN, NERRS )
  519. *
  520. 9999 FORMAT( 1X, A, ', UPLO=''', A1, ''', N =', I5, ', type ', I2,
  521. $ ', test ', I2, ', ratio =', G12.5 )
  522. RETURN
  523. *
  524. * End of DDRVSY_ROOK
  525. *
  526. END