MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type > Class Template Reference

#include <MueLu_MatrixConstruction.hpp>

Public Member Functions

 MergeFillFunctor (local_matrix_type &A_, local_ordinal_type blockSize_, block_indices_view_type ghosted_point_to_block_, local_matrix_type &mergedA_)
 
KOKKOS_INLINE_FUNCTION void operator() (const local_ordinal_type brlid) const
 

Private Types

using scalar_type = typename local_matrix_type::value_type
 
using local_ordinal_type = typename local_matrix_type::ordinal_type
 
using local_graph_type = typename local_matrix_type::staticcrsgraph_type
 
using memory_space = typename local_matrix_type::memory_space
 
using results_view = Kokkos::View< DecisionType *, memory_space >
 
using ATS = Kokkos::ArithTraits< scalar_type >
 
using OTS = Kokkos::ArithTraits< local_ordinal_type >
 
using block_indices_view_type = Kokkos::View< local_ordinal_type *, memory_space >
 
using permutation_type = Kokkos::View< local_ordinal_type *, memory_space >
 
using magnitudeType = typename ATS::magnitudeType
 

Private Attributes

local_matrix_type A
 
local_ordinal_type blockSize
 
block_indices_view_type ghosted_point_to_block
 
local_matrix_type mergedA
 
const scalar_type zero = ATS::zero()
 
const scalar_type one = ATS::one()
 
BlockRowComparison
< local_matrix_type > 
comparison
 
permutation_type permutation
 

Detailed Description

template<class local_matrix_type>
class MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >

Definition at line 990 of file MueLu_MatrixConstruction.hpp.

Member Typedef Documentation

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::scalar_type = typename local_matrix_type::value_type
private

Definition at line 992 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::local_ordinal_type = typename local_matrix_type::ordinal_type
private

Definition at line 993 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::local_graph_type = typename local_matrix_type::staticcrsgraph_type
private

Definition at line 994 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::memory_space = typename local_matrix_type::memory_space
private

Definition at line 995 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::results_view = Kokkos::View<DecisionType*, memory_space>
private

Definition at line 996 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::ATS = Kokkos::ArithTraits<scalar_type>
private

Definition at line 997 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::OTS = Kokkos::ArithTraits<local_ordinal_type>
private

Definition at line 998 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::block_indices_view_type = Kokkos::View<local_ordinal_type*, memory_space>
private

Definition at line 999 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::permutation_type = Kokkos::View<local_ordinal_type*, memory_space>
private

Definition at line 1000 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
using MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::magnitudeType = typename ATS::magnitudeType
private

Definition at line 1001 of file MueLu_MatrixConstruction.hpp.

Constructor & Destructor Documentation

template<class local_matrix_type>
MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::MergeFillFunctor ( local_matrix_type &  A_,
local_ordinal_type  blockSize_,
block_indices_view_type  ghosted_point_to_block_,
local_matrix_type &  mergedA_ 
)
inline

Definition at line 1014 of file MueLu_MatrixConstruction.hpp.

Member Function Documentation

template<class local_matrix_type>
KOKKOS_INLINE_FUNCTION void MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::operator() ( const local_ordinal_type  brlid) const
inline

Definition at line 1024 of file MueLu_MatrixConstruction.hpp.

Member Data Documentation

template<class local_matrix_type>
local_matrix_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::A
private

Definition at line 1003 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
local_ordinal_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::blockSize
private

Definition at line 1004 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
block_indices_view_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::ghosted_point_to_block
private

Definition at line 1005 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
local_matrix_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::mergedA
private

Definition at line 1006 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
const scalar_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::zero = ATS::zero()
private

Definition at line 1007 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
const scalar_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::one = ATS::one()
private

Definition at line 1008 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
BlockRowComparison<local_matrix_type> MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::comparison
private

Definition at line 1010 of file MueLu_MatrixConstruction.hpp.

template<class local_matrix_type>
permutation_type MueLu::MatrixConstruction::MergeFillFunctor< local_matrix_type >::permutation
private

Definition at line 1011 of file MueLu_MatrixConstruction.hpp.


The documentation for this class was generated from the following file: