iterative-solver 0.0
molpro::linalg::array::DistrArrayFile Class Reference

Distributed array storing the buffer on disk using temporary local files. More...

#include <DistrArrayFile.h>

Inheritance diagram for molpro::linalg::array::DistrArrayFile:
Collaboration diagram for molpro::linalg::array::DistrArrayFile:

Detailed Description

Distributed array storing the buffer on disk using temporary local files.

On construction, file and corresponding stream object are created and file is then closed. On destruction, file is deleted.

Warning
Only local operations will be currently supported, if RMA operations are requested, exception will be thrown.
Examples
LinearEigensystemDistrArrayExample.cpp, and OptimizeDistrArrayExample.cpp.

Public Member Functions

 DistrArrayFile ()=delete
 returns local array boundaries and size More...
 
 DistrArrayFile (const DistrArrayFile &source)
 
 DistrArrayFile (DistrArrayFile &&source)
 
 DistrArrayFile (size_t dimension, MPI_Comm comm=comm_global(), const std::string &directory=".")
 
 DistrArrayFile (std::unique_ptr< Distribution > distribution, MPI_Comm comm=comm_global(), const std::string &directory=".")
 
 DistrArrayFile (const DistrArray &source)
 
DistrArrayFileoperator= (const DistrArrayFile &source)=delete
 
DistrArrayFileoperator= (DistrArrayFile &&source) noexcept
 
 ~DistrArrayFile () override
 
bool compatible (const DistrArrayFile &source) const
 
void erase () override
 Dummy. More...
 
value_type at (index_type ind) const override
 
void set (index_type ind, value_type val) override
 Writes value at a given index. More...
 
void get (index_type lo, index_type hi, value_type *buf) const override
 Reads requested values. More...
 
std::vector< value_typeget (index_type lo, index_type hi) const override
 
void put (index_type lo, index_type hi, const value_type *data) override
 Writes requested values to file. More...
 
void acc (index_type lo, index_type hi, const value_type *data) override
 
std::vector< value_typegather (const std::vector< index_type > &indices) const override
 gets elements with discontinuous indices from array. Blocking More...
 
void scatter (const std::vector< index_type > &indices, const std::vector< value_type > &data) override
 array[indices[i]] = data[i] Puts vals of elements with discontinuous indices of array. Blocking. More...
 
void scatter_acc (std::vector< index_type > &indices, const std::vector< value_type > &data) override
 array[indices[i]] += vals[i] Accumulates vals of elements into discontinuous indices of array. Atomic, blocking, with on-sided communication More...
 
std::vector< value_typevec () const override
 Copies the whole buffer into a vector. Blocking. More...
 
- Public Member Functions inherited from molpro::linalg::array::DistrArrayDisk
virtual void erase ()=0
 Erase the array from disk. More...
 
const Distributiondistribution () const override
 Access distribution of the array among processes. More...
 
value_type dot (const DistrArrayDisk &y) const
 
value_type dot (const DistrArray &y) const override
 Scalar product of two arrays. Collective. Throws error if any array is empty. Both arrays should be part of the same processor group (same communicator). The result is broadcast to each process. More...
 
value_type dot (const SparseArray &y) const override
 
void set_buffer_size (size_t buffer_size)
 
void copy (const DistrArray &y) override
 
std::unique_ptr< LocalBufferlocal_buffer () override
 Access the buffer local to this process. More...
 
std::unique_ptr< const LocalBufferlocal_buffer () const override
 
std::unique_ptr< LocalBufferlocal_buffer (const span::Span< value_type > &buffer)
 Access local section, reading it into the provided buffer. More...
 
std::unique_ptr< const LocalBufferlocal_buffer (const span::Span< value_type > &buffer) const
 Read-only access to the local section, reading it into the provided buffer. More...
 
- Public Member Functions inherited from molpro::linalg::array::DistrArray
virtual ~DistrArray ()=default
 
MPI_Comm communicator () const
 return a copy of the communicator More...
 
virtual void sync () const
 Synchronizes all process in this group and ensures any outstanding operations on the array have completed. More...
 
size_t size () const
 total number of elements, same as overall dimension of array More...
 
bool compatible (const DistrArray &other) const
 Checks that arrays are of the same dimensionality. More...
 
virtual void zero ()
 Set all local elements to zero. More...
 
virtual void error (const std::string &message) const
 stops application with an error More...
 
value_type operator[] (size_t index)
 
virtual void fill (value_type val)
 
virtual void copy_patch (const DistrArray &y, index_type start, index_type end)
 Copies elements in a patch of y. If both arrays are empty than does nothing. If only one is empty, throws an error. More...
 
virtual void axpy (value_type a, const DistrArray &y)
 this[:] += a * y[:]. Throws an error if any array is empty. Add a multiple of another array to this one. Blocking, collective. More...
 
virtual void axpy (value_type a, const SparseArray &y)
 
virtual void scal (value_type a)
 Scale by a constant. Local. More...
 
virtual void add (const DistrArray &y)
 Add another array to this. Local. Throws error if any array is empty. More...
 
virtual void add (value_type a)
 Add a constant. Local. More...
 
virtual void sub (const DistrArray &y)
 Subtract another array from this. Local. Throws error if any array is empty. More...
 
virtual void sub (value_type a)
 Subtract a constant. Local. More...
 
virtual void recip ()
 Take element-wise reciprocal of this. Local. No checks are made for zero values. More...
 
virtual void times (const DistrArray &y)
 this[i] *= y[i]. Throws error if any array is empty. More...
 
virtual void times (const DistrArray &y, const DistrArray &z)
 this[i] = y[i]*z[i]. Throws error if any array is empty. More...
 
void divide (const DistrArray &y, const DistrArray &z, value_type shift=0, bool append=false, bool negative=false)
 this[i] = y[i]/(z[i]+shift). Collective. Throws error if any array is empty. More...
 
std::list< std::pair< index_type, value_type > > min_n (int n) const
 returns n smallest elements in array x Collective operation, must be called by all processes in the group. More...
 
std::list< std::pair< index_type, value_type > > max_n (int n) const
 returns n largest elements in array x Collective operation, must be called by all processes in the group. More...
 
std::list< std::pair< index_type, value_type > > min_abs_n (int n) const
 returns n elements that are largest by absolute value in array x Collective operation, must be called by all processes in the group. More...
 
std::list< std::pair< index_type, value_type > > max_abs_n (int n) const
 returns n elements that are largest by absolute value in array x Collective operation, must be called by all processes in the group. More...
 
std::vector< index_typemin_loc_n (int n) const
 find the index of n smallest components in array x Collective operation, must be called by all processes in the group. More...
 
std::map< size_t, value_typeselect_max_dot (size_t n, const DistrArray &y) const
 
std::map< size_t, value_typeselect_max_dot (size_t n, const SparseArray &y) const
 
std::map< size_t, value_typeselect (size_t n, bool max=false, bool ignore_sign=false) const
 

Static Public Member Functions

static DistrArrayFile CreateTempCopy (const DistrArray &source, const std::string &directory=".")
 

Friends

void swap (DistrArrayFile &x, DistrArrayFile &y) noexcept
 

Additional Inherited Members

- Public Types inherited from molpro::linalg::array::DistrArrayDisk
using disk_array = void
 a compile time tag that this is a distributed disk array More...
 
- Public Types inherited from molpro::linalg::array::DistrArray
using distributed_array = void
 a compile time tag that this is a distributed array More...
 
using value_type = double
 
using index_type = size_t
 
using SparseArray = std::map< index_type, double >
 
using Distribution = util::Distribution< index_type >
 
- Protected Member Functions inherited from molpro::linalg::array::DistrArrayDisk
 DistrArrayDisk (std::unique_ptr< Distribution > distr, MPI_Comm commun)
 
 DistrArrayDisk ()
 
 DistrArrayDisk (const DistrArray &source)
 
 DistrArrayDisk (DistrArrayDisk &&source) noexcept
 
 ~DistrArrayDisk () override
 
 DistrArray (size_t dimension, MPI_Comm commun)
 Initializes array without allocating any memory. More...
 
 DistrArray ()=default
 
- Protected Member Functions inherited from molpro::linalg::array::DistrArray
 DistrArray (size_t dimension, MPI_Comm commun)
 Initializes array without allocating any memory. More...
 
 DistrArray ()=default
 
virtual void _divide (const DistrArray &y, const DistrArray &z, value_type shift, bool append, bool negative)
 
- Protected Attributes inherited from molpro::linalg::array::DistrArrayDisk
bool m_allocated = false
 Flags that the memory view buffer has been allocated. More...
 
std::unique_ptr< Distributionm_distribution
 describes distribution of array among processes More...
 
size_t m_buffer_size = 8192
 buffer size for paged access via BufferManager More...
 
- Protected Attributes inherited from molpro::linalg::array::DistrArray
index_type m_dimension = 0
 number of elements in the array More...
 
MPI_Comm m_communicator
 

Constructor & Destructor Documentation

◆ DistrArrayFile() [1/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( )
delete

returns local array boundaries and size

◆ DistrArrayFile() [2/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( const DistrArrayFile source)

◆ DistrArrayFile() [3/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( DistrArrayFile &&  source)

◆ DistrArrayFile() [4/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( size_t  dimension,
MPI_Comm  comm = comm_global(),
const std::string &  directory = "." 
)
explicit

◆ DistrArrayFile() [5/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( std::unique_ptr< Distribution distribution,
MPI_Comm  comm = comm_global(),
const std::string &  directory = "." 
)
explicit

◆ DistrArrayFile() [6/6]

molpro::linalg::array::DistrArrayFile::DistrArrayFile ( const DistrArray source)
explicit

◆ ~DistrArrayFile()

molpro::linalg::array::DistrArrayFile::~DistrArrayFile ( )
override

Member Function Documentation

◆ acc()

void molpro::linalg::array::DistrArrayFile::acc ( DistrArray::index_type  lo,
DistrArray::index_type  hi,
const value_type data 
)
overridevirtual
Warning
below functions have to be implemented being pure virtuals, but will return exceptions taken we don't do collectives here

Implements molpro::linalg::array::DistrArray.

◆ at()

DistrArray::value_type molpro::linalg::array::DistrArrayFile::at ( DistrArray::index_type  ind) const
overridevirtual
Returns
element at given index

Implements molpro::linalg::array::DistrArray.

◆ compatible()

bool molpro::linalg::array::DistrArrayFile::compatible ( const DistrArrayFile source) const

◆ CreateTempCopy()

DistrArrayFile molpro::linalg::array::DistrArrayFile::CreateTempCopy ( const DistrArray source,
const std::string &  directory = "." 
)
static

◆ erase()

void molpro::linalg::array::DistrArrayFile::erase ( )
inlineoverridevirtual

◆ gather()

std::vector< DistrArrayFile::value_type > molpro::linalg::array::DistrArrayFile::gather ( const std::vector< index_type > &  indices) const
overridevirtual

gets elements with discontinuous indices from array. Blocking

Returns
res[i] = array[indices[i]]

Implements molpro::linalg::array::DistrArray.

◆ get() [1/2]

std::vector< DistrArrayFile::value_type > molpro::linalg::array::DistrArrayFile::get ( DistrArray::index_type  lo,
DistrArray::index_type  hi 
) const
overridevirtual
Returns
a vector of values read from file

Implements molpro::linalg::array::DistrArray.

◆ get() [2/2]

void molpro::linalg::array::DistrArrayFile::get ( DistrArray::index_type  lo,
DistrArray::index_type  hi,
DistrArray::value_type buf 
) const
overridevirtual

Reads requested values.

Implements molpro::linalg::array::DistrArray.

◆ operator=() [1/2]

DistrArrayFile & molpro::linalg::array::DistrArrayFile::operator= ( const DistrArrayFile source)
delete

◆ operator=() [2/2]

DistrArrayFile & molpro::linalg::array::DistrArrayFile::operator= ( DistrArrayFile &&  source)
noexcept

◆ put()

void molpro::linalg::array::DistrArrayFile::put ( DistrArray::index_type  lo,
DistrArray::index_type  hi,
const value_type data 
)
overridevirtual

Writes requested values to file.

Implements molpro::linalg::array::DistrArray.

◆ scatter()

void molpro::linalg::array::DistrArrayFile::scatter ( const std::vector< index_type > &  indices,
const std::vector< value_type > &  data 
)
overridevirtual

array[indices[i]] = data[i] Puts vals of elements with discontinuous indices of array. Blocking.

Implements molpro::linalg::array::DistrArray.

◆ scatter_acc()

void molpro::linalg::array::DistrArrayFile::scatter_acc ( std::vector< index_type > &  indices,
const std::vector< value_type > &  data 
)
overridevirtual

array[indices[i]] += vals[i] Accumulates vals of elements into discontinuous indices of array. Atomic, blocking, with on-sided communication

Implements molpro::linalg::array::DistrArray.

◆ set()

void molpro::linalg::array::DistrArrayFile::set ( DistrArray::index_type  ind,
DistrArray::value_type  val 
)
overridevirtual

Writes value at a given index.

Implements molpro::linalg::array::DistrArray.

◆ vec()

std::vector< DistrArrayFile::value_type > molpro::linalg::array::DistrArrayFile::vec ( ) const
overridevirtual

Copies the whole buffer into a vector. Blocking.

Note
This is only meant for debugging small arrays!

Implements molpro::linalg::array::DistrArray.

Friends And Related Function Documentation

◆ swap

void swap ( DistrArrayFile x,
DistrArrayFile y 
)
friend