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?lapiv

Applies a permutation matrix to a general distributed matrix, resulting in row or column pivoting.

Syntax

call pslapiv(direc, rowcol, pivroc, m, n, a, ia, ja, desca, ipiv, ip, jp, descip, iwork)

call pdlapiv(direc, rowcol, pivroc, m, n, a, ia, ja, desca, ipiv, ip, jp, descip, iwork)

call pclapiv(direc, rowcol, pivroc, m, n, a, ia, ja, desca, ipiv, ip, jp, descip, iwork)

call pzlapiv(direc, rowcol, pivroc, m, n, a, ia, ja, desca, ipiv, ip, jp, descip, iwork)

Description

The p?lapivroutine applies either P (permutation matrix indicated by ipiv) or inv(P) to a general m-by-n distributed matrix sub(A) = A(ia:ia+m-1, ja:ja+n-1), resulting in row or column pivoting. The pivot vector may be distributed across a process row or a column. The pivot vector should be aligned with the distributed matrix A. This routine will transpose the pivot vector, if necessary.

For example, if the row pivots should be applied to the columns of sub(A), pass rowcol='C' and pivroc='C'.

Input Parameters
direc

(global) CHARACTER*1.

Specifies in which order the permutation is applied:

= 'F' (Forward): Applies pivots forward from top of matrix. Computes P*sub(A).

= 'B' (Backward): Applies pivots backward from bottom of matrix. Computes inv(P)*sub(A).

rowcol

(global) CHARACTER*1.

Specifies if the rows or columns are to be permuted:

= 'R': Rows will be permuted,

= 'C': Columns will be permuted.

pivroc

(global) CHARACTER*1.

Specifies whether ipiv is distributed over a process row or column:

= 'R': ipiv is distributed over a process row,

= 'C': ipiv is distributed over a process column.

m

(global) INTEGER.

The number of rows in the distributed matrix sub(A). When m = 0, p?lapiv is set to zero. m 0.

n

(global) INTEGER.

The number of columns in the distributed matrix sub(A). When n = 0, p?lapiv is set to zero. n 0.

a

(local).

REAL for pslapiv

DOUBLE PRECISION for pdlapiv

COMPLEX for pclapiv

COMPLEX*16 for pzlapiv.

Pointer into the local memory to an array of size (lld_a, LOCc(ja+n-1)) containing the local pieces of the distributed matrix sub(A).

ia, ja

(global) INTEGER.

The row and column indices in the global matrix A indicating the first row and the first column of the matrix sub(A), respectively.

desca

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

ipiv

(local) INTEGER.

Array of size lipiv ;

when rowcol='R' or 'r':

lipivLOCr(ia+m-1) + mb_a if pivroc='C' or 'c',

lipivLOCc(m + mod(jp-1, nb_p)) if pivroc='R' or 'r', and,

when rowcol='C' or 'c':

lipivLOCr(n + mod(ip-1, mb_p)) if pivroc='C' or 'c',

lipivLOCc(ja+n-1) + nb_a if pivroc='R' or 'r'.

This array contains the pivoting information. ipiv(i) is the global row (column), local row (column) i was swapped with. When rowcol='R' or 'r' and pivroc='C' or 'c', or rowcol='C' or 'c' and pivroc='R' or 'r', the last piece of this array of size mb_a (resp. nb_a) is used as workspace. In those cases, this array is tied to the distributed matrix A.

ip, jp

(global) INTEGER. The row and column indices in the global matrix P indicating the first row and the first column of the matrix sub(P), respectively.

descip

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

iwork

(local). INTEGER.

Array of size ldw, where ldw is equal to the workspace necessary for transposition, and the storage of the transposed ipiv:

Let lcm be the least common multiple of nprow and npcol.

if( rowcol.eq.'r' .and.  pivroc. eq.'r') then
      if( nprow.eq. npcol) then
ldw = LOCr( n_p + mod(jp-1, nb_p) ) + nb_p
     else
ldw = LOCr( n_p + mod(jp-1, nb_p) )+
nb_p * ceil( ceil(LOCc(n_p)/nb_p) / (lcm/npcol) )
   end if
 else if( rowcol.eq.'c' .and.  pivroc.eq.'c') then
       if( nprow.eq. npcol ) then
ldw = LOCc( m_p + mod(ip-1, mb_p) ) + mb_p
       else
ldw = LOCc( m_p + mod(ip-1, mb_p) ) +
mb_p *ceil(ceil(LOCr(m_p)/mb_p) / (lcm/nprow) )
       end if
 else
iwork is not referenced.
 end if 
Output Parameters
a

(local).

On exit, the local pieces of the permuted distributed submatrix.

See Also