PLASMA
Parallel Linear Algebra Software for Multicore Architectures
_lag2_: Converts general matrix between single and double

Functions

 __attribute__ ((weak))
 

Detailed Description

Function Documentation

__attribute__ ( (weak)  )

Converts m-by-n matrix A from single complex to double complex precision.

Parameters
[in]mThe number of rows of the matrix As. m >= 0.
[in]nThe number of columns of the matrix As. n >= 0.
[in]AsThe ldas-by-n matrix in single complex precision to convert.
[in]ldasThe leading dimension of the matrix As. ldas >= max(1,m).
[out]AOn exit, the converted lda-by-n matrix in double complex precision.
[in]ldaThe leading dimension of the matrix A. lda >= max(1,m).

Converts m-by-n matrix A from double complex to single complex precision.

Parameters
[in]mThe number of rows of the matrix A. m >= 0.
[in]nThe number of columns of the matrix A. n >= 0.
[in]AThe lda-by-n matrix in double complex precision to convert.
[in]ldaThe leading dimension of the matrix A. lda >= max(1,m).
[out]AsOn exit, the converted ldas-by-n matrix in single complex precision.
[in]ldasThe leading dimension of the matrix As. ldas >= max(1,m).