128class RBILUK :
virtual public Ifpack2::RILUK< Tpetra::RowMatrix< typename MatrixType::scalar_type,
129 typename MatrixType::local_ordinal_type, typename MatrixType::global_ordinal_type, typename MatrixType::node_type> >
139 typedef typename Kokkos::ArithTraits<typename MatrixType::scalar_type>::val_type impl_scalar_type;
143 typedef typename MatrixType::local_ordinal_type LO;
147 typedef typename MatrixType::global_ordinal_type GO;
153 typedef typename Teuchos::ScalarTraits<scalar_type>::magnitudeType
magnitude_type;
176 template <
class NewMatrixType>
friend class RBILUK;
182 typedef typename crs_matrix_type::local_matrix_device_type local_matrix_device_type;
183 typedef typename local_matrix_device_type::StaticCrsGraphType::row_map_type lno_row_view_t;
184 typedef typename local_matrix_device_type::StaticCrsGraphType::entries_type lno_nonzero_view_t;
185 typedef typename local_matrix_device_type::values_type scalar_nonzero_view_t;
186 typedef typename local_matrix_device_type::StaticCrsGraphType::device_type::memory_space TemporaryMemorySpace;
187 typedef typename local_matrix_device_type::StaticCrsGraphType::device_type::memory_space PersistentMemorySpace;
188 typedef typename local_matrix_device_type::StaticCrsGraphType::device_type::execution_space HandleExecSpace;
189 typedef typename KokkosKernels::Experimental::KokkosKernelsHandle
190 <
typename lno_row_view_t::const_value_type,
typename lno_nonzero_view_t::const_value_type,
typename scalar_nonzero_view_t::value_type,
191 HandleExecSpace, TemporaryMemorySpace,PersistentMemorySpace > kk_handle_type;
195 Teuchos::RCP<kk_handle_type> KernelHandle_;
204 RBILUK (
const Teuchos::RCP<const row_matrix_type>& A_in);
209 RBILUK (
const Teuchos::RCP<const block_crs_matrix_type>& A_in);
214 RBILUK (
const RBILUK<MatrixType> & src);
245 using RILUK<Tpetra::RowMatrix<
typename MatrixType::scalar_type,
246 typename MatrixType::local_ordinal_type,
247 typename MatrixType::global_ordinal_type,
273 setMatrix (
const Teuchos::RCP<const block_crs_matrix_type>& A);
316 apply (
const Tpetra::MultiVector<scalar_type,local_ordinal_type,global_ordinal_type,node_type>& X,
317 Tpetra::MultiVector<scalar_type,local_ordinal_type,global_ordinal_type,node_type>& Y,
318 Teuchos::ETransp mode = Teuchos::NO_TRANS,
319 scalar_type alpha = Teuchos::ScalarTraits<scalar_type>::one (),
320 scalar_type beta = Teuchos::ScalarTraits<scalar_type>::zero ())
const;
329 const block_crs_matrix_type&
getLBlock ()
const;
332 const block_crs_matrix_type&
getDBlock ()
const;
335 const block_crs_matrix_type&
getUBlock ()
const;
338 typedef Tpetra::MultiVector<scalar_type,local_ordinal_type,global_ordinal_type,node_type> MV;
339 typedef Teuchos::ScalarTraits<impl_scalar_type> STS;
340 typedef Teuchos::ScalarTraits<magnitude_type> STM;
341 typedef typename block_crs_matrix_type::little_block_type little_block_type;
342 typedef typename block_crs_matrix_type::little_block_host_type little_block_host_type;
343 typedef typename block_crs_matrix_type::little_vec_type little_vec_type;
344 typedef typename block_crs_matrix_type::little_host_vec_type little_host_vec_type;
345 typedef typename block_crs_matrix_type::const_host_little_vec_type const_host_little_vec_type;
347 using local_inds_host_view_type =
typename block_crs_matrix_type::local_inds_host_view_type;
348 using values_host_view_type =
typename block_crs_matrix_type::values_host_view_type;
349 using local_inds_device_view_type =
typename block_crs_matrix_type::local_inds_device_view_type;
350 using values_device_view_type =
typename block_crs_matrix_type::values_device_view_type;
352 void allocate_L_and_U_blocks();
353 void initAllValues ();
359 Teuchos::RCP<block_crs_matrix_type> L_block_;
361 Teuchos::RCP<block_crs_matrix_type> U_block_;
363 Teuchos::RCP<block_crs_matrix_type> D_block_;
366 Teuchos::RCP<block_crs_matrix_type> D_block_inverse_;
void apply(const Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &X, Tpetra::MultiVector< scalar_type, local_ordinal_type, global_ordinal_type, node_type > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, scalar_type alpha=Teuchos::ScalarTraits< scalar_type >::one(), scalar_type beta=Teuchos::ScalarTraits< scalar_type >::zero()) const
Apply the (inverse of the) incomplete factorization to X, resulting in Y.
Definition Ifpack2_Experimental_RBILUK_def.hpp:920