numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
Name | Size | Mode | |
.. | |||
lapack/TESTING/LIN/zdrvpp.f | 20724B | -rw-r--r-- |
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
*> \brief \b ZDRVPP * * =========== DOCUMENTATION =========== * * Online html documentation available at * http://www.netlib.org/lapack/explore-html/ * * Definition: * =========== * * SUBROUTINE ZDRVPP( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR, NMAX, * A, AFAC, ASAV, B, BSAV, X, XACT, S, WORK, * RWORK, NOUT ) * * .. Scalar Arguments .. * LOGICAL TSTERR * INTEGER NMAX, NN, NOUT, NRHS * DOUBLE PRECISION THRESH * .. * .. Array Arguments .. * LOGICAL DOTYPE( * ) * INTEGER NVAL( * ) * DOUBLE PRECISION RWORK( * ), S( * ) * COMPLEX*16 A( * ), AFAC( * ), ASAV( * ), B( * ), * $ BSAV( * ), WORK( * ), X( * ), XACT( * ) * .. * * *> \par Purpose: * ============= *> *> \verbatim *> *> ZDRVPP tests the driver routines ZPPSV and -SVX. *> \endverbatim * * Arguments: * ========== * *> \param[in] DOTYPE *> \verbatim *> DOTYPE is LOGICAL array, dimension (NTYPES) *> The matrix types to be used for testing. Matrices of type j *> (for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) = *> .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used. *> \endverbatim *> *> \param[in] NN *> \verbatim *> NN is INTEGER *> The number of values of N contained in the vector NVAL. *> \endverbatim *> *> \param[in] NVAL *> \verbatim *> NVAL is INTEGER array, dimension (NN) *> The values of the matrix dimension N. *> \endverbatim *> *> \param[in] NRHS *> \verbatim *> NRHS is INTEGER *> The number of right hand side vectors to be generated for *> each linear system. *> \endverbatim *> *> \param[in] THRESH *> \verbatim *> THRESH is DOUBLE PRECISION *> The threshold value for the test ratios. A result is *> included in the output file if RESULT >= THRESH. To have *> every test ratio printed, use THRESH = 0. *> \endverbatim *> *> \param[in] TSTERR *> \verbatim *> TSTERR is LOGICAL *> Flag that indicates whether error exits are to be tested. *> \endverbatim *> *> \param[in] NMAX *> \verbatim *> NMAX is INTEGER *> The maximum value permitted for N, used in dimensioning the *> work arrays. *> \endverbatim *> *> \param[out] A *> \verbatim *> A is COMPLEX*16 array, dimension (NMAX*(NMAX+1)/2) *> \endverbatim *> *> \param[out] AFAC *> \verbatim *> AFAC is COMPLEX*16 array, dimension (NMAX*(NMAX+1)/2) *> \endverbatim *> *> \param[out] ASAV *> \verbatim *> ASAV is COMPLEX*16 array, dimension (NMAX*(NMAX+1)/2) *> \endverbatim *> *> \param[out] B *> \verbatim *> B is COMPLEX*16 array, dimension (NMAX*NRHS) *> \endverbatim *> *> \param[out] BSAV *> \verbatim *> BSAV is COMPLEX*16 array, dimension (NMAX*NRHS) *> \endverbatim *> *> \param[out] X *> \verbatim *> X is COMPLEX*16 array, dimension (NMAX*NRHS) *> \endverbatim *> *> \param[out] XACT *> \verbatim *> XACT is COMPLEX*16 array, dimension (NMAX*NRHS) *> \endverbatim *> *> \param[out] S *> \verbatim *> S is DOUBLE PRECISION array, dimension (NMAX) *> \endverbatim *> *> \param[out] WORK *> \verbatim *> WORK is COMPLEX*16 array, dimension *> (NMAX*max(3,NRHS)) *> \endverbatim *> *> \param[out] RWORK *> \verbatim *> RWORK is DOUBLE PRECISION array, dimension (NMAX+2*NRHS) *> \endverbatim *> *> \param[in] NOUT *> \verbatim *> NOUT is INTEGER *> The unit number for output. *> \endverbatim * * Authors: * ======== * *> \author Univ. of Tennessee *> \author Univ. of California Berkeley *> \author Univ. of Colorado Denver *> \author NAG Ltd. * *> \ingroup complex16_lin * * ===================================================================== SUBROUTINE ZDRVPP( DOTYPE, NN, NVAL, NRHS, THRESH, TSTERR, NMAX, $ A, AFAC, ASAV, B, BSAV, X, XACT, S, WORK, $ RWORK, NOUT ) * * -- LAPACK test routine -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * * .. Scalar Arguments .. LOGICAL TSTERR INTEGER NMAX, NN, NOUT, NRHS DOUBLE PRECISION THRESH * .. * .. Array Arguments .. LOGICAL DOTYPE( * ) INTEGER NVAL( * ) DOUBLE PRECISION RWORK( * ), S( * ) COMPLEX*16 A( * ), AFAC( * ), ASAV( * ), B( * ), $ BSAV( * ), WORK( * ), X( * ), XACT( * ) * .. * * ===================================================================== * * .. Parameters .. DOUBLE PRECISION ONE, ZERO PARAMETER ( ONE = 1.0D+0, ZERO = 0.0D+0 ) INTEGER NTYPES PARAMETER ( NTYPES = 9 ) INTEGER NTESTS PARAMETER ( NTESTS = 6 ) * .. * .. Local Scalars .. LOGICAL EQUIL, NOFACT, PREFAC, ZEROT CHARACTER DIST, EQUED, FACT, PACKIT, TYPE, UPLO, XTYPE CHARACTER*3 PATH INTEGER I, IEQUED, IFACT, IMAT, IN, INFO, IOFF, IUPLO, $ IZERO, K, K1, KL, KU, LDA, MODE, N, NERRS, $ NFACT, NFAIL, NIMAT, NPP, NRUN, NT DOUBLE PRECISION AINVNM, AMAX, ANORM, CNDNUM, RCOND, RCONDC, $ ROLDC, SCOND * .. * .. Local Arrays .. CHARACTER EQUEDS( 2 ), FACTS( 3 ), PACKS( 2 ), UPLOS( 2 ) INTEGER ISEED( 4 ), ISEEDY( 4 ) DOUBLE PRECISION RESULT( NTESTS ) * .. * .. External Functions .. LOGICAL LSAME DOUBLE PRECISION DGET06, ZLANHP EXTERNAL LSAME, DGET06, ZLANHP * .. * .. External Subroutines .. EXTERNAL ALADHD, ALAERH, ALASVM, ZCOPY, ZERRVX, ZGET04, $ ZLACPY, ZLAIPD, ZLAQHP, ZLARHS, ZLASET, ZLATB4, $ ZLATMS, ZPPEQU, ZPPSV, ZPPSVX, ZPPT01, ZPPT02, $ ZPPT05, ZPPTRF, ZPPTRI * .. * .. Scalars in Common .. LOGICAL LERR, OK CHARACTER*32 SRNAMT INTEGER INFOT, NUNIT * .. * .. Common blocks .. COMMON / INFOC / INFOT, NUNIT, OK, LERR COMMON / SRNAMC / SRNAMT * .. * .. Intrinsic Functions .. INTRINSIC DCMPLX, MAX * .. * .. Data statements .. DATA ISEEDY / 1988, 1989, 1990, 1991 / DATA UPLOS / 'U', 'L' / , FACTS / 'F', 'N', 'E' / , $ PACKS / 'C', 'R' / , EQUEDS / 'N', 'Y' / * .. * .. Executable Statements .. * * Initialize constants and the random number seed. * PATH( 1: 1 ) = 'Zomplex precision' PATH( 2: 3 ) = 'PP' NRUN = 0 NFAIL = 0 NERRS = 0 DO 10 I = 1, 4 ISEED( I ) = ISEEDY( I ) 10 CONTINUE * * Test the error exits * IF( TSTERR ) $ CALL ZERRVX( PATH, NOUT ) INFOT = 0 * * Do for each value of N in NVAL * DO 140 IN = 1, NN N = NVAL( IN ) LDA = MAX( N, 1 ) NPP = N*( N+1 ) / 2 XTYPE = 'N' NIMAT = NTYPES IF( N.LE.0 ) $ NIMAT = 1 * DO 130 IMAT = 1, NIMAT * * Do the tests only if DOTYPE( IMAT ) is true. * IF( .NOT.DOTYPE( IMAT ) ) $ GO TO 130 * * Skip types 3, 4, or 5 if the matrix size is too small. * ZEROT = IMAT.GE.3 .AND. IMAT.LE.5 IF( ZEROT .AND. N.LT.IMAT-2 ) $ GO TO 130 * * Do first for UPLO = 'U', then for UPLO = 'L' * DO 120 IUPLO = 1, 2 UPLO = UPLOS( IUPLO ) PACKIT = PACKS( IUPLO ) * * Set up parameters with ZLATB4 and generate a test matrix * with ZLATMS. * CALL ZLATB4( PATH, IMAT, N, N, TYPE, KL, KU, ANORM, MODE, $ CNDNUM, DIST ) RCONDC = ONE / CNDNUM * SRNAMT = 'ZLATMS' CALL ZLATMS( N, N, DIST, ISEED, TYPE, RWORK, MODE, $ CNDNUM, ANORM, KL, KU, PACKIT, A, LDA, WORK, $ INFO ) * * Check error code from ZLATMS. * IF( INFO.NE.0 ) THEN CALL ALAERH( PATH, 'ZLATMS', INFO, 0, UPLO, N, N, -1, $ -1, -1, IMAT, NFAIL, NERRS, NOUT ) GO TO 120 END IF * * For types 3-5, zero one row and column of the matrix to * test that INFO is returned correctly. * IF( ZEROT ) THEN IF( IMAT.EQ.3 ) THEN IZERO = 1 ELSE IF( IMAT.EQ.4 ) THEN IZERO = N ELSE IZERO = N / 2 + 1 END IF * * Set row and column IZERO of A to 0. * IF( IUPLO.EQ.1 ) THEN IOFF = ( IZERO-1 )*IZERO / 2 DO 20 I = 1, IZERO - 1 A( IOFF+I ) = ZERO 20 CONTINUE IOFF = IOFF + IZERO DO 30 I = IZERO, N A( IOFF ) = ZERO IOFF = IOFF + I 30 CONTINUE ELSE IOFF = IZERO DO 40 I = 1, IZERO - 1 A( IOFF ) = ZERO IOFF = IOFF + N - I 40 CONTINUE IOFF = IOFF - IZERO DO 50 I = IZERO, N A( IOFF+I ) = ZERO 50 CONTINUE END IF ELSE IZERO = 0 END IF * * Set the imaginary part of the diagonals. * IF( IUPLO.EQ.1 ) THEN CALL ZLAIPD( N, A, 2, 1 ) ELSE CALL ZLAIPD( N, A, N, -1 ) END IF * * Save a copy of the matrix A in ASAV. * CALL ZCOPY( NPP, A, 1, ASAV, 1 ) * DO 110 IEQUED = 1, 2 EQUED = EQUEDS( IEQUED ) IF( IEQUED.EQ.1 ) THEN NFACT = 3 ELSE NFACT = 1 END IF * DO 100 IFACT = 1, NFACT FACT = FACTS( IFACT ) PREFAC = LSAME( FACT, 'F' ) NOFACT = LSAME( FACT, 'N' ) EQUIL = LSAME( FACT, 'E' ) * IF( ZEROT ) THEN IF( PREFAC ) $ GO TO 100 RCONDC = ZERO * ELSE IF( .NOT.LSAME( FACT, 'N' ) ) THEN * * Compute the condition number for comparison with * the value returned by ZPPSVX (FACT = 'N' reuses * the condition number from the previous iteration * with FACT = 'F'). * CALL ZCOPY( NPP, ASAV, 1, AFAC, 1 ) IF( EQUIL .OR. IEQUED.GT.1 ) THEN * * Compute row and column scale factors to * equilibrate the matrix A. * CALL ZPPEQU( UPLO, N, AFAC, S, SCOND, AMAX, $ INFO ) IF( INFO.EQ.0 .AND. N.GT.0 ) THEN IF( IEQUED.GT.1 ) $ SCOND = ZERO * * Equilibrate the matrix. * CALL ZLAQHP( UPLO, N, AFAC, S, SCOND, $ AMAX, EQUED ) END IF END IF * * Save the condition number of the * non-equilibrated system for use in ZGET04. * IF( EQUIL ) $ ROLDC = RCONDC * * Compute the 1-norm of A. * ANORM = ZLANHP( '1', UPLO, N, AFAC, RWORK ) * * Factor the matrix A. * CALL ZPPTRF( UPLO, N, AFAC, INFO ) * * Form the inverse of A. * CALL ZCOPY( NPP, AFAC, 1, A, 1 ) CALL ZPPTRI( UPLO, N, A, INFO ) * * Compute the 1-norm condition number of A. * AINVNM = ZLANHP( '1', UPLO, N, A, RWORK ) IF( ANORM.LE.ZERO .OR. AINVNM.LE.ZERO ) THEN RCONDC = ONE ELSE RCONDC = ( ONE / ANORM ) / AINVNM END IF END IF * * Restore the matrix A. * CALL ZCOPY( NPP, ASAV, 1, A, 1 ) * * Form an exact solution and set the right hand side. * SRNAMT = 'ZLARHS' CALL ZLARHS( PATH, XTYPE, UPLO, ' ', N, N, KL, KU, $ NRHS, A, LDA, XACT, LDA, B, LDA, $ ISEED, INFO ) XTYPE = 'C' CALL ZLACPY( 'Full', N, NRHS, B, LDA, BSAV, LDA ) * IF( NOFACT ) THEN * * --- Test ZPPSV --- * * Compute the L*L' or U'*U factorization of the * matrix and solve the system. * CALL ZCOPY( NPP, A, 1, AFAC, 1 ) CALL ZLACPY( 'Full', N, NRHS, B, LDA, X, LDA ) * SRNAMT = 'ZPPSV ' CALL ZPPSV( UPLO, N, NRHS, AFAC, X, LDA, INFO ) * * Check error code from ZPPSV . * IF( INFO.NE.IZERO ) THEN CALL ALAERH( PATH, 'ZPPSV ', INFO, IZERO, $ UPLO, N, N, -1, -1, NRHS, IMAT, $ NFAIL, NERRS, NOUT ) GO TO 70 ELSE IF( INFO.NE.0 ) THEN GO TO 70 END IF * * Reconstruct matrix from factors and compute * residual. * CALL ZPPT01( UPLO, N, A, AFAC, RWORK, $ RESULT( 1 ) ) * * Compute residual of the computed solution. * CALL ZLACPY( 'Full', N, NRHS, B, LDA, WORK, $ LDA ) CALL ZPPT02( UPLO, N, NRHS, A, X, LDA, WORK, $ LDA, RWORK, RESULT( 2 ) ) * * Check solution from generated exact solution. * CALL ZGET04( N, NRHS, X, LDA, XACT, LDA, RCONDC, $ RESULT( 3 ) ) NT = 3 * * Print information about the tests that did not * pass the threshold. * DO 60 K = 1, NT IF( RESULT( K ).GE.THRESH ) THEN IF( NFAIL.EQ.0 .AND. NERRS.EQ.0 ) $ CALL ALADHD( NOUT, PATH ) WRITE( NOUT, FMT = 9999 )'ZPPSV ', UPLO, $ N, IMAT, K, RESULT( K ) NFAIL = NFAIL + 1 END IF 60 CONTINUE NRUN = NRUN + NT 70 CONTINUE END IF * * --- Test ZPPSVX --- * IF( .NOT.PREFAC .AND. NPP.GT.0 ) $ CALL ZLASET( 'Full', NPP, 1, DCMPLX( ZERO ), $ DCMPLX( ZERO ), AFAC, NPP ) CALL ZLASET( 'Full', N, NRHS, DCMPLX( ZERO ), $ DCMPLX( ZERO ), X, LDA ) IF( IEQUED.GT.1 .AND. N.GT.0 ) THEN * * Equilibrate the matrix if FACT='F' and * EQUED='Y'. * CALL ZLAQHP( UPLO, N, A, S, SCOND, AMAX, EQUED ) END IF * * Solve the system and compute the condition number * and error bounds using ZPPSVX. * SRNAMT = 'ZPPSVX' CALL ZPPSVX( FACT, UPLO, N, NRHS, A, AFAC, EQUED, $ S, B, LDA, X, LDA, RCOND, RWORK, $ RWORK( NRHS+1 ), WORK, $ RWORK( 2*NRHS+1 ), INFO ) * * Check the error code from ZPPSVX. * IF( INFO.NE.IZERO ) THEN CALL ALAERH( PATH, 'ZPPSVX', INFO, IZERO, $ FACT // UPLO, N, N, -1, -1, NRHS, $ IMAT, NFAIL, NERRS, NOUT ) GO TO 90 END IF * IF( INFO.EQ.0 ) THEN IF( .NOT.PREFAC ) THEN * * Reconstruct matrix from factors and compute * residual. * CALL ZPPT01( UPLO, N, A, AFAC, $ RWORK( 2*NRHS+1 ), RESULT( 1 ) ) K1 = 1 ELSE K1 = 2 END IF * * Compute residual of the computed solution. * CALL ZLACPY( 'Full', N, NRHS, BSAV, LDA, WORK, $ LDA ) CALL ZPPT02( UPLO, N, NRHS, ASAV, X, LDA, WORK, $ LDA, RWORK( 2*NRHS+1 ), $ RESULT( 2 ) ) * * Check solution from generated exact solution. * IF( NOFACT .OR. ( PREFAC .AND. LSAME( EQUED, $ 'N' ) ) ) THEN CALL ZGET04( N, NRHS, X, LDA, XACT, LDA, $ RCONDC, RESULT( 3 ) ) ELSE CALL ZGET04( N, NRHS, X, LDA, XACT, LDA, $ ROLDC, RESULT( 3 ) ) END IF * * Check the error bounds from iterative * refinement. * CALL ZPPT05( UPLO, N, NRHS, ASAV, B, LDA, X, $ LDA, XACT, LDA, RWORK, $ RWORK( NRHS+1 ), RESULT( 4 ) ) ELSE K1 = 6 END IF * * Compare RCOND from ZPPSVX with the computed value * in RCONDC. * RESULT( 6 ) = DGET06( RCOND, RCONDC ) * * Print information about the tests that did not pass * the threshold. * DO 80 K = K1, 6 IF( RESULT( K ).GE.THRESH ) THEN IF( NFAIL.EQ.0 .AND. NERRS.EQ.0 ) $ CALL ALADHD( NOUT, PATH ) IF( PREFAC ) THEN WRITE( NOUT, FMT = 9997 )'ZPPSVX', FACT, $ UPLO, N, EQUED, IMAT, K, RESULT( K ) ELSE WRITE( NOUT, FMT = 9998 )'ZPPSVX', FACT, $ UPLO, N, IMAT, K, RESULT( K ) END IF NFAIL = NFAIL + 1 END IF 80 CONTINUE NRUN = NRUN + 7 - K1 90 CONTINUE 100 CONTINUE 110 CONTINUE 120 CONTINUE 130 CONTINUE 140 CONTINUE * * Print a summary of the results. * CALL ALASVM( PATH, NOUT, NFAIL, NRUN, NERRS ) * 9999 FORMAT( 1X, A, ', UPLO=''', A1, ''', N =', I5, ', type ', I1, $ ', test(', I1, ')=', G12.5 ) 9998 FORMAT( 1X, A, ', FACT=''', A1, ''', UPLO=''', A1, ''', N=', I5, $ ', type ', I1, ', test(', I1, ')=', G12.5 ) 9997 FORMAT( 1X, A, ', FACT=''', A1, ''', UPLO=''', A1, ''', N=', I5, $ ', EQUED=''', A1, ''', type ', I1, ', test(', I1, ')=', $ G12.5 ) RETURN * * End of ZDRVPP * END