Go to the source code of this file.
|
| | madness |
| | Holds machinery to set up Functions/FuncImpls using various Factories and Interfaces.
|
| |
|
| template<typename T > |
| DistributedMatrix< T > | madness::column_distributed_matrix (World &world, int64_t n, int64_t m, int64_t coltile=0) |
| | Generates an (n,m) matrix distributed by columns (row dimension is not distributed) More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::row_distributed_matrix (World &world, int64_t n, int64_t m, int64_t rowtile=0) |
| | Generates an (n,m) matrix distributed by rows (column dimension is not distributed) More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::interleave_rows (const DistributedMatrix< T > &a, const DistributedMatrix< T > &b) |
| | Generates a distributed matrix with rows of a and b interleaved. More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::concatenate_rows (const DistributedMatrix< T > &a, const DistributedMatrix< T > &b) |
| | Generates a distributed matrix with rows of a and b concatenated. More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::concatenate_rows (const DistributedMatrix< T > &a, const DistributedMatrix< T > &b, const DistributedMatrix< T > &c, const DistributedMatrix< T > &d) |
| | Generates a column-distributed matrix with rows of a, b, c, and d contatenated in order. More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::concatenate_columns (const DistributedMatrix< T > &a, const DistributedMatrix< T > &b) |
| | Generates a row-distributed matrix with rows of a and b contatenated. More...
|
| |
| template<typename T > |
| DistributedMatrix< T > | madness::idMatrix (const DistributedMatrix< T > &A) |
| | make identity matrix with same propaties of A More...
|
| |