OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dchksy_rk.f
Go to the documentation of this file.
1*> \brief \b DCHKSY_RK
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 DCHKSY_RK( DOTYPE, NN, NVAL, NNB, NBVAL, NNS, NSVAL,
12* THRESH, TSTERR, NMAX, A, AFAC, E, AINV, B,
13* X, XACT, WORK, RWORK, IWORK, NOUT )
14*
15* .. Scalar Arguments ..
16* LOGICAL TSTERR
17* INTEGER NMAX, NN, NNB, NNS, NOUT
18* DOUBLE PRECISION THRESH
19* ..
20* .. Array Arguments ..
21* LOGICAL DOTYPE( * )
22* INTEGER IWORK( * ), NBVAL( * ), NSVAL( * ), NVAL( * )
23* DOUBLE PRECISION A( * ), AFAC( * ), E( * ), AINV( * ), B( * ),
24* $ RWORK( * ), WORK( * ), X( * ), XACT( * )
25* ..
26*
27*
28*> \par Purpose:
29* =============
30*>
31*> \verbatim
32*> DCHKSY_RK tests DSYTRF_RK, -TRI_3, -TRS_3, and -CON_3.
33*> \endverbatim
34*
35* Arguments:
36* ==========
37*
38*> \param[in] DOTYPE
39*> \verbatim
40*> DOTYPE is LOGICAL array, dimension (NTYPES)
41*> The matrix types to be used for testing. Matrices of type j
42*> (for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) =
43*> .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used.
44*> \endverbatim
45*>
46*> \param[in] NN
47*> \verbatim
48*> NN is INTEGER
49*> The number of values of N contained in the vector NVAL.
50*> \endverbatim
51*>
52*> \param[in] NVAL
53*> \verbatim
54*> NVAL is INTEGER array, dimension (NN)
55*> The values of the matrix dimension N.
56*> \endverbatim
57*>
58*> \param[in] NNB
59*> \verbatim
60*> NNB is INTEGER
61*> The number of values of NB contained in the vector NBVAL.
62*> \endverbatim
63*>
64*> \param[in] NBVAL
65*> \verbatim
66*> NBVAL is INTEGER array, dimension (NNB)
67*> The values of the blocksize NB.
68*> \endverbatim
69*>
70*> \param[in] NNS
71*> \verbatim
72*> NNS is INTEGER
73*> The number of values of NRHS contained in the vector NSVAL.
74*> \endverbatim
75*>
76*> \param[in] NSVAL
77*> \verbatim
78*> NSVAL is INTEGER array, dimension (NNS)
79*> The values of the number of right hand sides NRHS.
80*> \endverbatim
81*>
82*> \param[in] THRESH
83*> \verbatim
84*> THRESH is DOUBLE PRECISION
85*> The threshold value for the test ratios. A result is
86*> included in the output file if RESULT >= THRESH. To have
87*> every test ratio printed, use THRESH = 0.
88*> \endverbatim
89*>
90*> \param[in] TSTERR
91*> \verbatim
92*> TSTERR is LOGICAL
93*> Flag that indicates whether error exits are to be tested.
94*> \endverbatim
95*>
96*> \param[in] NMAX
97*> \verbatim
98*> NMAX is INTEGER
99*> The maximum value permitted for N, used in dimensioning the
100*> work arrays.
101*> \endverbatim
102*>
103*> \param[out] A
104*> \verbatim
105*> A is DOUBLE PRECISION array, dimension (NMAX*NMAX)
106*> \endverbatim
107*>
108*> \param[out] AFAC
109*> \verbatim
110*> AFAC is DOUBLE PRECISION array, dimension (NMAX*NMAX)
111*> \endverbatim
112*>
113*> \param[out] E
114*> \verbatim
115*> E is DOUBLE PRECISION array, dimension (NMAX)
116*> \endverbatim
117*>
118*> \param[out] AINV
119*> \verbatim
120*> AINV is DOUBLE PRECISION array, dimension (NMAX*NMAX)
121*> \endverbatim
122*>
123*> \param[out] B
124*> \verbatim
125*> B is DOUBLE PRECISION array, dimension (NMAX*NSMAX),
126*> where NSMAX is the largest entry in NSVAL.
127*> \endverbatim
128*>
129*> \param[out] X
130*> \verbatim
131*> X is DOUBLE PRECISION array, dimension (NMAX*NSMAX),
132*> where NSMAX is the largest entry in NSVAL.
133*> \endverbatim
134*>
135*> \param[out] XACT
136*> \verbatim
137*> XACT is DOUBLE PRECISION array, dimension (NMAX*NSMAX),
138*> where NSMAX is the largest entry in NSVAL.
139*> \endverbatim
140*>
141*> \param[out] WORK
142*> \verbatim
143*> WORK is DOUBLE PRECISION array, dimension (NMAX*max(3,NSMAX))
144*> \endverbatim
145*>
146*> \param[out] RWORK
147*> \verbatim
148*> RWORK is DOUBLE PRECISION array, dimension (max(NMAX,2*NSMAX))
149*> \endverbatim
150*>
151*> \param[out] IWORK
152*> \verbatim
153*> IWORK is INTEGER array, dimension (2*NMAX)
154*> \endverbatim
155*>
156*> \param[in] NOUT
157*> \verbatim
158*> NOUT is INTEGER
159*> The unit number for output.
160*> \endverbatim
161*
162* Authors:
163* ========
164*
165*> \author Univ. of Tennessee
166*> \author Univ. of California Berkeley
167*> \author Univ. of Colorado Denver
168*> \author NAG Ltd.
169*
170*> \ingroup double_lin
171*
172* =====================================================================
173 SUBROUTINE dchksy_rk( DOTYPE, NN, NVAL, NNB, NBVAL, NNS, NSVAL,
174 $ THRESH, TSTERR, NMAX, A, AFAC, E, AINV, B,
175 $ X, XACT, WORK, RWORK, IWORK, NOUT )
176*
177* -- LAPACK test routine --
178* -- LAPACK is a software package provided by Univ. of Tennessee, --
179* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
180*
181* .. Scalar Arguments ..
182 LOGICAL TSTERR
183 INTEGER NMAX, NN, NNB, NNS, NOUT
184 DOUBLE PRECISION THRESH
185* ..
186* .. Array Arguments ..
187 LOGICAL DOTYPE( * )
188 INTEGER IWORK( * ), NBVAL( * ), NSVAL( * ), NVAL( * )
189 DOUBLE PRECISION A( * ), AFAC( * ), AINV( * ), B( * ), E( * ),
190 $ rwork( * ), work( * ), x( * ), xact( * )
191* ..
192*
193* =====================================================================
194*
195* .. Parameters ..
196 DOUBLE PRECISION ZERO, ONE
197 PARAMETER ( ZERO = 0.0d+0, one = 1.0d+0 )
198 DOUBLE PRECISION EIGHT, SEVTEN
199 parameter( eight = 8.0d+0, sevten = 17.0d+0 )
200 INTEGER NTYPES
201 parameter( ntypes = 10 )
202 INTEGER NTESTS
203 parameter( ntests = 7 )
204* ..
205* .. Local Scalars ..
206 LOGICAL TRFCON, ZEROT
207 CHARACTER DIST, TYPE, UPLO, XTYPE
208 CHARACTER*3 PATH, MATPATH
209 INTEGER I, I1, I2, IMAT, IN, INB, INFO, IOFF, IRHS,
210 $ itemp, iuplo, izero, j, k, kl, ku, lda, lwork,
211 $ mode, n, nb, nerrs, nfail, nimat, nrhs, nrun,
212 $ nt
213 DOUBLE PRECISION ALPHA, ANORM, CNDNUM, CONST, DTEMP, SING_MAX,
214 $ SING_MIN, RCOND, RCONDC
215* ..
216* .. Local Arrays ..
217 CHARACTER UPLOS( 2 )
218 INTEGER IDUMMY( 1 ), ISEED( 4 ), ISEEDY( 4 )
219 DOUBLE PRECISION BLOCK( 2, 2 ), DDUMMY( 1 ), RESULT( NTESTS )
220* ..
221* .. External Functions ..
222 DOUBLE PRECISION DGET06, DLANGE, DLANSY
223 EXTERNAL DGET06, DLANGE, DLANSY
224* ..
225* .. External Subroutines ..
226 EXTERNAL alaerh, alahd, alasum, derrsy, dgesvd, dget04,
230* ..
231* .. Intrinsic Functions ..
232 INTRINSIC max, min, sqrt
233* ..
234* .. Scalars in Common ..
235 LOGICAL LERR, OK
236 CHARACTER*32 SRNAMT
237 INTEGER INFOT, NUNIT
238* ..
239* .. Common blocks ..
240 COMMON / infoc / infot, nunit, ok, lerr
241 COMMON / srnamc / srnamt
242* ..
243* .. Data statements ..
244 DATA iseedy / 1988, 1989, 1990, 1991 /
245 DATA uplos / 'U', 'L' /
246* ..
247* .. Executable Statements ..
248*
249* Initialize constants and the random number seed.
250*
251 alpha = ( one+sqrt( sevten ) ) / eight
252*
253* Test path
254*
255 path( 1: 1 ) = 'Double precision'
256 path( 2: 3 ) = 'SK'
257*
258* Path to generate matrices
259*
260 matpath( 1: 1 ) = 'Double precision'
261 matpath( 2: 3 ) = 'SY'
262*
263 nrun = 0
264 nfail = 0
265 nerrs = 0
266 DO 10 i = 1, 4
267 iseed( i ) = iseedy( i )
268 10 CONTINUE
269*
270* Test the error exits
271*
272 IF( tsterr )
273 $ CALL derrsy( path, nout )
274 infot = 0
275*
276* Set the minimum block size for which the block routine should
277* be used, which will be later returned by ILAENV
278*
279 CALL xlaenv( 2, 2 )
280*
281* Do for each value of N in NVAL
282*
283 DO 270 in = 1, nn
284 n = nval( in )
285 lda = max( n, 1 )
286 xtype = 'N'
287 nimat = ntypes
288 IF( n.LE.0 )
289 $ nimat = 1
290*
291 izero = 0
292*
293* Do for each value of matrix type IMAT
294*
295 DO 260 imat = 1, nimat
296*
297* Do the tests only if DOTYPE( IMAT ) is true.
298*
299 IF( .NOT.dotype( imat ) )
300 $ GO TO 260
301*
302* Skip types 3, 4, 5, or 6 if the matrix size is too small.
303*
304 zerot = imat.GE.3 .AND. imat.LE.6
305 IF( zerot .AND. n.LT.imat-2 )
306 $ GO TO 260
307*
308* Do first for UPLO = 'U', then for UPLO = 'L'
309*
310 DO 250 iuplo = 1, 2
311 uplo = uplos( iuplo )
312*
313* Begin generate the test matrix A.
314*
315* Set up parameters with DLATB4 for the matrix generator
316* based on the type of matrix to be generated.
317*
318 CALL dlatb4( matpath, imat, n, n, TYPE, kl, ku, anorm,
319 $ mode, cndnum, dist )
320*
321* Generate a matrix with DLATMS.
322*
323 srnamt = 'DLATMS'
324 CALL dlatms( n, n, dist, iseed, TYPE, rwork, mode,
325 $ cndnum, anorm, kl, ku, uplo, a, lda, work,
326 $ info )
327*
328* Check error code from DLATMS and handle error.
329*
330 IF( info.NE.0 ) THEN
331 CALL alaerh( path, 'dlatms', INFO, 0, UPLO, N, N, -1,
332 $ -1, -1, IMAT, NFAIL, NERRS, NOUT )
333*
334* Skip all tests for this generated matrix
335*
336 GO TO 250
337 END IF
338*
339* For matrix types 3-6, zero one or more rows and
340* columns of the matrix to test that INFO is returned
341* correctly.
342*
343 IF( ZEROT ) THEN
344.EQ. IF( IMAT3 ) THEN
345 IZERO = 1
346.EQ. ELSE IF( IMAT4 ) THEN
347 IZERO = N
348 ELSE
349 IZERO = N / 2 + 1
350 END IF
351*
352.LT. IF( IMAT6 ) THEN
353*
354* Set row and column IZERO to zero.
355*
356.EQ. IF( IUPLO1 ) THEN
357 IOFF = ( IZERO-1 )*LDA
358 DO 20 I = 1, IZERO - 1
359 A( IOFF+I ) = ZERO
360 20 CONTINUE
361 IOFF = IOFF + IZERO
362 DO 30 I = IZERO, N
363 A( IOFF ) = ZERO
364 IOFF = IOFF + LDA
365 30 CONTINUE
366 ELSE
367 IOFF = IZERO
368 DO 40 I = 1, IZERO - 1
369 A( IOFF ) = ZERO
370 IOFF = IOFF + LDA
371 40 CONTINUE
372 IOFF = IOFF - IZERO
373 DO 50 I = IZERO, N
374 A( IOFF+I ) = ZERO
375 50 CONTINUE
376 END IF
377 ELSE
378.EQ. IF( IUPLO1 ) THEN
379*
380* Set the first IZERO rows and columns to zero.
381*
382 IOFF = 0
383 DO 70 J = 1, N
384 I2 = MIN( J, IZERO )
385 DO 60 I = 1, I2
386 A( IOFF+I ) = ZERO
387 60 CONTINUE
388 IOFF = IOFF + LDA
389 70 CONTINUE
390 ELSE
391*
392* Set the last IZERO rows and columns to zero.
393*
394 IOFF = 0
395 DO 90 J = 1, N
396 I1 = MAX( J, IZERO )
397 DO 80 I = I1, N
398 A( IOFF+I ) = ZERO
399 80 CONTINUE
400 IOFF = IOFF + LDA
401 90 CONTINUE
402 END IF
403 END IF
404 ELSE
405 IZERO = 0
406 END IF
407*
408* End generate the test matrix A.
409*
410*
411* Do for each value of NB in NBVAL
412*
413 DO 240 INB = 1, NNB
414*
415* Set the optimal blocksize, which will be later
416* returned by ILAENV.
417*
418 NB = NBVAL( INB )
419 CALL XLAENV( 1, NB )
420*
421* Copy the test matrix A into matrix AFAC which
422* will be factorized in place. This is needed to
423* preserve the test matrix A for subsequent tests.
424*
425 CALL DLACPY( UPLO, N, N, A, LDA, AFAC, LDA )
426*
427* Compute the L*D*L**T or U*D*U**T factorization of the
428* matrix. IWORK stores details of the interchanges and
429* the block structure of D. AINV is a work array for
430* block factorization, LWORK is the length of AINV.
431*
432 LWORK = MAX( 2, NB )*LDA
433 SRNAMT = 'dsytrf_rk'
434 CALL DSYTRF_RK( UPLO, N, AFAC, LDA, E, IWORK, AINV,
435 $ LWORK, INFO )
436*
437* Adjust the expected value of INFO to account for
438* pivoting.
439*
440 K = IZERO
441.GT. IF( K0 ) THEN
442 100 CONTINUE
443.LT. IF( IWORK( K )0 ) THEN
444.NE. IF( IWORK( K )-K ) THEN
445 K = -IWORK( K )
446 GO TO 100
447 END IF
448.NE. ELSE IF( IWORK( K )K ) THEN
449 K = IWORK( K )
450 GO TO 100
451 END IF
452 END IF
453*
454* Check error code from DSYTRF_RK and handle error.
455*
456.NE. IF( INFOK)
457 $ CALL ALAERH( PATH, 'dsytrf_rk', INFO, K,
458 $ UPLO, N, N, -1, -1, NB, IMAT,
459 $ NFAIL, NERRS, NOUT )
460*
461* Set the condition estimate flag if the INFO is not 0.
462*
463.NE. IF( INFO0 ) THEN
464 TRFCON = .TRUE.
465 ELSE
466 TRFCON = .FALSE.
467 END IF
468*
469*+ TEST 1
470* Reconstruct matrix from factors and compute residual.
471*
472 CALL DSYT01_3( UPLO, N, A, LDA, AFAC, LDA, E, IWORK,
473 $ AINV, LDA, RWORK, RESULT( 1 ) )
474 NT = 1
475*
476*+ TEST 2
477* Form the inverse and compute the residual,
478* if the factorization was competed without INFO > 0
479* (i.e. there is no zero rows and columns).
480* Do it only for the first block size.
481*
482.EQ..AND..NOT. IF( INB1 TRFCON ) THEN
483 CALL DLACPY( UPLO, N, N, AFAC, LDA, AINV, LDA )
484 SRNAMT = 'dsytri_3'
485*
486* Another reason that we need to compute the inverse
487* is that DPOT03 produces RCONDC which is used later
488* in TEST6 and TEST7.
489*
490 LWORK = (N+NB+1)*(NB+3)
491 CALL DSYTRI_3( UPLO, N, AINV, LDA, E, IWORK, WORK,
492 $ LWORK, INFO )
493*
494* Check error code from DSYTRI_3 and handle error.
495*
496.NE. IF( INFO0 )
497 $ CALL ALAERH( PATH, 'dsytri_3', INFO, -1,
498 $ UPLO, N, N, -1, -1, -1, IMAT,
499 $ NFAIL, NERRS, NOUT )
500*
501* Compute the residual for a symmetric matrix times
502* its inverse.
503*
504 CALL DPOT03( UPLO, N, A, LDA, AINV, LDA, WORK, LDA,
505 $ RWORK, RCONDC, RESULT( 2 ) )
506 NT = 2
507 END IF
508*
509* Print information about the tests that did not pass
510* the threshold.
511*
512 DO 110 K = 1, NT
513.GE. IF( RESULT( K )THRESH ) THEN
514.EQ..AND..EQ. IF( NFAIL0 NERRS0 )
515 $ CALL ALAHD( NOUT, PATH )
516 WRITE( NOUT, FMT = 9999 )UPLO, N, NB, IMAT, K,
517 $ RESULT( K )
518 NFAIL = NFAIL + 1
519 END IF
520 110 CONTINUE
521 NRUN = NRUN + NT
522*
523*+ TEST 3
524* Compute largest element in U or L
525*
526 RESULT( 3 ) = ZERO
527 DTEMP = ZERO
528*
529 CONST = ONE / ( ONE-ALPHA )
530*
531.EQ. IF( IUPLO1 ) THEN
532*
533* Compute largest element in U
534*
535 K = N
536 120 CONTINUE
537.LE. IF( K1 )
538 $ GO TO 130
539*
540.GT. IF( IWORK( K )ZERO ) THEN
541*
542* Get max absolute value from elements
543* in column k in in U
544*
545 DTEMP = DLANGE( 'm', K-1, 1,
546 $ AFAC( ( K-1 )*LDA+1 ), LDA, RWORK )
547 ELSE
548*
549* Get max absolute value from elements
550* in columns k and k-1 in U
551*
552 DTEMP = DLANGE( 'm', K-2, 2,
553 $ AFAC( ( K-2 )*LDA+1 ), LDA, RWORK )
554 K = K - 1
555*
556 END IF
557*
558* DTEMP should be bounded by CONST
559*
560 DTEMP = DTEMP - CONST + THRESH
561.GT. IF( DTEMPRESULT( 3 ) )
562 $ RESULT( 3 ) = DTEMP
563*
564 K = K - 1
565*
566 GO TO 120
567 130 CONTINUE
568*
569 ELSE
570*
571* Compute largest element in L
572*
573 K = 1
574 140 CONTINUE
575.GE. IF( KN )
576 $ GO TO 150
577*
578.GT. IF( IWORK( K )ZERO ) THEN
579*
580* Get max absolute value from elements
581* in column k in in L
582*
583 DTEMP = DLANGE( 'm', N-K, 1,
584 $ AFAC( ( K-1 )*LDA+K+1 ), LDA, RWORK )
585 ELSE
586*
587* Get max absolute value from elements
588* in columns k and k+1 in L
589*
590 DTEMP = DLANGE( 'm', N-K-1, 2,
591 $ AFAC( ( K-1 )*LDA+K+2 ), LDA, RWORK )
592 K = K + 1
593*
594 END IF
595*
596* DTEMP should be bounded by CONST
597*
598 DTEMP = DTEMP - CONST + THRESH
599.GT. IF( DTEMPRESULT( 3 ) )
600 $ RESULT( 3 ) = DTEMP
601*
602 K = K + 1
603*
604 GO TO 140
605 150 CONTINUE
606 END IF
607*
608*+ TEST 4
609* Compute largest 2-Norm (condition number)
610* of 2-by-2 diag blocks
611*
612 RESULT( 4 ) = ZERO
613 DTEMP = ZERO
614*
615 CONST = ( ONE+ALPHA ) / ( ONE-ALPHA )
616 CALL DLACPY( UPLO, N, N, AFAC, LDA, AINV, LDA )
617*
618.EQ. IF( IUPLO1 ) THEN
619*
620* Loop backward for UPLO = 'U'
621*
622 K = N
623 160 CONTINUE
624.LE. IF( K1 )
625 $ GO TO 170
626*
627.LT. IF( IWORK( K )ZERO ) THEN
628*
629* Get the two singular values
630* (real and non-negative) of a 2-by-2 block,
631* store them in RWORK array
632*
633 BLOCK( 1, 1 ) = AFAC( ( K-2 )*LDA+K-1 )
634 BLOCK( 1, 2 ) = E( K )
635 BLOCK( 2, 1 ) = BLOCK( 1, 2 )
636 BLOCK( 2, 2 ) = AFAC( (K-1)*LDA+K )
637*
638 CALL DGESVD( 'n', 'n', 2, 2, BLOCK, 2, RWORK,
639 $ DDUMMY, 1, DDUMMY, 1,
640 $ WORK, 10, INFO )
641*
642 SING_MAX = RWORK( 1 )
643 SING_MIN = RWORK( 2 )
644*
645 DTEMP = SING_MAX / SING_MIN
646*
647* DTEMP should be bounded by CONST
648*
649 DTEMP = DTEMP - CONST + THRESH
650.GT. IF( DTEMPRESULT( 4 ) )
651 $ RESULT( 4 ) = DTEMP
652 K = K - 1
653*
654 END IF
655*
656 K = K - 1
657*
658 GO TO 160
659 170 CONTINUE
660*
661 ELSE
662*
663* Loop forward for UPLO = 'L'
664*
665 K = 1
666 180 CONTINUE
667.GE. IF( KN )
668 $ GO TO 190
669*
670.LT. IF( IWORK( K )ZERO ) THEN
671*
672* Get the two singular values
673* (real and non-negative) of a 2-by-2 block,
674* store them in RWORK array
675*
676 BLOCK( 1, 1 ) = AFAC( ( K-1 )*LDA+K )
677 BLOCK( 2, 1 ) = E( K )
678 BLOCK( 1, 2 ) = BLOCK( 2, 1 )
679 BLOCK( 2, 2 ) = AFAC( K*LDA+K+1 )
680*
681 CALL DGESVD( 'n', 'n', 2, 2, BLOCK, 2, RWORK,
682 $ DDUMMY, 1, DDUMMY, 1,
683 $ WORK, 10, INFO )
684*
685*
686 SING_MAX = RWORK( 1 )
687 SING_MIN = RWORK( 2 )
688*
689 DTEMP = SING_MAX / SING_MIN
690*
691* DTEMP should be bounded by CONST
692*
693 DTEMP = DTEMP - CONST + THRESH
694.GT. IF( DTEMPRESULT( 4 ) )
695 $ RESULT( 4 ) = DTEMP
696 K = K + 1
697*
698 END IF
699*
700 K = K + 1
701*
702 GO TO 180
703 190 CONTINUE
704 END IF
705*
706* Print information about the tests that did not pass
707* the threshold.
708*
709 DO 200 K = 3, 4
710.GE. IF( RESULT( K )THRESH ) THEN
711.EQ..AND..EQ. IF( NFAIL0 NERRS0 )
712 $ CALL ALAHD( NOUT, PATH )
713 WRITE( NOUT, FMT = 9999 )UPLO, N, NB, IMAT, K,
714 $ RESULT( K )
715 NFAIL = NFAIL + 1
716 END IF
717 200 CONTINUE
718 NRUN = NRUN + 2
719*
720* Skip the other tests if this is not the first block
721* size.
722*
723.GT. IF( INB1 )
724 $ GO TO 240
725*
726* Do only the condition estimate if INFO is not 0.
727*
728 IF( TRFCON ) THEN
729 RCONDC = ZERO
730 GO TO 230
731 END IF
732*
733* Do for each value of NRHS in NSVAL.
734*
735 DO 220 IRHS = 1, NNS
736 NRHS = NSVAL( IRHS )
737*
738*+ TEST 5 ( Using TRS_3)
739* Solve and compute residual for A * X = B.
740*
741* Choose a set of NRHS random solution vectors
742* stored in XACT and set up the right hand side B
743*
744 SRNAMT = 'dlarhs'
745 CALL DLARHS( MATPATH, XTYPE, UPLO, ' ', N, N,
746 $ KL, KU, NRHS, A, LDA, XACT, LDA,
747 $ B, LDA, ISEED, INFO )
748 CALL DLACPY( 'full', N, NRHS, B, LDA, X, LDA )
749*
750 SRNAMT = 'dsytrs_3'
751 CALL DSYTRS_3( UPLO, N, NRHS, AFAC, LDA, E, IWORK,
752 $ X, LDA, INFO )
753*
754* Check error code from DSYTRS_3 and handle error.
755*
756.NE. IF( INFO0 )
757 $ CALL ALAERH( PATH, 'dsytrs_3', INFO, 0,
758 $ UPLO, N, N, -1, -1, NRHS, IMAT,
759 $ NFAIL, NERRS, NOUT )
760*
761 CALL DLACPY( 'full', N, NRHS, B, LDA, WORK, LDA )
762*
763* Compute the residual for the solution
764*
765 CALL DPOT02( UPLO, N, NRHS, A, LDA, X, LDA, WORK,
766 $ LDA, RWORK, RESULT( 5 ) )
767*
768*+ TEST 6
769* Check solution from generated exact solution.
770*
771 CALL DGET04( N, NRHS, X, LDA, XACT, LDA, RCONDC,
772 $ RESULT( 6 ) )
773*
774* Print information about the tests that did not pass
775* the threshold.
776*
777 DO 210 K = 5, 6
778.GE. IF( RESULT( K )THRESH ) THEN
779.EQ..AND..EQ. IF( NFAIL0 NERRS0 )
780 $ CALL ALAHD( NOUT, PATH )
781 WRITE( NOUT, FMT = 9998 )UPLO, N, NRHS,
782 $ IMAT, K, RESULT( K )
783 NFAIL = NFAIL + 1
784 END IF
785 210 CONTINUE
786 NRUN = NRUN + 2
787*
788* End do for each value of NRHS in NSVAL.
789*
790 220 CONTINUE
791*
792*+ TEST 7
793* Get an estimate of RCOND = 1/CNDNUM.
794*
795 230 CONTINUE
796 ANORM = DLANSY( '1', UPLO, N, A, LDA, RWORK )
797 SRNAMT = 'dsycon_3'
798 CALL DSYCON_3( UPLO, N, AFAC, LDA, E, IWORK, ANORM,
799 $ RCOND, WORK, IWORK( N+1 ), INFO )
800*
801* Check error code from DSYCON_3 and handle error.
802*
803.NE. IF( INFO0 )
804 $ CALL ALAERH( PATH, 'dsycon_3', INFO, 0,
805 $ UPLO, N, N, -1, -1, -1, IMAT,
806 $ NFAIL, NERRS, NOUT )
807*
808* Compute the test ratio to compare to values of RCOND
809*
810 RESULT( 7 ) = DGET06( RCOND, RCONDC )
811*
812* Print information about the tests that did not pass
813* the threshold.
814*
815.GE. IF( RESULT( 7 )THRESH ) THEN
816.EQ..AND..EQ. IF( NFAIL0 NERRS0 )
817 $ CALL ALAHD( NOUT, PATH )
818 WRITE( NOUT, FMT = 9997 ) UPLO, N, IMAT, 7,
819 $ RESULT( 7 )
820 NFAIL = NFAIL + 1
821 END IF
822 NRUN = NRUN + 1
823 240 CONTINUE
824*
825 250 CONTINUE
826 260 CONTINUE
827 270 CONTINUE
828*
829* Print a summary of the results.
830*
831 CALL ALASUM( PATH, NOUT, NFAIL, NRUN, NERRS )
832*
833 9999 FORMAT( ' uplo = ''', A1, ''', n =', i5, ', NB =', i4, ', type ',
834 $ i2, ', test ', i2, ', ratio =', g12.5 )
835 9998 FORMAT( ' UPLO = ''', a1, ''', N =', i5, ', NRHS=', i3, ', type ',
836 $ i2, ', test(', i2, ') =', g12.5 )
837 9997 FORMAT( ' UPLO = ''', a1, ''', N =', i5, ',', 10x, ' type ', i2,
838 $ ', test(', i2, ') =', g12.5 )
839 RETURN
840*
841* End of DCHKSY_RK
842*
843 END
subroutine dlacpy(uplo, m, n, a, lda, b, ldb)
DLACPY copies all or part of one two-dimensional array to another.
Definition dlacpy.f:103
subroutine xlaenv(ispec, nvalue)
XLAENV
Definition xlaenv.f:81
subroutine alasum(type, nout, nfail, nrun, nerrs)
ALASUM
Definition alasum.f:73
subroutine alahd(iounit, path)
ALAHD
Definition alahd.f:107
subroutine alaerh(path, subnam, info, infoe, opts, m, n, kl, ku, n5, imat, nfail, nerrs, nout)
ALAERH
Definition alaerh.f:147
subroutine dgesvd(jobu, jobvt, m, n, a, lda, s, u, ldu, vt, ldvt, work, lwork, info)
DGESVD computes the singular value decomposition (SVD) for GE matrices
Definition dgesvd.f:211
subroutine dsycon_3(uplo, n, a, lda, e, ipiv, anorm, rcond, work, iwork, info)
DSYCON_3
Definition dsycon_3.f:171
subroutine dsytrf_rk(uplo, n, a, lda, e, ipiv, work, lwork, info)
DSYTRF_RK computes the factorization of a real symmetric indefinite matrix using the bounded Bunch-Ka...
Definition dsytrf_rk.f:259
subroutine dsytrs_3(uplo, n, nrhs, a, lda, e, ipiv, b, ldb, info)
DSYTRS_3
Definition dsytrs_3.f:165
subroutine dsytri_3(uplo, n, a, lda, e, ipiv, work, lwork, info)
DSYTRI_3
Definition dsytri_3.f:170
subroutine dlarhs(path, xtype, uplo, trans, m, n, kl, ku, nrhs, a, lda, x, ldx, b, ldb, iseed, info)
DLARHS
Definition dlarhs.f:205
subroutine derrsy(path, nunit)
DERRSY
Definition derrsy.f:55
subroutine dlatb4(path, imat, m, n, type, kl, ku, anorm, mode, cndnum, dist)
DLATB4
Definition dlatb4.f:120
subroutine dpot02(uplo, n, nrhs, a, lda, x, ldx, b, ldb, rwork, resid)
DPOT02
Definition dpot02.f:127
subroutine dpot03(uplo, n, a, lda, ainv, ldainv, work, ldwork, rwork, rcond, resid)
DPOT03
Definition dpot03.f:125
subroutine dsyt01_3(uplo, n, a, lda, afac, ldafac, e, ipiv, c, ldc, rwork, resid)
DSYT01_3
Definition dsyt01_3.f:140
subroutine dget04(n, nrhs, x, ldx, xact, ldxact, rcond, resid)
DGET04
Definition dget04.f:102
subroutine dchksy_rk(dotype, nn, nval, nnb, nbval, nns, nsval, thresh, tsterr, nmax, a, afac, e, ainv, b, x, xact, work, rwork, iwork, nout)
DCHKSY_RK
Definition dchksy_rk.f:176
subroutine dlatms(m, n, dist, iseed, sym, d, mode, cond, dmax, kl, ku, pack, a, lda, work, info)
DLATMS
Definition dlatms.f:321
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21