10#ifndef IFPACK2_BLOCKTRIDICONTAINER_DEF_HPP
11#define IFPACK2_BLOCKTRIDICONTAINER_DEF_HPP
13#include <Teuchos_Details_MpiTypeTraits.hpp>
15#include <Tpetra_Distributor.hpp>
16#include <Tpetra_BlockMultiVector.hpp>
17#include <Tpetra_BlockCrsMatrix_Helpers.hpp>
19#if KOKKOS_VERSION >= 40799
20#include <KokkosKernels_ArithTraits.hpp>
22#include <Kokkos_ArithTraits.hpp>
24#include <KokkosBatched_Util.hpp>
25#include <KokkosBatched_Vector.hpp>
26#include <KokkosBatched_AddRadial_Decl.hpp>
27#include <KokkosBatched_AddRadial_Impl.hpp>
28#include <KokkosBatched_Gemm_Decl.hpp>
29#include <KokkosBatched_Gemm_Serial_Impl.hpp>
30#include <KokkosBatched_Gemv_Decl.hpp>
31#include <KokkosBatched_Trsm_Decl.hpp>
32#include <KokkosBatched_Trsm_Serial_Impl.hpp>
33#include <KokkosBatched_Trsv_Decl.hpp>
34#include <KokkosBatched_Trsv_Serial_Impl.hpp>
35#include <KokkosBatched_LU_Decl.hpp>
36#include <KokkosBatched_LU_Serial_Impl.hpp>
39#include "Ifpack2_BlockTriDiContainer_impl.hpp"
49template <
typename MatrixType>
51 const Teuchos::RCP<const import_type>& importer,
52 const bool overlapCommAndComp,
53 const bool useSeqMethod,
55 const bool explicitConversion) {
56 IFPACK2_BLOCKHELPER_TIMER_WITH_FENCE(
"BlockTriDiContainer::initInternal", initInternal,
typename BlockHelperDetails::ImplType<MatrixType>::execution_space);
60 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createImpl", createImpl);
62 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
69 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::setA", setA);
70 if (explicitConversion) {
71 impl_->A = Teuchos::rcp_dynamic_cast<const block_crs_matrix_type>(matrix);
72 if (impl_->A.is_null()) {
73 TEUCHOS_TEST_FOR_EXCEPT_MSG(block_size == -1,
"A pointwise matrix and block_size = -1 were given as inputs.");
75 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::setA::convertToBlockCrsMatrix", convertToBlockCrsMatrix);
76 impl_->A = Tpetra::convertToBlockCrsMatrix(*Teuchos::rcp_dynamic_cast<const crs_matrix_type>(matrix), block_size,
true);
77 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
83 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
86 impl_->tpetra_importer = Teuchos::null;
87 impl_->async_importer = Teuchos::null;
90 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createBlockCrsTpetraImporter useSeqMethod", useSeqMethod);
91 if (importer.is_null())
94 impl_->tpetra_importer = importer;
95 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
97 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createBlockCrsTpetraImporter", createBlockCrsTpetraImporter);
101 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
110 impl_->overlap_communication_and_computation = overlapCommAndComp;
113 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createZ", createZ);
114 impl_->Z =
typename impl_type::tpetra_multivector_type();
115 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
118 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createW", createW);
119 impl_->W =
typename impl_type::impl_scalar_type_1d_view();
120 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
123 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
126template <
typename MatrixType>
128 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::clearInternal", clearInternal);
130 using part_interface_type = BlockHelperDetails::PartInterface<MatrixType>;
135 impl_->A = Teuchos::null;
136 impl_->tpetra_importer = Teuchos::null;
137 impl_->async_importer = Teuchos::null;
139 impl_->Z =
typename impl_type::tpetra_multivector_type();
140 impl_->W =
typename impl_type::impl_scalar_type_1d_view();
142 impl_->part_interface = part_interface_type();
143 impl_->block_tridiags = block_tridiags_type();
144 impl_->a_minus_d = amd_type();
145 impl_->work =
typename impl_type::vector_type_1d_view();
146 impl_->norm_manager = norm_manager_type();
148 impl_ = Teuchos::null;
149 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
152template <
typename MatrixType>
154 const Teuchos::Array<Teuchos::Array<local_ordinal_type> >& partitions,
155 const Teuchos::RCP<const import_type>& importer,
157 :
Container<MatrixType>(matrix, partitions, pointIndexed)
158 , partitions_(partitions) {
159 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::BlockTriDiContainer",
BlockTriDiContainer);
160 const bool useSeqMethod =
false;
161 const bool overlapCommAndComp =
false;
162 initInternal(matrix, importer, overlapCommAndComp, useSeqMethod);
163 impl_->use_fused_jacobi = shouldUseFusedBlockJacobi(matrix, partitions, useSeqMethod);
164 n_subparts_per_part_ = -1;
166 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
169template <
typename MatrixType>
171 const Teuchos::Array<Teuchos::Array<local_ordinal_type> >& partitions,
172 const int n_subparts_per_part,
173 const bool overlapCommAndComp,
174 const bool useSeqMethod,
175 const int block_size,
176 const bool explicitConversion)
177 :
Container<MatrixType>(matrix, partitions, false)
178 , partitions_(partitions) {
179 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::BlockTriDiContainer",
BlockTriDiContainer);
180 initInternal(matrix, Teuchos::null, overlapCommAndComp, useSeqMethod, block_size, explicitConversion);
181 impl_->use_fused_jacobi = shouldUseFusedBlockJacobi(matrix, partitions, useSeqMethod);
182 n_subparts_per_part_ = n_subparts_per_part;
183 block_size_ = block_size;
184 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
187template <
typename MatrixType>
189 const Teuchos::RCP<const row_matrix_type>& matrix,
190 const Teuchos::Array<Teuchos::Array<local_ordinal_type> >& partitions,
193 auto matrixBCRS = Teuchos::rcp_dynamic_cast<const block_crs_matrix_type>(matrix);
194 bool hasBlockCrs = !matrixBCRS.is_null();
195 bool onePartitionPerRow = hasBlockCrs && size_t(partitions.size()) == matrixBCRS->getLocalNumRows();
196 constexpr bool isGPU = BlockHelperDetails::is_device<typename Helpers::execution_space>::value;
198#ifdef KOKKOS_ARCH_VOLTA
199 constexpr bool isVolta =
true;
201 constexpr bool isVolta =
false;
206 return isGPU && !isVolta && !useSeqMethod && hasBlockCrs && (!partitions.size() || onePartitionPerRow);
209template <
typename MatrixType>
213template <
typename MatrixType>
215 if (List.isType<
int>(
"partitioner: subparts per part"))
216 n_subparts_per_part_ = List.get<
int>(
"partitioner: subparts per part");
217 if (List.isType<
int>(
"partitioner: block size"))
218 block_size_ = List.get<
int>(
"partitioner: block size");
221template <
typename MatrixType>
223 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::initialize",
initialize);
226 auto bA = Teuchos::rcp_dynamic_cast<const block_crs_matrix_type>(impl_->A);
228 TEUCHOS_TEST_FOR_EXCEPT_MSG(block_size_ == -1,
"A pointwise matrix and block_size = -1 were given as inputs.");
230 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::initialize::getBlockCrsGraph", getBlockCrsGraph);
231 auto A = Teuchos::rcp_dynamic_cast<const crs_matrix_type>(impl_->A);
232 impl_->blockGraph = Tpetra::getBlockCrsGraph(*A, block_size_,
true);
233 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
236 impl_->blockGraph = Teuchos::rcpFromRef(bA->getCrsGraph());
241 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::createPartInterfaceBlockTridiagsNormManager", createPartInterfaceBlockTridiagsNormManager);
245 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
251 TEUCHOS_ASSERT(!impl_->A.is_null());
253 bool useSeqMethod = !impl_->tpetra_importer.is_null();
256 impl_->part_interface,
257 impl_->block_tridiags,
259 impl_->overlap_communication_and_computation,
260 impl_->async_importer, useSeqMethod, impl_->use_fused_jacobi);
262 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
265template <
typename MatrixType>
267 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::compute",
compute);
274 impl_->part_interface, impl_->block_tridiags,
275#
if KOKKOS_VERSION >= 40799
276 KokkosKernels::ArithTraits<magnitude_type>::zero(),
278 Kokkos::ArithTraits<magnitude_type>::zero(),
280 impl_->use_fused_jacobi);
283 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
286template <
typename MatrixType>
288 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::clearBlocks", clearBlocks);
290 this->IsInitialized_ =
false;
291 this->IsComputed_ =
false;
292 Container<MatrixType>::clearBlocks();
293 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
296template <
typename MatrixType>
298 bool zeroStartingSolution,
int numSweeps)
const {
299 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::applyInverseJacobi",
applyInverseJacobi);
300#if KOKKOS_VERSION >= 40799
301 const magnitude_type tol = KokkosKernels::ArithTraits<magnitude_type>::zero();
303 const magnitude_type tol = Kokkos::ArithTraits<magnitude_type>::zero();
305 const int check_tol_every = 1;
307 if (!impl_->use_fused_jacobi) {
310 impl_->tpetra_importer,
311 impl_->async_importer,
312 impl_->overlap_communication_and_computation,
313 X, Y, impl_->Z, impl_->W,
314 impl_->part_interface, impl_->block_tridiags, impl_->a_minus_d,
318 zeroStartingSolution,
324 impl_->async_importer,
325 impl_->overlap_communication_and_computation,
327 impl_->part_interface, impl_->block_tridiags, impl_->a_minus_d,
331 zeroStartingSolution,
336 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
339template <
typename MatrixType>
342 return ComputeParameters();
345template <
typename MatrixType>
347 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::compute",
compute);
354 impl_->part_interface, impl_->block_tridiags,
355 in.addRadiallyToDiagonal,
356 impl_->use_fused_jacobi);
359 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
362template <
typename MatrixType>
366 in.
dampingFactor = Teuchos::ScalarTraits<scalar_type>::one();
370template <
typename MatrixType>
373 IFPACK2_BLOCKHELPER_TIMER(
"BlockTriDiContainer::applyInverseJacobi",
applyInverseJacobi);
376 if (!impl_->use_fused_jacobi) {
379 impl_->tpetra_importer,
380 impl_->async_importer,
381 impl_->overlap_communication_and_computation,
382 X, Y, impl_->Z, impl_->W,
383 impl_->part_interface, impl_->block_tridiags, impl_->a_minus_d,
393 impl_->async_importer,
394 impl_->overlap_communication_and_computation,
396 impl_->part_interface, impl_->block_tridiags, impl_->a_minus_d,
406 IFPACK2_BLOCKHELPER_TIMER_FENCE(
typename BlockHelperDetails::ImplType<MatrixType>::execution_space)
410template <
typename MatrixType>
413 return impl_->norm_manager.getNorms0();
416template <
typename MatrixType>
419 return impl_->norm_manager.getNormsFinal();
422template <
typename MatrixType>
424 scalar_type , scalar_type )
const {
425 TEUCHOS_TEST_FOR_EXCEPT_MSG(
true,
"BlockTriDiContainer::apply is not implemented. You may have reached this message "
426 <<
"because you want to use this container's performance-portable Jacobi iteration. In "
427 <<
"that case, set \"relaxation: type\" to \"MT Split Jacobi\" rather than \"Jacobi\".");
430template <
typename MatrixType>
432 Teuchos::ETransp , scalar_type , scalar_type )
const {
433 TEUCHOS_TEST_FOR_EXCEPT_MSG(
true,
"BlockTriDiContainer::weightedApply is not implemented.");
436template <
typename MatrixType>
439 Teuchos::FancyOStream fos(Teuchos::rcp(&os,
false));
440 fos.setOutputToRootOnly(0);
445template <
typename MatrixType>
448 std::ostringstream oss;
449 oss << Teuchos::Describable::description();
452 oss <<
"{status = initialized, computed";
454 oss <<
"{status = initialized, not computed";
457 oss <<
"{status = not initialized, not computed";
464template <
typename MatrixType>
467 const Teuchos::EVerbosityLevel verbLevel)
const {
469 if (verbLevel == Teuchos::VERB_NONE)
return;
470 os <<
"================================================================================" << endl
471 <<
"Ifpack2::BlockTriDiContainer" << endl
472 <<
"Number of blocks = " << this->
numBlocks_ << endl
475 <<
"================================================================================" << endl
479template <
typename MatrixType>
483#define IFPACK2_BLOCKTRIDICONTAINER_INSTANT(S, LO, GO, N) \
484 template class Ifpack2::BlockTriDiContainer<Tpetra::RowMatrix<S, LO, GO, N> >;
Ifpack2::BlockTriDiContainer class declaration.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const override
Print the object with some verbosity level to the given FancyOStream.
Definition Ifpack2_BlockTriDiContainer_def.hpp:466
BlockTriDiContainer(const Teuchos::RCP< const row_matrix_type > &matrix, const Teuchos::Array< Teuchos::Array< local_ordinal_type > > &partitions, const Teuchos::RCP< const import_type > &importer, bool pointIndexed)
Constructor.
Definition Ifpack2_BlockTriDiContainer_def.hpp:153
void applyInverseJacobi(const mv_type &X, mv_type &Y, scalar_type dampingFactor, bool zeroStartingSolution=false, int numSweeps=1) const override
Compute Y := (1 - a) Y + a D^{-1} (X - R*Y).
Definition Ifpack2_BlockTriDiContainer_def.hpp:297
void initialize() override
Do all set-up operations that only require matrix structure.
Definition Ifpack2_BlockTriDiContainer_def.hpp:222
void compute() override
Extract the local tridiagonal block and prepare the solver.
Definition Ifpack2_BlockTriDiContainer_def.hpp:266
Store and solve local block tridiagonal linear problems.
Definition Ifpack2_BlockTriDiContainer_decl.hpp:107
int numBlocks_
The number of blocks (partitions) in the container.
Definition Ifpack2_Container_decl.hpp:261
bool isInitialized() const
Whether the container has been successfully initialized.
Definition Ifpack2_Container_def.hpp:123
Container(const Teuchos::RCP< const row_matrix_type > &matrix, const Teuchos::Array< Teuchos::Array< LO > > &partitions, bool pointIndexed)
Constructor.
Definition Ifpack2_Container_def.hpp:21
bool IsInitialized_
If true, the container has been successfully initialized.
Definition Ifpack2_Container_decl.hpp:289
bool isComputed() const
Whether the container has been successfully computed.
Definition Ifpack2_Container_def.hpp:128
bool IsComputed_
If true, the container has been successfully computed.
Definition Ifpack2_Container_decl.hpp:291
BlockHelperDetails::PartInterface< MatrixType > createPartInterface(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A, const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_crs_graph_type > &G, const Teuchos::Array< Teuchos::Array< typename BlockHelperDetails::ImplType< MatrixType >::local_ordinal_type > > &partitions, const typename BlockHelperDetails::ImplType< MatrixType >::local_ordinal_type n_subparts_per_part_in)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:1102
int applyInverseJacobi(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A, const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_crs_graph_type > &G, const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_import_type > &tpetra_importer, const Teuchos::RCP< AsyncableImport< MatrixType > > &async_importer, const bool overlap_communication_and_computation, const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_multivector_type &X, typename BlockHelperDetails::ImplType< MatrixType >::tpetra_multivector_type &Y, typename BlockHelperDetails::ImplType< MatrixType >::tpetra_multivector_type &Z, typename BlockHelperDetails::ImplType< MatrixType >::impl_scalar_type_1d_view &W, const BlockHelperDetails::PartInterface< MatrixType > &interf, const BlockTridiags< MatrixType > &btdm, const BlockHelperDetails::AmD< MatrixType > &amd, typename BlockHelperDetails::ImplType< MatrixType >::vector_type_1d_view &work, BlockHelperDetails::NormManager< MatrixType > &norm_manager, const typename BlockHelperDetails::ImplType< MatrixType >::impl_scalar_type &damping_factor, bool is_y_zero, const int max_num_sweeps, const typename BlockHelperDetails::ImplType< MatrixType >::magnitude_type tol, const int check_tol_every)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:5010
void performSymbolicPhase(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A, const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_crs_graph_type > &g, const BlockHelperDetails::PartInterface< MatrixType > &interf, BlockTridiags< MatrixType > &btdm, BlockHelperDetails::AmD< MatrixType > &amd, const bool overlap_communication_and_computation, const Teuchos::RCP< AsyncableImport< MatrixType > > &async_importer, bool useSeqMethod, bool use_fused_jacobi)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:1938
Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_import_type > createBlockCrsTpetraImporter(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:171
void performNumericPhase(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A, const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_crs_graph_type > &G, const BlockHelperDetails::PartInterface< MatrixType > &interf, BlockTridiags< MatrixType > &btdm, const typename BlockHelperDetails::ImplType< MatrixType >::magnitude_type tiny, bool use_fused_jacobi)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:3764
Teuchos::RCP< AsyncableImport< MatrixType > > createBlockCrsAsyncImporter(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_row_matrix_type > &A)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:895
BlockTridiags< MatrixType > createBlockTridiags(const BlockHelperDetails::PartInterface< MatrixType > &interf)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:1686
int applyFusedBlockJacobi(const Teuchos::RCP< const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_import_type > &tpetra_importer, const Teuchos::RCP< AsyncableImport< MatrixType > > &async_importer, const bool overlap_communication_and_computation, const typename BlockHelperDetails::ImplType< MatrixType >::tpetra_multivector_type &X, typename BlockHelperDetails::ImplType< MatrixType >::tpetra_multivector_type &Y, typename BlockHelperDetails::ImplType< MatrixType >::impl_scalar_type_1d_view &W, const BlockHelperDetails::PartInterface< MatrixType > &interf, const BlockTridiags< MatrixType > &btdm, const BlockHelperDetails::AmD< MatrixType > &amd, typename BlockHelperDetails::ImplType< MatrixType >::impl_scalar_type_1d_view &work, BlockHelperDetails::NormManager< MatrixType > &norm_manager, const typename BlockHelperDetails::ImplType< MatrixType >::impl_scalar_type &damping_factor, bool is_y_zero, const int max_num_sweeps, const typename BlockHelperDetails::ImplType< MatrixType >::magnitude_type tol, const int check_tol_every)
Definition Ifpack2_BlockTriDiContainer_impl.hpp:5369
Preconditioners and smoothers for Tpetra sparse matrices.
Definition Ifpack2_AdditiveSchwarz_decl.hpp:40
Definition Ifpack2_BlockComputeResidualVector.hpp:23
Definition Ifpack2_BlockHelper.hpp:270
Definition Ifpack2_BlockHelper.hpp:389
Input arguments to applyInverseJacobi.
Definition Ifpack2_BlockTriDiContainer_decl.hpp:234
bool zeroStartingSolution
Definition Ifpack2_BlockTriDiContainer_decl.hpp:237
scalar_type dampingFactor
Damping factor. Defaults to 1.
Definition Ifpack2_BlockTriDiContainer_decl.hpp:242
int checkToleranceEvery
Definition Ifpack2_BlockTriDiContainer_decl.hpp:268
magnitude_type tolerance
Definition Ifpack2_BlockTriDiContainer_decl.hpp:259
int maxNumSweeps
Definition Ifpack2_BlockTriDiContainer_decl.hpp:246
Definition Ifpack2_BlockTriDiContainer_impl.hpp:1613
forward declaration
Definition Ifpack2_BlockTriDiContainer_impl.hpp:5419