LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
cqlt03.f
Go to the documentation of this file.
1 *> \brief \b CQLT03
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 CQLT03( 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 * REAL RESULT( * ), RWORK( * )
19 * COMPLEX AF( LDA, * ), C( LDA, * ), CC( LDA, * ),
20 * $ Q( LDA, * ), TAU( * ), WORK( LWORK )
21 * ..
22 *
23 *
24 *> \par Purpose:
25 * =============
26 *>
27 *> \verbatim
28 *>
29 *> CQLT03 tests CUNMQL, which computes Q*C, Q'*C, C*Q or C*Q'.
30 *>
31 *> CQLT03 compares the results of a call to CUNMQL with the results of
32 *> forming Q explicitly by a call to CUNGQL and then performing matrix
33 *> multiplication by a call to CGEMM.
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 COMPLEX array, dimension (LDA,N)
63 *> Details of the QL factorization of an m-by-n matrix, as
64 *> returned by CGEQLF. See CGEQLF for further details.
65 *> \endverbatim
66 *>
67 *> \param[out] C
68 *> \verbatim
69 *> C is COMPLEX array, dimension (LDA,N)
70 *> \endverbatim
71 *>
72 *> \param[out] CC
73 *> \verbatim
74 *> CC is COMPLEX array, dimension (LDA,N)
75 *> \endverbatim
76 *>
77 *> \param[out] Q
78 *> \verbatim
79 *> Q is COMPLEX 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 COMPLEX 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 COMPLEX 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 REAL array, dimension (M)
110 *> \endverbatim
111 *>
112 *> \param[out] RESULT
113 *> \verbatim
114 *> RESULT is REAL 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 *> \date November 2011
132 *
133 *> \ingroup complex_lin
134 *
135 * =====================================================================
136  SUBROUTINE cqlt03( M, N, K, AF, C, CC, Q, LDA, TAU, WORK, LWORK,
137  $ rwork, result )
138 *
139 * -- LAPACK test routine (version 3.4.0) --
140 * -- LAPACK is a software package provided by Univ. of Tennessee, --
141 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
142 * November 2011
143 *
144 * .. Scalar Arguments ..
145  INTEGER K, LDA, LWORK, M, N
146 * ..
147 * .. Array Arguments ..
148  REAL RESULT( * ), RWORK( * )
149  COMPLEX AF( lda, * ), C( lda, * ), CC( lda, * ),
150  $ q( lda, * ), tau( * ), work( lwork )
151 * ..
152 *
153 * =====================================================================
154 *
155 * .. Parameters ..
156  REAL ZERO, ONE
157  parameter ( zero = 0.0e+0, one = 1.0e+0 )
158  COMPLEX ROGUE
159  parameter ( rogue = ( -1.0e+10, -1.0e+10 ) )
160 * ..
161 * .. Local Scalars ..
162  CHARACTER SIDE, TRANS
163  INTEGER INFO, ISIDE, ITRANS, J, MC, MINMN, NC
164  REAL CNORM, EPS, RESID
165 * ..
166 * .. External Functions ..
167  LOGICAL LSAME
168  REAL CLANGE, SLAMCH
169  EXTERNAL lsame, clange, slamch
170 * ..
171 * .. External Subroutines ..
172  EXTERNAL cgemm, clacpy, clarnv, claset, cungql, cunmql
173 * ..
174 * .. Local Arrays ..
175  INTEGER ISEED( 4 )
176 * ..
177 * .. Intrinsic Functions ..
178  INTRINSIC cmplx, max, min, real
179 * ..
180 * .. Scalars in Common ..
181  CHARACTER*32 SRNAMT
182 * ..
183 * .. Common blocks ..
184  COMMON / srnamc / srnamt
185 * ..
186 * .. Data statements ..
187  DATA iseed / 1988, 1989, 1990, 1991 /
188 * ..
189 * .. Executable Statements ..
190 *
191  eps = slamch( 'Epsilon' )
192  minmn = min( m, n )
193 *
194 * Quick return if possible
195 *
196  IF( minmn.EQ.0 ) THEN
197  result( 1 ) = zero
198  result( 2 ) = zero
199  result( 3 ) = zero
200  result( 4 ) = zero
201  RETURN
202  ENDIF
203 *
204 * Copy the last k columns of the factorization to the array Q
205 *
206  CALL claset( 'Full', m, m, rogue, rogue, q, lda )
207  IF( k.GT.0 .AND. m.GT.k )
208  $ CALL clacpy( 'Full', m-k, k, af( 1, n-k+1 ), lda,
209  $ q( 1, m-k+1 ), lda )
210  IF( k.GT.1 )
211  $ CALL clacpy( 'Upper', k-1, k-1, af( m-k+1, n-k+2 ), lda,
212  $ q( m-k+1, m-k+2 ), lda )
213 *
214 * Generate the m-by-m matrix Q
215 *
216  srnamt = 'CUNGQL'
217  CALL cungql( m, m, k, q, lda, tau( minmn-k+1 ), work, lwork,
218  $ info )
219 *
220  DO 30 iside = 1, 2
221  IF( iside.EQ.1 ) THEN
222  side = 'L'
223  mc = m
224  nc = n
225  ELSE
226  side = 'R'
227  mc = n
228  nc = m
229  END IF
230 *
231 * Generate MC by NC matrix C
232 *
233  DO 10 j = 1, nc
234  CALL clarnv( 2, iseed, mc, c( 1, j ) )
235  10 CONTINUE
236  cnorm = clange( '1', mc, nc, c, lda, rwork )
237  IF( cnorm.EQ.zero )
238  $ cnorm = one
239 *
240  DO 20 itrans = 1, 2
241  IF( itrans.EQ.1 ) THEN
242  trans = 'N'
243  ELSE
244  trans = 'C'
245  END IF
246 *
247 * Copy C
248 *
249  CALL clacpy( 'Full', mc, nc, c, lda, cc, lda )
250 *
251 * Apply Q or Q' to C
252 *
253  srnamt = 'CUNMQL'
254  IF( k.GT.0 )
255  $ CALL cunmql( side, trans, mc, nc, k, af( 1, n-k+1 ),
256  $ lda, tau( minmn-k+1 ), cc, lda, work,
257  $ lwork, info )
258 *
259 * Form explicit product and subtract
260 *
261  IF( lsame( side, 'L' ) ) THEN
262  CALL cgemm( trans, 'No transpose', mc, nc, mc,
263  $ cmplx( -one ), q, lda, c, lda, cmplx( one ),
264  $ cc, lda )
265  ELSE
266  CALL cgemm( 'No transpose', trans, mc, nc, nc,
267  $ cmplx( -one ), c, lda, q, lda, cmplx( one ),
268  $ cc, lda )
269  END IF
270 *
271 * Compute error in the difference
272 *
273  resid = clange( '1', mc, nc, cc, lda, rwork )
274  result( ( iside-1 )*2+itrans ) = resid /
275  $ ( REAL( MAX( 1, M ) )*cnorm*eps )
276 *
277  20 CONTINUE
278  30 CONTINUE
279 *
280  RETURN
281 *
282 * End of CQLT03
283 *
284  END
subroutine clarnv(IDIST, ISEED, N, X)
CLARNV returns a vector of random numbers from a uniform or normal distribution.
Definition: clarnv.f:101
subroutine claset(UPLO, M, N, ALPHA, BETA, A, LDA)
CLASET initializes the off-diagonal elements and the diagonal elements of a matrix to given values...
Definition: claset.f:108
subroutine cqlt03(M, N, K, AF, C, CC, Q, LDA, TAU, WORK, LWORK, RWORK, RESULT)
CQLT03
Definition: cqlt03.f:138
subroutine clacpy(UPLO, M, N, A, LDA, B, LDB)
CLACPY copies all or part of one two-dimensional array to another.
Definition: clacpy.f:105
subroutine cungql(M, N, K, A, LDA, TAU, WORK, LWORK, INFO)
CUNGQL
Definition: cungql.f:130
subroutine cunmql(SIDE, TRANS, M, N, K, A, LDA, TAU, C, LDC, WORK, LWORK, INFO)
CUNMQL
Definition: cunmql.f:170
subroutine cgemm(TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB, BETA, C, LDC)
CGEMM
Definition: cgemm.f:189