|
|
| |
| # lines: |
425 | | # code: |
425 | | # comment: | 0 | |
# blank: | 0 |
| # Variables: | 51 |
| # Callers: | 2 |
| # Callings: | 2 |
| # Words: | 165 |
| # Keywords: | 94 |
|
|
|
|
|
..
.. Array Arguments ..
..
Purpose
=======
PSSYTRD reduces a real symmetric matrix sub( A ) to symmetric
tridiagonal form T by an orthogonal similarity transformation:
Q' * sub( A ) * Q = T, where sub( A ) = A(IA:IA+N-1,JA:JA+N-1).
Notes
=====
Each global data object is described by an associated description
vector. This vector stores the information required to establish
the mapping between an object element and its corresponding process
and memory location.
Let A be a generic term for any 2D block cyclicly distributed array.
Such a global array has an associated description vector DESCA.
In the following comments, the character _ should be read as
"of the global array".
NOTATION STORED IN EXPLANATION
--------------- -------------- --------------------------------------
DTYPE_A(global) DESCA( DTYPE_ )The descriptor type. In this case,
DTYPE_A = 1.
CTXT_A (global) DESCA( CTXT_ ) The BLACS context handle, indicating
the BLACS process grid A is distribu-
ted over. The context itself is glo-
bal, but the handle (the integer
value) may vary.
M_A (global) DESCA( M_ ) The number of rows in the global
array A.
N_A (global) DESCA( N_ ) The number of columns in the global
array A.
MB_A (global) DESCA( MB_ ) The blocking factor used to distribute
the rows of the array.
NB_A (global) DESCA( NB_ ) The blocking factor used to distribute
the columns of the array.
RSRC_A (global) DESCA( RSRC_ ) The process row over which the first
row of the array A is distributed.
CSRC_A (global) DESCA( CSRC_ ) The process column over which the
first column of the array A is
distributed.
LLD_A (local) DESCA( LLD_ ) The leading dimension of the local
array. LLD_A >= MAX(1,LOCr(M_A)).
Let K be the number of rows or columns of a distributed matrix,
and assume that its process grid has dimension p x q.
LOCr( K ) denotes the number of elements of K that a process
would receive if K were distributed over the p processes of its
process column.
Similarly, LOCc( K ) denotes the number of elements of K that a
process would receive if K were distributed over the q processes of
its process row.
The values of LOCr() and LOCc() may be determined via a call to the
ScaLAPACK tool function, NUMROC:
LOCr( M ) = NUMROC( M, MB_A, MYROW, RSRC_A, NPROW ),
LOCc( N ) = NUMROC( N, NB_A, MYCOL, CSRC_A, NPCOL ).
An upper bound for these quantities may be computed by:
LOCr( M ) <= ceil( ceil(M/MB_A)/NPROW )*MB_A
LOCc( N ) <= ceil( ceil(N/NB_A)/NPCOL )*NB_A
Arguments
=========
UPLO (global input) CHARACTER
Specifies whether the upper or lower triangular part of the
symmetric matrix sub( A ) is stored:
= 'U': Upper triangular
= 'L': Lower triangular
N (global input) INTEGER
The number of rows and columns to be operated on, i.e. the
order of the distributed submatrix sub( A ). N >= 0.
A (local input/local output) REAL pointer into the
local memory to an array of dimension (LLD_A,LOCc(JA+N-1)).
On entry, this array contains the local pieces of the
symmetric distributed matrix sub( A ). If UPLO = 'U', the
leading N-by-N upper triangular part of sub( A ) contains
the upper triangular part of the matrix, and its strictly
lower triangular part is not referenced. If UPLO = 'L', the
leading N-by-N lower triangular part of sub( A ) contains the
lower triangular part of the matrix, and its strictly upper
triangular part is not referenced. On exit, if UPLO = 'U',
the diagonal and first superdiagonal of sub( A ) are over-
written by the corresponding elements of the tridiagonal
matrix T, and the elements above the first superdiagonal,
with the array TAU, represent the orthogonal matrix Q as a
product of elementary reflectors; if UPLO = 'L', the diagonal
and first subdiagonal of sub( A ) are overwritten by the
corresponding elements of the tridiagonal matrix T, and the
elements below the first subdiagonal, with the array TAU,
represent the orthogonal matrix Q as a product of elementary
reflectors. See Further Details.
IA (global input) INTEGER
The row index in the global array A indicating the first
row of sub( A ).
JA (global input) INTEGER
The column index in the global array A indicating the
first column of sub( A ).
DESCA (global and local input) INTEGER array of dimension DLEN_.
The array descriptor for the distributed matrix A.
D (local output) REAL array, dimension LOCc(JA+N-1)
The diagonal elements of the tridiagonal matrix T:
D(i) = A(i,i). D is tied to the distributed matrix A.
E (local output) REAL array, dimension LOCc(JA+N-1)
if UPLO = 'U', LOCc(JA+N-2) otherwise. The off-diagonal
elements of the tridiagonal matrix T: E(i) = A(i,i+1) if
UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'. E is tied to the
distributed matrix A.
TAU (local output) REAL, array, dimension
LOCc(JA+N-1). This array contains the scalar factors TAU of
the elementary reflectors. TAU is tied to the distributed
matrix A.
WORK (local workspace/local output) REAL array,
dimension (LWORK)
On exit, WORK( 1 ) returns the minimal and optimal LWORK.
LWORK (local or global input) INTEGER
The dimension of the array WORK.
LWORK is local input and must be at least
LWORK >= MAX( NB * ( NP +1 ), 3 * NB )
where NB = MB_A = NB_A,
NP = NUMROC( N, NB, MYROW, IAROW, NPROW ),
IAROW = INDXG2P( IA, NB, MYROW, RSRC_A, NPROW ).
INDXG2P and NUMROC are ScaLAPACK tool functions;
MYROW, MYCOL, NPROW and NPCOL can be determined by calling
the subroutine BLACS_GRIDINFO.
If LWORK = -1, then LWORK is global input and a workspace
query is assumed; the routine only calculates the minimum
and optimal size for all work arrays. Each of these
values is returned in the first entry of the corresponding
work array, and no error message is issued by PXERBLA.
INFO (global output) INTEGER
= 0: successful exit
< 0: If the i-th argument is an array and the j-entry had
an illegal value, then INFO = -(i*100+j), if the i-th
argument is a scalar and had an illegal value, then
INFO = -i.
Further Details
===============
If UPLO = 'U', the matrix Q is represented as a product of elementary
reflectors
Q = H(n-1) . . . H(2) H(1).
Each H(i) has the form
H(i) = I - tau * v * v'
where tau is a real scalar, and v is a real vector with
v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in
A(ia:ia+i-2,ja+i), and tau in TAU(ja+i-1).
If UPLO = 'L', the matrix Q is represented as a product of elementary
reflectors
Q = H(1) H(2) . . . H(n-1).
Each H(i) has the form
H(i) = I - tau * v * v'
where tau is a real scalar, and v is a real vector with
v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in
A(ia+i+1:ia+n-1,ja+i-1), and tau in TAU(ja+i-1).
The contents of sub( A ) on exit are illustrated by the following
examples with n = 5:
if UPLO = 'U': if UPLO = 'L':
( d e v2 v3 v4 ) ( d )
( d e v3 v4 ) ( e d )
( d e v4 ) ( v1 e d )
( d e ) ( v1 v2 e d )
( d ) ( v1 v2 v3 e d )
where d and e denote diagonal and off-diagonal elements of T, and vi
denotes an element of the vector defining H(i).
Alignment requirements
======================
The distributed submatrix sub( A ) must verify some alignment proper-
ties, namely the following expression should be true:
( MB_A.EQ.NB_A .AND. IROFFA.EQ.ICOFFA .AND. IROFFA.EQ.0 ) with
IROFFA = MOD( IA-1, MB_A ) and ICOFFA = MOD( JA-1, NB_A ).
=====================================================================
.. Parameters ..
|
|
|
|
001 SUBROUTINE PSSYTRD( UPLO , N , A , IA , JA , DESCA , D , E , TAU , WORK ,
002 $LWORK , INFO )
003
004 * -- ScaLAPACK routine(version 1.7) --
005 * University of Tennessee , Knoxville , Oak Ridge National Laboratory ,
006 * and University of California , Berkeley.
007 * May 25 , 2001
008
009 * .. Scalar Arguments ..
010 CHARACTER UPLO
011 INTEGER IA , INFO , JA , LWORK , N
012 INTEGER BLOCK_CYCLIC_2D , CSRC_ , CTXT_ , DLEN_ , DTYPE_ ,
013 $LLD_ , MB_ , M_ , NB_ , N_ , RSRC_
014 PARAMETER( BLOCK_CYCLIC_2D = 1 , DLEN_ = 9 , DTYPE_ = 1 ,
015 $CTXT_ = 2 , M_ = 3 , N_ = 4 , MB_ = 5 , NB_ = 6 ,
016 $RSRC_ = 7 , CSRC_ = 8 , LLD_ = 9 )
017 REAL ONE
018 PARAMETER( ONE = 1.0E + 0 )
019 * ..
020 * .. Local Scalars ..
021 LOGICAL LQUERY , UPPER
022 CHARACTER COLCTOP , ROWCTOP
023 INTEGER I , IACOL , IAROW , ICOFFA , ICTXT , IINFO , IPW ,
024 $IROFFA , J , JB , JX , K , KK , LWMIN , MYCOL , MYROW ,
025 $NB , NP , NPCOL , NPROW , NQ
026 * ..
027 * .. Local Arrays ..
028 INTEGER DESCW( DLEN_ ) , IDUM1( 2 ) , IDUM2( 2 )
029 * ..
030 * .. External Subroutines ..
031 EXTERNAL BLACS_GRIDINFO , CHK1MAT , DESCSET , PCHK1MAT ,
032 $PSLATRD , PSSYR2K , PSSYTD2 , PB_TOPGET ,
033 $PB_TOPSET , PXERBLA
034 * ..
035 * .. External Functions ..
036 LOGICAL LSAME
037 INTEGER INDXG2L , INDXG2P , NUMROC
038 EXTERNAL LSAME , INDXG2L , INDXG2P , NUMROC
039 * ..
040 * .. Intrinsic Functions ..
041 INTRINSIC ICHAR , MAX , MIN , MOD , REAL
042 * ..
043 * .. Executable Statements ..
044
045 * Get grid parameters
046
047 ICTXT = DESCA( CTXT_ )
048 CALL BLACS_GRIDINFO( ICTXT , NPROW , NPCOL , MYROW , MYCOL )
049
050 * Test the input parameters
051
052 INFO = 0
053 IF( NPROW.EQ. - 1 ) THEN
053
054 INFO = - (600 + CTXT_)
055 ELSE
055
056 CALL CHK1MAT( N , 2 , N , 2 , IA , JA , DESCA , 6 , INFO )
057 UPPER = LSAME( UPLO , 'U' )
058 IF( INFO.EQ.0 ) THEN
058
059 NB = DESCA( NB_ )
060 IROFFA = MOD( IA - 1 , DESCA( MB_ ) )
061 ICOFFA = MOD( JA - 1 , DESCA( NB_ ) )
062 IAROW = INDXG2P( IA , NB , MYROW , DESCA( RSRC_ ) , NPROW )
063 IACOL = INDXG2P( JA , NB , MYCOL , DESCA( CSRC_ ) , NPCOL )
064 NP = NUMROC( N , NB , MYROW , IAROW , NPROW )
065 NQ = MAX( 1 , NUMROC( N + JA - 1 , NB , MYCOL , DESCA( CSRC_ ) ,
066 $ NPCOL ) )
067 LWMIN = MAX((NP + 1)*NB , 3*NB )
068
069 WORK( 1 ) = REAL( LWMIN )
070 LQUERY =( LWORK.EQ. - 1 )
071 IF( .NOT.UPPER .AND. .NOT.LSAME( UPLO , 'L' ) ) THEN
071
072 INFO = - 1
073 ELSE IF( IROFFA.NE.ICOFFA .OR. ICOFFA.NE.0 ) THEN
073
074 INFO = - 5
075 ELSE IF( DESCA( MB_ ).NE.DESCA( NB_ ) ) THEN
075
076 INFO = - (600 + NB_)
077 ELSE IF( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) THEN
077
078 INFO = - 11
079 END IF
080 END IF
081 IF( UPPER ) THEN
081
082 IDUM1( 1 ) = ICHAR( 'U' )
083 ELSE
083
084 IDUM1( 1 ) = ICHAR( 'L' )
085 END IF
086 IDUM2( 1 ) = 1
087 IF( LWORK.EQ. - 1 ) THEN
087
088 IDUM1( 2 ) = - 1
089 ELSE
089
090 IDUM1( 2 ) = 1
091 END IF
092 IDUM2( 2 ) = 11
093 CALL PCHK1MAT( N , 2 , N , 2 , IA , JA , DESCA , 6 , 2 , IDUM1 , IDUM2 ,
094 $ INFO )
095 END IF
096
097 IF( INFO.NE.0 ) THEN
097
098 CALL PXERBLA( ICTXT , 'PSSYTRD' , - INFO )
099 RETURN
100 ELSE IF( LQUERY ) THEN
100
101 RETURN
102 END IF
103
104 * Quick return if possible
105
106 IF( N.EQ.0 )
106
107 $ RETURN
108
109 CALL PB_TOPGET( ICTXT , 'Combine' , 'Columnwise' , COLCTOP )
110 CALL PB_TOPGET( ICTXT , 'Combine' , 'Rowwise' , ROWCTOP )
111 CALL PB_TOPSET( ICTXT , 'Combine' , 'Columnwise' , '1 - tree' )
112 CALL PB_TOPSET( ICTXT , 'Combine' , 'Rowwise' , '1 - tree' )
113
114 IPW = NP * NB + 1
115
116 IF( UPPER ) THEN
117
118 * Reduce the upper triangle of sub( A ).
119
119
120 KK = MOD( JA + N - 1 , NB )
121 IF( KK.EQ.0 )
121
122 $ KK = NB
123 CALL DESCSET( DESCW , N , NB , NB , NB , IAROW , INDXG2P( JA + N - KK ,
124 $ NB , MYCOL , DESCA( CSRC_ ) , NPCOL ) , ICTXT ,
125 $ MAX( 1 , NP ) )
126
127 DO 10 K = N - KK + 1 , NB + 1 , - NB
127
128 JB = MIN( N - K + 1 , NB )
129 I = IA + K - 1
130 J = JA + K - 1
131
132 * Reduce columns I : I + NB - 1 to tridiagonal form and form
133 * the matrix W which is needed to update the unreduced part of
134 * the matrix
135
136 CALL PSLATRD ( UPLO , K + JB - 1 , JB , A , IA , JA , DESCA , D , E , TAU ,
137 $ WORK , 1 , 1 , DESCW , WORK( IPW ) )
138
139 * Update the unreduced submatrix A(IA : I - 1 , JA : J - 1) , using an
140 * update of the form :
141 * A(IA : I - 1 , JA : J - 1) := A(IA : I - 1 , JA : J - 1) - V*W' - W*V'
142
143 CALL PSSYR2K( UPLO , 'No transpose' , K - 1 , JB , - ONE , A , IA , J ,
144 $ DESCA , WORK , 1 , 1 , DESCW , ONE , A , IA , JA ,
145 $ DESCA )
146
147 * Copy last superdiagonal element back into sub( A )
148
149 JX = MIN( INDXG2L( J , NB , 0 , IACOL , NPCOL ) , NQ )
150 CALL PSELSET( A , I - 1 , J , DESCA , E( JX ) )
151
152 DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + NPCOL - 1 , NPCOL )
153
154 10 CONTINUE
155
156 * Use unblocked code to reduce the last or only block
157
157
158 CALL PSSYTD2 ( UPLO , MIN( N , NB ) , A , IA , JA , DESCA , D , E ,
159 $ TAU , WORK , LWORK , IINFO )
160
161 ELSE
162
163 * Reduce the lower triangle of sub( A )
164
164
165 KK = MOD( JA + N - 1 , NB )
166 IF( KK.EQ.0 )
166
167 $ KK = NB
168 CALL DESCSET( DESCW , N , NB , NB , NB , IAROW , IACOL , ICTXT ,
169 $ MAX( 1 , NP ) )
170
171 DO 20 K = 1 , N - NB , NB
171
172 I = IA + K - 1
173 J = JA + K - 1
174
175 * Reduce columns I : I + NB - 1 to tridiagonal form and form
176 * the matrix W which is needed to update the unreduced part
177 * of the matrix
178
179 CALL PSLATRD ( UPLO , N - K + 1 , NB , A , I , J , DESCA , D , E , TAU ,
180 $ WORK , K , 1 , DESCW , WORK( IPW ) )
181
182 * Update the unreduced submatrix A(I + NB : IA + N - 1 , I + NB : IA + N - 1) ,
183 * using an update of the form : A(I + NB : IA + N - 1 , I + NB : IA + N - 1) :=
184 * A(I + NB : IA + N - 1 , I + NB : IA + N - 1) - V*W' - W*V'
185
186 CALL PSSYR2K( UPLO , 'No transpose' , N - K - NB + 1 , NB , - ONE , A ,
187 $ I + NB , J , DESCA , WORK , K + NB , 1 , DESCW , ONE , A ,
188 $ I + NB , J + NB , DESCA )
189
190 * Copy last subdiagonal element back into sub( A )
191
192 JX = MIN( INDXG2L( J + NB - 1 , NB , 0 , IACOL , NPCOL ) , NQ )
193 CALL PSELSET( A , I + NB , J + NB - 1 , DESCA , E( JX ) )
194
195 DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + 1 , NPCOL )
196
197 20 CONTINUE
198
199 * Use unblocked code to reduce the last or only block
200
200
201 CALL PSSYTD2 ( UPLO , KK , A , IA + K - 1 , JA + K - 1 , DESCA , D , E ,
202 $ TAU , WORK , LWORK , IINFO )
203 END IF
204
205 CALL PB_TOPSET( ICTXT , 'Combine' , 'Columnwise' , COLCTOP )
206 CALL PB_TOPSET( ICTXT , 'Combine' , 'Rowwise' , ROWCTOP )
207
208 WORK( 1 ) = REAL( LWMIN )
209
210 RETURN
211
212 * End of PSSYTRD
213
214 END45
22
|
|
Variables in Routine PSSYTRD()
| Summary Report |
| Data Type | Quantity | Size(byte) |
| CHARACTER | 3 | 3 |
| INTEGER | 43 | 184 |
| LOGICAL | 3 | 3 |
| REAL | 2 | 8 |
| TOTAL | 51 | 198 |
List of Variables
CHARACTER
INTEGER
| BLOCK_CYCLIC_2D | CSRC_ | CTXT_ | DESCW( DLEN_ ) | DLEN_ |
| DTYPE_ | I | IA | IACOL | IAROW |
| ICOFFA | ICTXT | IDUM1( 2 ) | IDUM2( 2 ) | IINFO |
| INDXG2L | INDXG2P | INFO | IPW | IROFFA |
| J | JA | JB | JX | K |
| KK | LLD_ | LWMIN | LWORK | M_ |
| MB_ | MYCOL | MYROW | N | N_ |
| NB | NB_ | NP | NPCOL | NPROW |
| NQ | NUMROC | RSRC_ | | |
LOGICAL
REAL
Variables Dependence Graph Put the mouse over a right hand side variable to display the corresponding line of the dependence | | - | | - | - | | DESCW | <--- | CSRC_DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + NPCOL - 1, NPCOL ){2DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + 1, NPCOL )}, NPCOLDESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + NPCOL - 1, NPCOL ){2DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + 1, NPCOL )}, DESCWDESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + NPCOL - 1, NPCOL ){2DESCW( CSRC_ ) = MOD( DESCW( CSRC_ ) + 1, NPCOL )} |
| I | <--- | KI = IA + K - 1{2I = IA + K - 1}, IAI = IA + K - 1{2I = IA + K - 1} |
| IACOL | <--- | INDXG2PIACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ), JAIACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ), CSRC_IACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ), MYCOLIACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ), NBIACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ), NPCOLIACOL = INDXG2P( JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL ) |
| IAROW | <--- | INDXG2PIAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ), MYROWIAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ), NBIAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ), NPROWIAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ), RSRC_IAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ), IAIAROW = INDXG2P( IA, NB, MYROW, DESCA( RSRC_ ), NPROW ) |
| ICOFFA | <--- | JAICOFFA = MOD( JA-1, DESCA( NB_ ) ), NB_ICOFFA = MOD( JA-1, DESCA( NB_ ) ) |
| ICTXT | <--- | CTXT_ICTXT = DESCA( CTXT_ ) |
| INFO | <--- | CTXT_INFO = -(600+CTXT_), NB_INFO = -(600+NB_) |
| IPW | <--- | NBIPW = NP * NB + 1, NPIPW = NP * NB + 1 |
| IROFFA | <--- | MB_IROFFA = MOD( IA-1, DESCA( MB_ ) ), IAIROFFA = MOD( IA-1, DESCA( MB_ ) ) |
| J | <--- | JAJ = JA + K - 1{2J = JA + K - 1}, KJ = JA + K - 1{2J = JA + K - 1} |
| JB | <--- | KJB = MIN( N-K+1, NB ), NJB = MIN( N-K+1, NB ), NBJB = MIN( N-K+1, NB ) |
| JX | <--- | IACOLJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )}, INDXG2LJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )}, JJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )}, NBJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )}, NPCOLJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )}, NQJX = MIN( INDXG2L( J, NB, 0, IACOL, NPCOL ), NQ ){2JX = MIN( INDXG2L( J+NB-1, NB, 0, IACOL, NPCOL ), NQ )} |
| K | <--- | KKDO 10 K = N-KK+1, NB+1, -NB, NDO 10 K = N-KK+1, NB+1, -NB{2DO 20 K = 1, N-NB, NB}, NBDO 10 K = N-KK+1, NB+1, -NB{2DO 20 K = 1, N-NB, NB} |
| KK | <--- | JAKK = MOD( JA+N-1, NB ){2KK = MOD( JA+N-1, NB )}, NKK = MOD( JA+N-1, NB ){2KK = MOD( JA+N-1, NB )}, NBKK = MOD( JA+N-1, NB ){2KK = MOD( JA+N-1, NB )} |
| LWMIN | <--- | NBLWMIN = MAX( (NP+1)*NB, 3*NB ), NPLWMIN = MAX( (NP+1)*NB, 3*NB ) |
| NB | <--- | NB_NB = DESCA( NB_ ) |
| NP | <--- | IAROWNP = NUMROC( N, NB, MYROW, IAROW, NPROW ), MYROWNP = NUMROC( N, NB, MYROW, IAROW, NPROW ), NNP = NUMROC( N, NB, MYROW, IAROW, NPROW ), NBNP = NUMROC( N, NB, MYROW, IAROW, NPROW ), NPROWNP = NUMROC( N, NB, MYROW, IAROW, NPROW ), NUMROCNP = NUMROC( N, NB, MYROW, IAROW, NPROW ) |
| NQ | <--- | JANQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, CSRC_NQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, MYCOLNQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, NNQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, NBNQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, NPCOLNQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ),, NUMROCNQ = MAX( 1, NUMROC( N+JA-1, NB, MYCOL, DESCA( CSRC_ ), |
| UPPER | <--- | LSAMEUPPER = LSAME( UPLO, 'U' ), UPLOUPPER = LSAME( UPLO, 'U' ) |
| WORK | <--- | LWMINWORK( 1 ) = REAL( LWMIN ){2WORK( 1 ) = REAL( LWMIN )} |
|
|
Analysis elements of the routine PSSYTRD() Put the mouse over each element to display detailed matching information
Assigned variables |
| | | BLOCK_CYCLIC_2D , CSRC_ , CTXT_ , DLEN_ , DTYPE_ , I , IACOL , IAROW , ICOFFA , ICTXT , IDUM1 , IDUM2 , INFO , IPW , IROFFA , J , JB , JX , K , KK , LLD_ , LQUERY , LWMIN , M_ , MB_ , N , N_ , NB , NB_ , NP , NQ , ONE , RSRC_ , UPPER , WORK |
|
Active variables |
| | | A , BLOCK_CYCLIC_2D , COLCTOP , CSRC_ , CTXT_ , D , DESCA , DESCW , DLEN_ , DTYPE_ , E , I , IA , IACOL , IAROW , ICOFFA , ICTXT , IDUM1 , IDUM2 , IINFO , INDXG2L , INDXG2P , INFO , IPW , IROFFA , J , JA , JB , JX , K , KK , LLD_ , LQUERY , LSAME , LWMIN , LWORK , M_ , MB_ , MYCOL , MYROW , N , N_ , NB , NB_ , NP , NPCOL , NPROW , NQ , NUMROC , ONE , ROWCTOP , RSRC_ , TAU , UPLO , UPPER , WORK |
|
Accessed arrays [ array name : associated index ] |
| | A | : I+NB:IA+N-1,I+NB:IA+N-1 , I+NB:IA+N-1,I+NB:IA+N-1 , I+NB:IA+N-1,I+NB:IA+N-1 , IA:I-1,JA:J-1 , IA:I-1,JA:J-1 |
| | DESCA | : CSRC_ , CSRC_ , CSRC_ , CTXT_ , MB_ , MB_ , NB_ , NB_ , NB_ , RSRC_ |
| | DESCW | : CSRC_ , CSRC_ , DLEN_ |
| | E | : JX , JX |
| | IDUM1 | : 1 , 1 , 2 , 2 , 2 |
| | IDUM2 | : 1 , 2 , 2 |
| | INDXG2L | : J, NB, 0, IACOL, NPCOL , J+NB-1, NB, 0, IACOL, NPCOL |
| | INDXG2P | : IA, NB, MYROW, DESCA( RSRC_ ), NPROW , JA, NB, MYCOL, DESCA( CSRC_ ), NPCOL |
| | LSAME | : UPLO, 'L' , UPLO, 'U' |
| | NUMROC | : N, NB, MYROW, IAROW, NPROW |
| | WORK | : 1 , 1 , IPW , IPW |
|
Conditional statements [ statement : associated predicate ] |
| | do | : ( 10 K = N - KK + 1 , NB + 1 , - NB ) , ( 20 K = 1 , N - NB , NB ) |
| | if | : ( NPROW.EQ. - 1 ) , ( INFO.EQ.0 ) , ( (.NOT.UPPER .AND. .NOT.LSAME( UPLO , 'L' ) ) ) , ( IROFFA.NE.ICOFFA .OR. ICOFFA.NE.0 ) , ( (DESCA( MB_ ).NE.DESCA( NB_ ) ) ) , ( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) , ( UPPER ) , ( LWORK.EQ. - 1 ) , ( INFO.NE.0 ) , ( LQUERY ) , ( possible ) , ( N.EQ.0 ) , ( UPPER ) , ( KK.EQ.0 ) , ( KK.EQ.0 ) |
|
| List of variables | BLOCK_CYCLIC_2D COLCTOP CSRC_ CTXT_ DESCW( DLEN_ ) DLEN_ DTYPE_
| I IA IACOL IAROW ICOFFA ICTXT IDUM1( 2 ) IDUM2( 2 )
| IINFO INDXG2L INDXG2P INFO IPW IROFFA J JA
| JB JX K KK LLD_ LQUERY LSAME LWMIN
| LWORK M_ MB_ MYCOL MYROW N N_ NB
| NB_ NP NPCOL NPROW NQ NUMROC ONE ROWCTOP
| RSRC_ UPLO UPPER WORK | | close
| |
BLOCK_CYCLIC_2D
COLCTOP
CSRC_
CTXT_
DESCW( DLEN_ )
DLEN_
DTYPE_
I
IA
IACOL
IAROW
ICOFFA
ICTXT
IDUM1( 2 )
IDUM2( 2 )
IINFO
INDXG2L
INDXG2P
INFO
IPW
IROFFA
J
JA
JB
JX
K
KK
LLD_
LQUERY
LSAME
LWMIN
LWORK
M_
MB_
MYCOL
MYROW
N
N_
NB
NB_
NP
NPCOL
NPROW
NQ
NUMROC
ONE
ROWCTOP
RSRC_
UPLO
UPPER
WORK
397#453
| |