MADNESS  0.10.1
Classes | Namespaces | Functions
distributed_matrix.h File Reference
#include <madness/world/MADworld.h>
#include <utility>
#include <madness/tensor/tensor.h>
Include dependency graph for distributed_matrix.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  madness::DistributedMatrix< T >
 Manages data associated with a row/column/block distributed array. More...
 
class  madness::DistributedMatrixDistribution
 

Namespaces

 madness
 File holds all helper structures necessary for the CC_Operator and CC2 class.
 

Functions

template<typename T >
DistributedMatrix< Tmadness::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...
 
static DistributedMatrixDistribution madness::column_distributed_matrix_distribution (World &world, int64_t n, int64_t m, int64_t coltile)
 Generates distribution for an (n,m) matrix distributed by columns (row dimension is not distributed) More...
 
template<typename T >
DistributedMatrix< Tmadness::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< Tmadness::concatenate_rows (const DistributedMatrix< T > &a, const DistributedMatrix< T > &b)
 Generates a column-distributed matrix with rows of a and b contatenated. More...
 
template<typename T >
DistributedMatrix< Tmadness::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< Tmadness::copy (const DistributedMatrix< T > &A)
 Deep copy of content. More...
 
template<typename T >
DistributedMatrix< Tmadness::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< Tmadness::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...
 
static DistributedMatrixDistribution madness::row_distributed_matrix_distribution (World &world, int64_t n, int64_t m, int64_t rowtile)
 Generates an (n,m) matrix distribution distributed by rows (column dimension is not distributed) More...