OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dqlt03.f
Go to the documentation of this file.
1*> \brief \b DQLT03
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 DQLT03( M, N, K, AF, C, CC, Q, LDA, TAU, WORK, LWORK,
12* RWORK, RESULT )
13*
14* .. Scalar Arguments ..
15* INTEGER K, LDA, LWORK, M, N
16* ..
17* .. Array Arguments ..
18* DOUBLE PRECISION AF( LDA, * ), C( LDA, * ), CC( LDA, * ),
19* $ Q( LDA, * ), RESULT( * ), RWORK( * ), TAU( * ),
20* $ WORK( LWORK )
21* ..
22*
23*
24*> \par Purpose:
25* =============
26*>
27*> \verbatim
28*>
29*> DQLT03 tests DORMQL, which computes Q*C, Q'*C, C*Q or C*Q'.
30*>
31*> DQLT03 compares the results of a call to DORMQL with the results of
32*> forming Q explicitly by a call to DORGQL and then performing matrix
33*> multiplication by a call to DGEMM.
34*> \endverbatim
35*
36* Arguments:
37* ==========
38*
39*> \param[in] M
40*> \verbatim
41*> M is INTEGER
42*> The order of the orthogonal matrix Q. M >= 0.
43*> \endverbatim
44*>
45*> \param[in] N
46*> \verbatim
47*> N is INTEGER
48*> The number of rows or columns of the matrix C; C is m-by-n if
49*> Q is applied from the left, or n-by-m if Q is applied from
50*> the right. N >= 0.
51*> \endverbatim
52*>
53*> \param[in] K
54*> \verbatim
55*> K is INTEGER
56*> The number of elementary reflectors whose product defines the
57*> orthogonal matrix Q. M >= K >= 0.
58*> \endverbatim
59*>
60*> \param[in] AF
61*> \verbatim
62*> AF is DOUBLE PRECISION array, dimension (LDA,N)
63*> Details of the QL factorization of an m-by-n matrix, as
64*> returned by DGEQLF. See SGEQLF for further details.
65*> \endverbatim
66*>
67*> \param[out] C
68*> \verbatim
69*> C is DOUBLE PRECISION array, dimension (LDA,N)
70*> \endverbatim
71*>
72*> \param[out] CC
73*> \verbatim
74*> CC is DOUBLE PRECISION array, dimension (LDA,N)
75*> \endverbatim
76*>
77*> \param[out] Q
78*> \verbatim
79*> Q is DOUBLE PRECISION array, dimension (LDA,M)
80*> \endverbatim
81*>
82*> \param[in] LDA
83*> \verbatim
84*> LDA is INTEGER
85*> The leading dimension of the arrays AF, C, CC, and Q.
86*> \endverbatim
87*>
88*> \param[in] TAU
89*> \verbatim
90*> TAU is DOUBLE PRECISION array, dimension (min(M,N))
91*> The scalar factors of the elementary reflectors corresponding
92*> to the QL factorization in AF.
93*> \endverbatim
94*>
95*> \param[out] WORK
96*> \verbatim
97*> WORK is DOUBLE PRECISION array, dimension (LWORK)
98*> \endverbatim
99*>
100*> \param[in] LWORK
101*> \verbatim
102*> LWORK is INTEGER
103*> The length of WORK. LWORK must be at least M, and should be
104*> M*NB, where NB is the blocksize for this environment.
105*> \endverbatim
106*>
107*> \param[out] RWORK
108*> \verbatim
109*> RWORK is DOUBLE PRECISION array, dimension (M)
110*> \endverbatim
111*>
112*> \param[out] RESULT
113*> \verbatim
114*> RESULT is DOUBLE PRECISION array, dimension (4)
115*> The test ratios compare two techniques for multiplying a
116*> random matrix C by an m-by-m orthogonal matrix Q.
117*> RESULT(1) = norm( Q*C - Q*C ) / ( M * norm(C) * EPS )
118*> RESULT(2) = norm( C*Q - C*Q ) / ( M * norm(C) * EPS )
119*> RESULT(3) = norm( Q'*C - Q'*C )/ ( M * norm(C) * EPS )
120*> RESULT(4) = norm( C*Q' - C*Q' )/ ( M * norm(C) * EPS )
121*> \endverbatim
122*
123* Authors:
124* ========
125*
126*> \author Univ. of Tennessee
127*> \author Univ. of California Berkeley
128*> \author Univ. of Colorado Denver
129*> \author NAG Ltd.
130*
131*> \ingroup double_lin
132*
133* =====================================================================
134 SUBROUTINE dqlt03( M, N, K, AF, C, CC, Q, LDA, TAU, WORK, LWORK,
135 $ RWORK, RESULT )
136*
137* -- LAPACK test routine --
138* -- LAPACK is a software package provided by Univ. of Tennessee, --
139* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
140*
141* .. Scalar Arguments ..
142 INTEGER K, LDA, LWORK, M, N
143* ..
144* .. Array Arguments ..
145 DOUBLE PRECISION AF( LDA, * ), C( LDA, * ), CC( LDA, * ),
146 $ q( lda, * ), result( * ), rwork( * ), tau( * ),
147 $ work( lwork )
148* ..
149*
150* =====================================================================
151*
152* .. Parameters ..
153 DOUBLE PRECISION ZERO, ONE
154 parameter( zero = 0.0d0, one = 1.0d0 )
155 DOUBLE PRECISION ROGUE
156 parameter( rogue = -1.0d+10 )
157* ..
158* .. Local Scalars ..
159 CHARACTER SIDE, TRANS
160 INTEGER INFO, ISIDE, ITRANS, J, MC, MINMN, NC
161 DOUBLE PRECISION CNORM, EPS, RESID
162* ..
163* .. External Functions ..
164 LOGICAL LSAME
165 DOUBLE PRECISION DLAMCH, DLANGE
166 EXTERNAL lsame, dlamch, dlange
167* ..
168* .. External Subroutines ..
169 EXTERNAL dgemm, dlacpy, dlarnv, dlaset, dorgql, dormql
170* ..
171* .. Local Arrays ..
172 INTEGER ISEED( 4 )
173* ..
174* .. Intrinsic Functions ..
175 INTRINSIC dble, max, min
176* ..
177* .. Scalars in Common ..
178 CHARACTER*32 SRNAMT
179* ..
180* .. Common blocks ..
181 COMMON / srnamc / srnamt
182* ..
183* .. Data statements ..
184 DATA iseed / 1988, 1989, 1990, 1991 /
185* ..
186* .. Executable Statements ..
187*
188 eps = dlamch( 'Epsilon' )
189 minmn = min( m, n )
190*
191* Quick return if possible
192*
193 IF( minmn.EQ.0 ) THEN
194 result( 1 ) = zero
195 result( 2 ) = zero
196 result( 3 ) = zero
197 result( 4 ) = zero
198 RETURN
199 END IF
200*
201* Copy the last k columns of the factorization to the array Q
202*
203 CALL dlaset( 'Full', m, m, rogue, rogue, q, lda )
204 IF( k.GT.0 .AND. m.GT.k )
205 $ CALL dlacpy( 'Full', m-k, k, af( 1, n-k+1 ), lda,
206 $ q( 1, m-k+1 ), lda )
207 IF( k.GT.1 )
208 $ CALL dlacpy( 'Upper', k-1, k-1, af( m-k+1, n-k+2 ), lda,
209 $ q( m-k+1, m-k+2 ), lda )
210*
211* Generate the m-by-m matrix Q
212*
213 srnamt = 'DORGQL'
214 CALL dorgql( m, m, k, q, lda, tau( minmn-k+1 ), work, lwork,
215 $ info )
216*
217 DO 30 iside = 1, 2
218 IF( iside.EQ.1 ) THEN
219 side = 'L'
220 mc = m
221 nc = n
222 ELSE
223 side = 'r'
224 MC = N
225 NC = M
226 END IF
227*
228* Generate MC by NC matrix C
229*
230 DO 10 J = 1, NC
231 CALL DLARNV( 2, ISEED, MC, C( 1, J ) )
232 10 CONTINUE
233 CNORM = DLANGE( '1', MC, NC, C, LDA, RWORK )
234.EQ. IF( CNORM0.0D0 )
235 $ CNORM = ONE
236*
237 DO 20 ITRANS = 1, 2
238.EQ. IF( ITRANS1 ) THEN
239 TRANS = 'n'
240 ELSE
241 TRANS = 't'
242 END IF
243*
244* Copy C
245*
246 CALL DLACPY( 'full', MC, NC, C, LDA, CC, LDA )
247*
248* Apply Q or Q' to C
249*
250 SRNAMT = 'dormql'
251.GT. IF( K0 )
252 $ CALL DORMQL( SIDE, TRANS, MC, NC, K, AF( 1, N-K+1 ), LDA,
253 $ TAU( MINMN-K+1 ), CC, LDA, WORK, LWORK,
254 $ INFO )
255*
256* Form explicit product and subtract
257*
258 IF( LSAME( SIDE, 'l' ) ) THEN
259 CALL DGEMM( TRANS, 'no transpose', MC, NC, MC, -ONE, Q,
260 $ LDA, C, LDA, ONE, CC, LDA )
261 ELSE
262 CALL DGEMM( 'no transpose', TRANS, MC, NC, NC, -ONE, C,
263 $ LDA, Q, LDA, ONE, CC, LDA )
264 END IF
265*
266* Compute error in the difference
267*
268 RESID = DLANGE( '1', MC, NC, CC, LDA, RWORK )
269 RESULT( ( ISIDE-1 )*2+ITRANS ) = RESID /
270 $ ( DBLE( MAX( 1, M ) )*CNORM*EPS )
271*
272 20 CONTINUE
273 30 CONTINUE
274*
275 RETURN
276*
277* End of DQLT03
278*
279 END
subroutine dlarnv(idist, iseed, n, x)
DLARNV returns a vector of random numbers from a uniform or normal distribution.
Definition dlarnv.f:97
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 dlaset(uplo, m, n, alpha, beta, a, lda)
DLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values.
Definition dlaset.f:110
subroutine dorgql(m, n, k, a, lda, tau, work, lwork, info)
DORGQL
Definition dorgql.f:128
subroutine dormql(side, trans, m, n, k, a, lda, tau, c, ldc, work, lwork, info)
DORMQL
Definition dormql.f:167
subroutine dgemm(transa, transb, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
DGEMM
Definition dgemm.f:187
subroutine dqlt03(m, n, k, af, c, cc, q, lda, tau, work, lwork, rwork, result)
DQLT03
Definition dqlt03.f:136
#define min(a, b)
Definition macros.h:20
#define max(a, b)
Definition macros.h:21