Developer Reference for Intel® oneAPI Math Kernel Library for Fortran

ID 766686
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

p?orgql

Generates the orthogonal matrix Q of the QL factorization formed by p?geqlf.

Syntax

call psorgql(m, n, k, a, ia, ja, desca, tau, work, lwork, info)

call pdorgql(m, n, k, a, ia, ja, desca, tau, work, lwork, info)

Include Files

Description

The p?orgql routine generates the whole or part of m-by-n real distributed matrix Q denoting A(ia:ia+m-1,ja:ja+n-1) with orthonormal rows, which is defined as the first m rows of a product of k elementary reflectors of order n

Q = H(k)*...*H(2)*H(1)

as returned by p?geqlf.

Input Parameters
m

(global) INTEGER. The number of rows in the matrix sub(Q), (m0).

n

(global) INTEGER. The number of columns in the matrix sub(Q),(mn0).

k

(global) INTEGER. The number of elementary reflectors whose product defines the matrix Q(nk0).

a

(local)

REAL for psorgql

DOUBLE PRECISION for pdorgql

Pointer into the local memory to an array of local size (lld_a,LOCc(ja+n-1)). On entry, the j-th column must contain the vector that defines the elementary reflector H(j),ja+n-kjja+n-1, as returned by p?geqlf in the k columns of its distributed matrix argument A(ia:*,ja+n-k:ja+n-1).

ia, ja

(global) INTEGER. The row and column indices in the global matrix A indicating the first row and the first column of the submatrix A(ia:ia+m-1,ja:ja+n-1), respectively.

desca

(global and local) INTEGER array of size dlen_. The array descriptor for the distributed matrix A.

tau

(local)

REAL for psorgql

DOUBLE PRECISION for pdorgql

Array of size LOCc(ja+n-1).

Contains the scalar factors tau(j) of elementary reflectors H(j). tau is tied to the distributed matrix A.

work

(local)

REAL for psorgql

DOUBLE PRECISION for pdorgql

Workspace array of size of lwork.

lwork

(local or global) INTEGER, size of work, must be at least lworknb_a*(nqa0+mpa0+nb_a), where

iroffa = mod(ia-1, mb_a),

icoffa = mod(ja-1, nb_a),

iarow = indxg2p(ia, mb_a, MYROW, rsrc_a, NPROW),

iacol = indxg2p(ja, nb_a, MYCOL, csrc_a, NPCOL),

mpa0 = numroc(m+iroffa, mb_a, MYROW, iarow, NPROW),

nqa0 = numroc(n+icoffa, nb_a, MYCOL, iacol, NPCOL)

NOTE:

mod(x,y) is the integer remainder of x/y.

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.

Output Parameters
a

Contains the local pieces of the m-by-n distributed matrix Q to be factored.

work(1)

On exit, work(1) contains the minimum value of lwork required for optimum performance.

info

(global) INTEGER.

= 0: the execution is successful.

< 0: if the i-th argument is an array and the j-th 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.

See Also