Go to the source code of this file.
|
| module | dbt_tas_reshape_ops |
| | communication routines to reshape / replicate / merge tall-and-skinny matrices.
|
| |
|
| recursive subroutine, public | dbt_tas_reshape_ops::dbt_tas_reshape (matrix_in, matrix_out, summation, transposed, move_data) |
| | copy data (involves reshape)
|
| |
| subroutine, public | dbt_tas_reshape_ops::dbt_tas_replicate (matrix_in, info, matrix_out, nodata, move_data) |
| | Replicate matrix_in such that each submatrix of matrix_out is an exact copy of matrix_in.
|
| |
| subroutine, public | dbt_tas_reshape_ops::dbt_tas_merge (matrix_out, matrix_in, summation, move_data) |
| | Merge submatrices of matrix_in to matrix_out by sum.
|
| |