LAPACK  3.9.1
LAPACK: Linear Algebra PACKage
zchktsqr.f
Go to the documentation of this file.
1 *> \brief \b DCHKQRT
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 ZCHKTSQR( THRESH, TSTERR, NM, MVAL, NN, NVAL, NNB,
12 * NBVAL, NOUT )
13 *
14 * .. Scalar Arguments ..
15 * LOGICAL TSTERR
16 * INTEGER NM, NN, NNB, NOUT
17 * DOUBLE PRECISION THRESH
18 * ..
19 * .. Array Arguments ..
20 * INTEGER MVAL( * ), NBVAL( * ), NVAL( * )
21 *
22 *> \par Purpose:
23 * =============
24 *>
25 *> \verbatim
26 *>
27 *> ZCHKTSQR tests ZGEQR and ZGEMQR.
28 *> \endverbatim
29 *
30 * Arguments:
31 * ==========
32 *
33 *> \param[in] THRESH
34 *> \verbatim
35 *> THRESH is DOUBLE PRECISION
36 *> The threshold value for the test ratios. A result is
37 *> included in the output file if RESULT >= THRESH. To have
38 *> every test ratio printed, use THRESH = 0.
39 *> \endverbatim
40 *>
41 *> \param[in] TSTERR
42 *> \verbatim
43 *> TSTERR is LOGICAL
44 *> Flag that indicates whether error exits are to be tested.
45 *> \endverbatim
46 *>
47 *> \param[in] NM
48 *> \verbatim
49 *> NM is INTEGER
50 *> The number of values of M contained in the vector MVAL.
51 *> \endverbatim
52 *>
53 *> \param[in] MVAL
54 *> \verbatim
55 *> MVAL is INTEGER array, dimension (NM)
56 *> The values of the matrix row dimension M.
57 *> \endverbatim
58 *>
59 *> \param[in] NN
60 *> \verbatim
61 *> NN is INTEGER
62 *> The number of values of N contained in the vector NVAL.
63 *> \endverbatim
64 *>
65 *> \param[in] NVAL
66 *> \verbatim
67 *> NVAL is INTEGER array, dimension (NN)
68 *> The values of the matrix column dimension N.
69 *> \endverbatim
70 *>
71 *> \param[in] NNB
72 *> \verbatim
73 *> NNB is INTEGER
74 *> The number of values of NB contained in the vector NBVAL.
75 *> \endverbatim
76 *>
77 *> \param[in] NBVAL
78 *> \verbatim
79 *> NBVAL is INTEGER array, dimension (NBVAL)
80 *> The values of the blocksize NB.
81 *> \endverbatim
82 *>
83 *> \param[in] NOUT
84 *> \verbatim
85 *> NOUT is INTEGER
86 *> The unit number for output.
87 *> \endverbatim
88 *
89 * Authors:
90 * ========
91 *
92 *> \author Univ. of Tennessee
93 *> \author Univ. of California Berkeley
94 *> \author Univ. of Colorado Denver
95 *> \author NAG Ltd.
96 *
97 *> \ingroup double_lin
98 *
99 * =====================================================================
100  SUBROUTINE zchktsqr( THRESH, TSTERR, NM, MVAL, NN, NVAL, NNB,
101  $ NBVAL, NOUT )
102  IMPLICIT NONE
103 *
104 * -- LAPACK test routine --
105 * -- LAPACK is a software package provided by Univ. of Tennessee, --
106 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
107 *
108 * .. Scalar Arguments ..
109  LOGICAL TSTERR
110  INTEGER NM, NN, NNB, NOUT
111  DOUBLE PRECISION THRESH
112 * ..
113 * .. Array Arguments ..
114  INTEGER MVAL( * ), NBVAL( * ), NVAL( * )
115 * ..
116 *
117 * =====================================================================
118 *
119 * .. Parameters ..
120  INTEGER NTESTS
121  parameter( ntests = 6 )
122 * ..
123 * .. Local Scalars ..
124  CHARACTER*3 PATH
125  INTEGER I, J, K, T, M, N, NB, NFAIL, NERRS, NRUN, INB,
126  $ minmn, mb, imb
127 *
128 * .. Local Arrays ..
129  DOUBLE PRECISION RESULT( NTESTS )
130 * ..
131 * .. External Subroutines ..
132  EXTERNAL alaerh, alahd, alasum, zerrtsqr,
133  $ ztsqr01, xlaenv
134 * ..
135 * .. Intrinsic Functions ..
136  INTRINSIC max, min
137 * ..
138 * .. Scalars in Common ..
139  LOGICAL LERR, OK
140  CHARACTER*32 SRNAMT
141  INTEGER INFOT, NUNIT
142 * ..
143 * .. Common blocks ..
144  COMMON / infoc / infot, nunit, ok, lerr
145  COMMON / srnamc / srnamt
146 * ..
147 * .. Executable Statements ..
148 *
149 * Initialize constants
150 *
151  path( 1: 1 ) = 'Z'
152  path( 2: 3 ) = 'TS'
153  nrun = 0
154  nfail = 0
155  nerrs = 0
156 *
157 * Test the error exits
158 *
159  IF( tsterr ) CALL zerrtsqr( path, nout )
160  infot = 0
161 *
162 * Do for each value of M in MVAL.
163 *
164  DO i = 1, nm
165  m = mval( i )
166 *
167 * Do for each value of N in NVAL.
168 *
169  DO j = 1, nn
170  n = nval( j )
171  IF (min(m,n).NE.0) THEN
172  DO inb = 1, nnb
173  mb = nbval( inb )
174  CALL xlaenv( 1, mb )
175  DO imb = 1, nnb
176  nb = nbval( imb )
177  CALL xlaenv( 2, nb )
178 *
179 * Test ZGEQR and ZGEMQR
180 *
181  CALL ztsqr01( 'TS', m, n, mb, nb, result )
182 *
183 * Print information about the tests that did not
184 * pass the threshold.
185 *
186  DO t = 1, ntests
187  IF( result( t ).GE.thresh ) THEN
188  IF( nfail.EQ.0 .AND. nerrs.EQ.0 )
189  $ CALL alahd( nout, path )
190  WRITE( nout, fmt = 9999 )m, n, mb, nb,
191  $ t, result( t )
192  nfail = nfail + 1
193  END IF
194  END DO
195  nrun = nrun + ntests
196  END DO
197  END DO
198  END IF
199  END DO
200  END DO
201 *
202 * Do for each value of M in MVAL.
203 *
204  DO i = 1, nm
205  m = mval( i )
206 *
207 * Do for each value of N in NVAL.
208 *
209  DO j = 1, nn
210  n = nval( j )
211  IF (min(m,n).NE.0) THEN
212  DO inb = 1, nnb
213  mb = nbval( inb )
214  CALL xlaenv( 1, mb )
215  DO imb = 1, nnb
216  nb = nbval( imb )
217  CALL xlaenv( 2, nb )
218 *
219 * Test ZGELQ and ZGEMLQ
220 *
221  CALL ztsqr01( 'SW', m, n, mb, nb, result )
222 *
223 * Print information about the tests that did not
224 * pass the threshold.
225 *
226  DO t = 1, ntests
227  IF( result( t ).GE.thresh ) THEN
228  IF( nfail.EQ.0 .AND. nerrs.EQ.0 )
229  $ CALL alahd( nout, path )
230  WRITE( nout, fmt = 9998 )m, n, mb, nb,
231  $ t, result( t )
232  nfail = nfail + 1
233  END IF
234  END DO
235  nrun = nrun + ntests
236  END DO
237  END DO
238  END IF
239  END DO
240  END DO
241 *
242 * Print a summary of the results.
243 *
244  CALL alasum( path, nout, nfail, nrun, nerrs )
245 *
246  9999 FORMAT( 'TS: M=', i5, ', N=', i5, ', MB=', i5,
247  $ ', NB=', i5,' test(', i2, ')=', g12.5 )
248  9998 FORMAT( 'SW: M=', i5, ', N=', i5, ', MB=', i5,
249  $ ', NB=', i5,' test(', i2, ')=', g12.5 )
250  RETURN
251 *
252 * End of ZCHKQRT
253 *
254  END
subroutine alasum(TYPE, NOUT, NFAIL, NRUN, NERRS)
ALASUM
Definition: alasum.f:73
subroutine xlaenv(ISPEC, NVALUE)
XLAENV
Definition: xlaenv.f:81
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 zchktsqr(THRESH, TSTERR, NM, MVAL, NN, NVAL, NNB, NBVAL, NOUT)
DCHKQRT
Definition: zchktsqr.f:102
subroutine zerrtsqr(PATH, NUNIT)
ZERRTSQR
Definition: zerrtsqr.f:55
subroutine ztsqr01(TSSW, M, N, MB, NB, RESULT)
ZTSQR01
Definition: ztsqr01.f:82