Copy and precision conversion.
Assuming the same distribution of source and destination. Transposition is currently ignored. TODO: Inspect transposition?
- Template Parameters
-
- Parameters
-
[in] | A | The m-by-n matrix A. |
[in,out] | B | On entry, the m-by-n matrix B. On exit, overwritten by dst_matrix_type(A). |
[in] | opts | Additional options, as map of name = value pairs. Possible options:
- Option::Target: Implementation to target. Possible values:
- HostTask: OpenMP tasks on CPU host [default].
- HostNest: nested OpenMP parallel for loop on CPU host.
- HostBatch: batched BLAS on CPU host.
- Devices: batched BLAS on GPU device.
|