PLASMA_Tile_to_Lapack - Conversion from tile layout to LAPACK layout. It automatically infers the layout translation mode base on the values of Af77 and A->mat pointers. If (A->mat == Af77 || A->mat == NULL || Af77 == NULL), PLASMA_TRANSLATION_MODE is set to PLASMA_INPLACE to do inplace layout translation of the matrix. If (A->mat != Af77 && A->mat != NULL && Af77 != NULL), PLASMA_TRANSLATION_MODE is set to PLASMA_OUTOFPLACE to do out of place layout translation of the matrix. Both A->mat and Af77 have to be allocated to store the full matrix.
- Parameters
-
[in] | A | Descriptor of the PLASMA matrix in tile layout. |
[in,out] | Af77 | LAPACK matrix. |
[in] | LDA | The leading dimension of the matrix Af77. |
- Returns
- Return values
-
PLASMA_SUCCESS | successful exit |
- See also
- PLASMA_sTile_to_Lapack_Async
-
PLASMA_sLapack_to_Tile
-
PLASMA_cTile_to_Lapack
-
PLASMA_dTile_to_Lapack
-
PLASMA_sTile_to_Lapack