ParallelIstlInformation.hpp File Reference
#include <vector>
#include <algorithm>
#include <limits>
#include <memory>
#include <tuple>
#include <type_traits>
#include <dune/istl/owneroverlapcopy.hh>
#include <opm/simulators/utils/ParallelCommunication.hpp>
Include dependency graph for ParallelIstlInformation.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Opm::ParallelISTLInformation
 Class that encapsulates the parallelization information needed by the ISTL solvers. More...
 
struct  Opm::Reduction::MaskIDOperator< BinaryOperator >
 An operator that only uses values where mask is 1. More...
 
struct  Opm::Reduction::InnerProductFunctor< T >
 An operator for computing a parallel inner product. More...
 
struct  Opm::Reduction::MaskToMinOperator< BinaryOperator >
 An operator that converts the values where mask is 0 to the minimum value. More...
 
struct  Opm::Reduction::MaskToMaxOperator< BinaryOperator >
 An operator that converts the values where mask is 0 to the maximum value. More...
 
struct  Opm::Reduction::detail::MaxAbsFunctor< T, Enable >
 Computes the maximum of the absolute values of two values. More...
 
struct  Opm::Reduction::detail::MaxAbsFunctor< T, typename std::enable_if< std::is_unsigned< T >::value >::type >
 

Namespaces

namespace  Opm
 
namespace  Opm::Reduction
 
namespace  Opm::Reduction::detail
 

Functions

template<class T >
MaskIDOperator< std::plus< T > > Opm::Reduction::makeGlobalSumFunctor ()
 Create a functor for computing a global sum. More...
 
template<class T >
auto Opm::Reduction::makeGlobalMaxFunctor ()
 Create a functor for computing a global maximum. More...
 
template<class T >
MaskIDOperator< detail::MaxAbsFunctor< T > > Opm::Reduction::makeLInfinityNormFunctor ()
 Create a functor for computing a global L infinity norm. More...
 
template<class T >
auto Opm::Reduction::makeGlobalMinFunctor ()
 Create a functor for computing a global minimum. More...
 
template<class T >
InnerProductFunctor< T > Opm::Reduction::makeInnerProductFunctor ()
 
template<class T1 >
auto Opm::accumulateMaskedValues (const T1 &container, const std::vector< double > *maskContainer) -> decltype(container[0] *(*maskContainer)[0])
 Accumulates entries masked with 1. More...