Computes the QR factorization of a general m-by-n matrix.
call psgeqrf(m, n, a, ia, ja, desca, tau, work, lwork, info)
call pdgeqrf(m, n, a, ia, ja, desca, tau, work, lwork, info)
call pcgeqrf(m, n, a, ia, ja, desca, tau, work, lwork, info)
call pzgeqrf(m, n, a, ia, ja, desca, tau, work, lwork, info)
The p?geqrf routine forms the QR factorization of a general m-by-n distributed matrix sub(A)= A(ia:ia+m-1,ja:ja+n-1) as
A=Q*R
(global) INTEGER. The number of rows in the distributed submatrix sub(A); (m ≥ 0).
(global) INTEGER. The number of columns in the distributed submatrix sub(A); (n ≥ 0).
(local)
REAL for psgeqrf
DOUBLE PRECISION for pdgeqrf
COMPLEX for pcgeqrf
DOUBLE COMPLEX for pzgeqrf.
Pointer into the local memory to an array of local dimension (lld_a, LOCc(ja+n-1)).
Contains the local pieces of the distributed matrix sub(A) to be factored.
(global) INTEGER. The row and column indices in the global array a indicating the first row and the first column of the submatrix A(ia:ia+m-1,ja:ja+n-1), respectively.
(global and local) INTEGER array, dimension (dlen_). The array descriptor for the distributed matrix A
(local).
REAL for psgeqrf
DOUBLE PRECISION for pdgeqrf.
COMPLEX for pcgeqrf.
DOUBLE COMPLEX for pzgeqrf
Workspace array of dimension lwork.
(local or global) INTEGER, dimension of work, must be at least lwork ≥ nb_a * (mp0+nq0+nb_a), where
iroff = mod(ia-1, mb_a), icoff = mod(ja-1, nb_a),
iarow = indxg2p(ia, mb_a, MYROW, rsrc_a, NPROW),
iacol = indxg2p(ja, nb_a, MYCOL, csrc_a, NPCOL),
mp0 = numroc(m+iroff, mb_a, MYROW, iarow, NPROW),
nq0 = numroc(n+icoff, nb_a, MYCOL, iacol, NPCOL), and numroc, indxg2p 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.
The elements on and above the diagonal of sub(A) contain the min(m,n)-by-n upper trapezoidal matrix R (R is upper triangular if m ≥ n); the elements below the diagonal, with the array tau, represent the orthogonal/unitary matrix Q as a product of elementary reflectors (see Application Notes below).
(local)
REAL for psgeqrf
DOUBLE PRECISION for pdgeqrf
COMPLEX for pcgeqrf
DOUBLE COMPLEX for pzgeqrf.
Array, DIMENSION LOCc(ja+min(m,n)-1).
Contains the scalar factor tau of elementary reflectors. tau is tied to the distributed matrix A.
On exit, work(1) contains the minimum value of lwork required for optimum performance.
(global) INTEGER.
= 0, the execution is successful.
< 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.
The matrix Q is represented as a product of elementary reflectors
Q = H(ja)*H(ja+1)*...*H(ja+k-1),
where k = min(m,n).
Each H(i) has the form
H(i) = I - tau*v*v'
where tau is a real/complex scalar, and v is a real/complex vector with v(1:i-1) = 0 and v(i) = 1; v(i+1:m) is stored on exit in A(ia+i:ia+m-1, ja+i-1), and tau in tau(ja+i-1).
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.