1 SUBROUTINE ZQLT01( M, N, A, AF, Q, L, LDA, TAU, WORK, LWORK,
2 $ RWORK, RESULT )
3 *
4 * -- LAPACK test routine (version 3.1) --
5 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
6 * November 2006
7 *
8 * .. Scalar Arguments ..
9 INTEGER LDA, LWORK, M, N
10 * ..
11 * .. Array Arguments ..
12 DOUBLE PRECISION RESULT( * ), RWORK( * )
13 COMPLEX*16 A( LDA, * ), AF( LDA, * ), L( LDA, * ),
14 $ Q( LDA, * ), TAU( * ), WORK( LWORK )
15 * ..
16 *
17 * Purpose
18 * =======
19 *
20 * ZQLT01 tests ZGEQLF, which computes the QL factorization of an m-by-n
21 * matrix A, and partially tests ZUNGQL which forms the m-by-m
22 * orthogonal matrix Q.
23 *
24 * ZQLT01 compares L with Q'*A, and checks that Q is orthogonal.
25 *
26 * Arguments
27 * =========
28 *
29 * M (input) INTEGER
30 * The number of rows of the matrix A. M >= 0.
31 *
32 * N (input) INTEGER
33 * The number of columns of the matrix A. N >= 0.
34 *
35 * A (input) COMPLEX*16 array, dimension (LDA,N)
36 * The m-by-n matrix A.
37 *
38 * AF (output) COMPLEX*16 array, dimension (LDA,N)
39 * Details of the QL factorization of A, as returned by ZGEQLF.
40 * See ZGEQLF for further details.
41 *
42 * Q (output) COMPLEX*16 array, dimension (LDA,M)
43 * The m-by-m orthogonal matrix Q.
44 *
45 * L (workspace) COMPLEX*16 array, dimension (LDA,max(M,N))
46 *
47 * LDA (input) INTEGER
48 * The leading dimension of the arrays A, AF, Q and R.
49 * LDA >= max(M,N).
50 *
51 * TAU (output) COMPLEX*16 array, dimension (min(M,N))
52 * The scalar factors of the elementary reflectors, as returned
53 * by ZGEQLF.
54 *
55 * WORK (workspace) COMPLEX*16 array, dimension (LWORK)
56 *
57 * LWORK (input) INTEGER
58 * The dimension of the array WORK.
59 *
60 * RWORK (workspace) DOUBLE PRECISION array, dimension (M)
61 *
62 * RESULT (output) DOUBLE PRECISION array, dimension (2)
63 * The test ratios:
64 * RESULT(1) = norm( L - Q'*A ) / ( M * norm(A) * EPS )
65 * RESULT(2) = norm( I - Q'*Q ) / ( M * EPS )
66 *
67 * =====================================================================
68 *
69 * .. Parameters ..
70 DOUBLE PRECISION ZERO, ONE
71 PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 )
72 COMPLEX*16 ROGUE
73 PARAMETER ( ROGUE = ( -1.0D+10, -1.0D+10 ) )
74 * ..
75 * .. Local Scalars ..
76 INTEGER INFO, MINMN
77 DOUBLE PRECISION ANORM, EPS, RESID
78 * ..
79 * .. External Functions ..
80 DOUBLE PRECISION DLAMCH, ZLANGE, ZLANSY
81 EXTERNAL DLAMCH, ZLANGE, ZLANSY
82 * ..
83 * .. External Subroutines ..
84 EXTERNAL ZGEMM, ZGEQLF, ZHERK, ZLACPY, ZLASET, ZUNGQL
85 * ..
86 * .. Intrinsic Functions ..
87 INTRINSIC DBLE, DCMPLX, MAX, MIN
88 * ..
89 * .. Scalars in Common ..
90 CHARACTER*32 SRNAMT
91 * ..
92 * .. Common blocks ..
93 COMMON / SRNAMC / SRNAMT
94 * ..
95 * .. Executable Statements ..
96 *
97 MINMN = MIN( M, N )
98 EPS = DLAMCH( 'Epsilon' )
99 *
100 * Copy the matrix A to the array AF.
101 *
102 CALL ZLACPY( 'Full', M, N, A, LDA, AF, LDA )
103 *
104 * Factorize the matrix A in the array AF.
105 *
106 SRNAMT = 'ZGEQLF'
107 CALL ZGEQLF( M, N, AF, LDA, TAU, WORK, LWORK, INFO )
108 *
109 * Copy details of Q
110 *
111 CALL ZLASET( 'Full', M, M, ROGUE, ROGUE, Q, LDA )
112 IF( M.GE.N ) THEN
113 IF( N.LT.M .AND. N.GT.0 )
114 $ CALL ZLACPY( 'Full', M-N, N, AF, LDA, Q( 1, M-N+1 ), LDA )
115 IF( N.GT.1 )
116 $ CALL ZLACPY( 'Upper', N-1, N-1, AF( M-N+1, 2 ), LDA,
117 $ Q( M-N+1, M-N+2 ), LDA )
118 ELSE
119 IF( M.GT.1 )
120 $ CALL ZLACPY( 'Upper', M-1, M-1, AF( 1, N-M+2 ), LDA,
121 $ Q( 1, 2 ), LDA )
122 END IF
123 *
124 * Generate the m-by-m matrix Q
125 *
126 SRNAMT = 'ZUNGQL'
127 CALL ZUNGQL( M, M, MINMN, Q, LDA, TAU, WORK, LWORK, INFO )
128 *
129 * Copy L
130 *
131 CALL ZLASET( 'Full', M, N, DCMPLX( ZERO ), DCMPLX( ZERO ), L,
132 $ LDA )
133 IF( M.GE.N ) THEN
134 IF( N.GT.0 )
135 $ CALL ZLACPY( 'Lower', N, N, AF( M-N+1, 1 ), LDA,
136 $ L( M-N+1, 1 ), LDA )
137 ELSE
138 IF( N.GT.M .AND. M.GT.0 )
139 $ CALL ZLACPY( 'Full', M, N-M, AF, LDA, L, LDA )
140 IF( M.GT.0 )
141 $ CALL ZLACPY( 'Lower', M, M, AF( 1, N-M+1 ), LDA,
142 $ L( 1, N-M+1 ), LDA )
143 END IF
144 *
145 * Compute L - Q'*A
146 *
147 CALL ZGEMM( 'Conjugate transpose', 'No transpose', M, N, M,
148 $ DCMPLX( -ONE ), Q, LDA, A, LDA, DCMPLX( ONE ), L,
149 $ LDA )
150 *
151 * Compute norm( L - Q'*A ) / ( M * norm(A) * EPS ) .
152 *
153 ANORM = ZLANGE( '1', M, N, A, LDA, RWORK )
154 RESID = ZLANGE( '1', M, N, L, LDA, RWORK )
155 IF( ANORM.GT.ZERO ) THEN
156 RESULT( 1 ) = ( ( RESID / DBLE( MAX( 1, M ) ) ) / ANORM ) / EPS
157 ELSE
158 RESULT( 1 ) = ZERO
159 END IF
160 *
161 * Compute I - Q'*Q
162 *
163 CALL ZLASET( 'Full', M, M, DCMPLX( ZERO ), DCMPLX( ONE ), L, LDA )
164 CALL ZHERK( 'Upper', 'Conjugate transpose', M, M, -ONE, Q, LDA,
165 $ ONE, L, LDA )
166 *
167 * Compute norm( I - Q'*Q ) / ( M * EPS ) .
168 *
169 RESID = ZLANSY( '1', 'Upper', M, L, LDA, RWORK )
170 *
171 RESULT( 2 ) = ( RESID / DBLE( MAX( 1, M ) ) ) / EPS
172 *
173 RETURN
174 *
175 * End of ZQLT01
176 *
177 END
2 $ RWORK, RESULT )
3 *
4 * -- LAPACK test routine (version 3.1) --
5 * Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
6 * November 2006
7 *
8 * .. Scalar Arguments ..
9 INTEGER LDA, LWORK, M, N
10 * ..
11 * .. Array Arguments ..
12 DOUBLE PRECISION RESULT( * ), RWORK( * )
13 COMPLEX*16 A( LDA, * ), AF( LDA, * ), L( LDA, * ),
14 $ Q( LDA, * ), TAU( * ), WORK( LWORK )
15 * ..
16 *
17 * Purpose
18 * =======
19 *
20 * ZQLT01 tests ZGEQLF, which computes the QL factorization of an m-by-n
21 * matrix A, and partially tests ZUNGQL which forms the m-by-m
22 * orthogonal matrix Q.
23 *
24 * ZQLT01 compares L with Q'*A, and checks that Q is orthogonal.
25 *
26 * Arguments
27 * =========
28 *
29 * M (input) INTEGER
30 * The number of rows of the matrix A. M >= 0.
31 *
32 * N (input) INTEGER
33 * The number of columns of the matrix A. N >= 0.
34 *
35 * A (input) COMPLEX*16 array, dimension (LDA,N)
36 * The m-by-n matrix A.
37 *
38 * AF (output) COMPLEX*16 array, dimension (LDA,N)
39 * Details of the QL factorization of A, as returned by ZGEQLF.
40 * See ZGEQLF for further details.
41 *
42 * Q (output) COMPLEX*16 array, dimension (LDA,M)
43 * The m-by-m orthogonal matrix Q.
44 *
45 * L (workspace) COMPLEX*16 array, dimension (LDA,max(M,N))
46 *
47 * LDA (input) INTEGER
48 * The leading dimension of the arrays A, AF, Q and R.
49 * LDA >= max(M,N).
50 *
51 * TAU (output) COMPLEX*16 array, dimension (min(M,N))
52 * The scalar factors of the elementary reflectors, as returned
53 * by ZGEQLF.
54 *
55 * WORK (workspace) COMPLEX*16 array, dimension (LWORK)
56 *
57 * LWORK (input) INTEGER
58 * The dimension of the array WORK.
59 *
60 * RWORK (workspace) DOUBLE PRECISION array, dimension (M)
61 *
62 * RESULT (output) DOUBLE PRECISION array, dimension (2)
63 * The test ratios:
64 * RESULT(1) = norm( L - Q'*A ) / ( M * norm(A) * EPS )
65 * RESULT(2) = norm( I - Q'*Q ) / ( M * EPS )
66 *
67 * =====================================================================
68 *
69 * .. Parameters ..
70 DOUBLE PRECISION ZERO, ONE
71 PARAMETER ( ZERO = 0.0D+0, ONE = 1.0D+0 )
72 COMPLEX*16 ROGUE
73 PARAMETER ( ROGUE = ( -1.0D+10, -1.0D+10 ) )
74 * ..
75 * .. Local Scalars ..
76 INTEGER INFO, MINMN
77 DOUBLE PRECISION ANORM, EPS, RESID
78 * ..
79 * .. External Functions ..
80 DOUBLE PRECISION DLAMCH, ZLANGE, ZLANSY
81 EXTERNAL DLAMCH, ZLANGE, ZLANSY
82 * ..
83 * .. External Subroutines ..
84 EXTERNAL ZGEMM, ZGEQLF, ZHERK, ZLACPY, ZLASET, ZUNGQL
85 * ..
86 * .. Intrinsic Functions ..
87 INTRINSIC DBLE, DCMPLX, MAX, MIN
88 * ..
89 * .. Scalars in Common ..
90 CHARACTER*32 SRNAMT
91 * ..
92 * .. Common blocks ..
93 COMMON / SRNAMC / SRNAMT
94 * ..
95 * .. Executable Statements ..
96 *
97 MINMN = MIN( M, N )
98 EPS = DLAMCH( 'Epsilon' )
99 *
100 * Copy the matrix A to the array AF.
101 *
102 CALL ZLACPY( 'Full', M, N, A, LDA, AF, LDA )
103 *
104 * Factorize the matrix A in the array AF.
105 *
106 SRNAMT = 'ZGEQLF'
107 CALL ZGEQLF( M, N, AF, LDA, TAU, WORK, LWORK, INFO )
108 *
109 * Copy details of Q
110 *
111 CALL ZLASET( 'Full', M, M, ROGUE, ROGUE, Q, LDA )
112 IF( M.GE.N ) THEN
113 IF( N.LT.M .AND. N.GT.0 )
114 $ CALL ZLACPY( 'Full', M-N, N, AF, LDA, Q( 1, M-N+1 ), LDA )
115 IF( N.GT.1 )
116 $ CALL ZLACPY( 'Upper', N-1, N-1, AF( M-N+1, 2 ), LDA,
117 $ Q( M-N+1, M-N+2 ), LDA )
118 ELSE
119 IF( M.GT.1 )
120 $ CALL ZLACPY( 'Upper', M-1, M-1, AF( 1, N-M+2 ), LDA,
121 $ Q( 1, 2 ), LDA )
122 END IF
123 *
124 * Generate the m-by-m matrix Q
125 *
126 SRNAMT = 'ZUNGQL'
127 CALL ZUNGQL( M, M, MINMN, Q, LDA, TAU, WORK, LWORK, INFO )
128 *
129 * Copy L
130 *
131 CALL ZLASET( 'Full', M, N, DCMPLX( ZERO ), DCMPLX( ZERO ), L,
132 $ LDA )
133 IF( M.GE.N ) THEN
134 IF( N.GT.0 )
135 $ CALL ZLACPY( 'Lower', N, N, AF( M-N+1, 1 ), LDA,
136 $ L( M-N+1, 1 ), LDA )
137 ELSE
138 IF( N.GT.M .AND. M.GT.0 )
139 $ CALL ZLACPY( 'Full', M, N-M, AF, LDA, L, LDA )
140 IF( M.GT.0 )
141 $ CALL ZLACPY( 'Lower', M, M, AF( 1, N-M+1 ), LDA,
142 $ L( 1, N-M+1 ), LDA )
143 END IF
144 *
145 * Compute L - Q'*A
146 *
147 CALL ZGEMM( 'Conjugate transpose', 'No transpose', M, N, M,
148 $ DCMPLX( -ONE ), Q, LDA, A, LDA, DCMPLX( ONE ), L,
149 $ LDA )
150 *
151 * Compute norm( L - Q'*A ) / ( M * norm(A) * EPS ) .
152 *
153 ANORM = ZLANGE( '1', M, N, A, LDA, RWORK )
154 RESID = ZLANGE( '1', M, N, L, LDA, RWORK )
155 IF( ANORM.GT.ZERO ) THEN
156 RESULT( 1 ) = ( ( RESID / DBLE( MAX( 1, M ) ) ) / ANORM ) / EPS
157 ELSE
158 RESULT( 1 ) = ZERO
159 END IF
160 *
161 * Compute I - Q'*Q
162 *
163 CALL ZLASET( 'Full', M, M, DCMPLX( ZERO ), DCMPLX( ONE ), L, LDA )
164 CALL ZHERK( 'Upper', 'Conjugate transpose', M, M, -ONE, Q, LDA,
165 $ ONE, L, LDA )
166 *
167 * Compute norm( I - Q'*Q ) / ( M * EPS ) .
168 *
169 RESID = ZLANSY( '1', 'Upper', M, L, LDA, RWORK )
170 *
171 RESULT( 2 ) = ( RESID / DBLE( MAX( 1, M ) ) ) / EPS
172 *
173 RETURN
174 *
175 * End of ZQLT01
176 *
177 END