[in] | trans | Intended usage: = PlasmaNoTrans: the linear system involves A; = PlasmaTrans: the linear system involves A**H. Currently only PlasmaNoTrans is supported. |
[in,out] | A |
- If the iterative refinement converged, A is not modified;
- otherwise, it fell back to double precision solution, and on exit the M-by-N matrix A contains: if M >= N, A is overwritten by details of its QR factorization as returned by PLASMA_dgeqrf; if M < N, A is overwritten by details of its LQ factorization as returned by PLASMA_dgelqf.
|
[out] | T | On exit:
- if the iterative refinement converged, T is not modified;
- otherwise, it fell back to double precision solution, and then T is an auxiliary factorization data.
|
[in,out] | B | On entry, the M-by-NRHS matrix B of right hand side vectors, stored columnwise; |
[in] | B | The N-by-NRHS matrix of right hand side matrix B. |
[out] | X | If return value = 0, X is the solution vectors, stored columnwise: if M >= N, rows 1 to N of X contain the least squares solution vectors; the residual sum of squares for the solution in each column is given by the sum of squares of the modulus of elements N+1 to M in that column; if M < N, rows 1 to N of X contain the minimum norm solution vectors; |
[out] | ITER | The number of the current iteration in the iterative refinement process |