[in] | trans | Intended 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] | N | The order of the matrix A. N >= 0. |
[in] | NRHS | The number of right hand sides, i.e., the number of columns of the matrix B. NRHS >= 0. |
[in,out] | A | The tile factors L and U from the factorization, computed by PLASMA_dgetrf. Remark: If out-of-place layout translation is used, the matrix A can be considered as input, however if inplace layout translation is enabled, the content of A will be reordered for computation and restored before exiting the function. |
[in] | LDA | The leading dimension of the array A. LDA >= max(1,N). |
[in] | IPIV | The pivot indices from PLASMA_dgetrf. |
[in,out] | B | On entry, the N-by-NRHS matrix of right hand side matrix B. On exit, the solution matrix X. |
[in] | LDB | The leading dimension of the array B. LDB >= max(1,N). |