MADNESS  version 0.9
Classes | Namespaces | Functions
distributed_matrix.h File Reference
#include <madness/world/world.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
 
class  madness::DistributedMatrix< T >
 Manages data associated with a row/column/block distributed array. More...
 

Namespaces

 madness
 Holds machinery to set up Functions/FuncImpls using various Factories and Interfaces.
 

Functions

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::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::copy (const DistributedMatrix< T > &A)
 Deep copy of content. More...
 
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::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...