PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int PLASMA_sgetrs_Tile ( PLASMA_enum  trans,
PLASMA_desc A,
const int *  IPIV,
PLASMA_desc B 
)

PLASMA_sgetrs_Tile - Solves a system of linear equations using previously computed LU factorization. Tile equivalent of PLASMA_sgetrs(). Operates on matrices stored by tiles. All matrices are passed through descriptors. All dimensions are taken from the descriptors.

Parameters
[in]transIntended to specify the the form of the system of equations: = PlasmaNoTrans: A * X = B (No transpose) = PlasmaTrans: A**T * X = B (Transpose) = PlasmaTrans: A**T * X = B (Conjugate transpose)
[in]AThe tile factors L and U from the factorization, computed by PLASMA_sgetrf.
[in]IPIVThe pivot indices from PLASMA_sgetrf.
[in,out]BOn entry, the N-by-NRHS matrix of right hand side matrix B. On exit, the solution matrix X.
Returns
Return values
PLASMA_SUCCESSsuccessful exit
See also
PLASMA_sgetrs
PLASMA_sgetrs_Tile_Async
PLASMA_cgetrs_Tile
PLASMA_dgetrs_Tile
PLASMA_sgetrs_Tile
PLASMA_sgetrf_Tile