LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine derrac ( integer  NUNIT)

DERRAC

Purpose:
 DERRAC tests the error exits for DSPOSV.
Parameters
[in]NUNIT
          NUNIT is INTEGER
          The unit number for output.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
November 2011

Definition at line 49 of file derrac.f.

49 *
50 * -- LAPACK test routine (version 3.4.0) --
51 * -- LAPACK is a software package provided by Univ. of Tennessee, --
52 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
53 * November 2011
54 *
55 * .. Scalar Arguments ..
56  INTEGER nunit
57 * ..
58 *
59 * =====================================================================
60 *
61 * .. Parameters ..
62  INTEGER nmax
63  parameter ( nmax = 4 )
64 * ..
65 * .. Local Scalars ..
66  INTEGER i, info, iter, j
67 * ..
68 * .. Local Arrays ..
69  DOUBLE PRECISION a( nmax, nmax ), af( nmax, nmax ), b( nmax ),
70  $ c( nmax ), r( nmax ), r1( nmax ), r2( nmax ),
71  $ w( 2*nmax ), x( nmax )
72  DOUBLE PRECISION work(nmax*nmax)
73  REAL swork(nmax*nmax)
74 * ..
75 * .. External Subroutines ..
76  EXTERNAL chkxer, dsposv
77 * ..
78 * .. Scalars in Common ..
79  LOGICAL lerr, ok
80  CHARACTER*32 srnamt
81  INTEGER infot, nout
82 * ..
83 * .. Common blocks ..
84  COMMON / infoc / infot, nout, ok, lerr
85  COMMON / srnamc / srnamt
86 * ..
87 * .. Intrinsic Functions ..
88  INTRINSIC dble
89 * ..
90 * .. Executable Statements ..
91 *
92  nout = nunit
93  WRITE( nout, fmt = * )
94 *
95 * Set the variables to innocuous values.
96 *
97  DO 20 j = 1, nmax
98  DO 10 i = 1, nmax
99  a( i, j ) = 1.d0 / dble( i+j )
100  af( i, j ) = 1.d0 / dble( i+j )
101  10 CONTINUE
102  b( j ) = 0.d0
103  r1( j ) = 0.d0
104  r2( j ) = 0.d0
105  w( j ) = 0.d0
106  x( j ) = 0.d0
107  c( j ) = 0.d0
108  r( j ) = 0.d0
109  20 CONTINUE
110  ok = .true.
111 *
112  srnamt = 'DSPOSV'
113  infot = 1
114  CALL dsposv('/',0,0,a,1,b,1,x,1,work,swork,iter,info)
115  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
116  infot = 2
117  CALL dsposv('U',-1,0,a,1,b,1,x,1,work,swork,iter,info)
118  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
119  infot = 3
120  CALL dsposv('U',0,-1,a,1,b,1,x,1,work,swork,iter,info)
121  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
122  infot = 5
123  CALL dsposv('U',2,1,a,1,b,2,x,2,work,swork,iter,info)
124  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
125  infot = 7
126  CALL dsposv('U',2,1,a,2,b,1,x,2,work,swork,iter,info)
127  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
128  infot = 9
129  CALL dsposv('U',2,1,a,2,b,2,x,1,work,swork,iter,info)
130  CALL chkxer( 'DSPOSV', infot, nout, lerr, ok )
131 *
132 * Print a summary line.
133 *
134  IF( ok ) THEN
135  WRITE( nout, fmt = 9999 )'DSPOSV'
136  ELSE
137  WRITE( nout, fmt = 9998 )'DSPOSV'
138  END IF
139 *
140  9999 FORMAT( 1x, a6, ' drivers passed the tests of the error exits' )
141  9998 FORMAT( ' *** ', a6, ' drivers failed the tests of the error ',
142  $ 'exits ***' )
143 *
144  RETURN
145 *
146 * End of DERRAC
147 *
subroutine dsposv(UPLO, N, NRHS, A, LDA, B, LDB, X, LDX, WORK, SWORK, ITER, INFO)
DSPOSV computes the solution to system of linear equations A * X = B for PO matrices ...
Definition: dsposv.f:201
subroutine chkxer(SRNAMT, INFOT, NOUT, LERR, OK)
Definition: cblat2.f:3199

Here is the call graph for this function:

Here is the caller graph for this function: