From: Daniel Arndt Date: Tue, 6 Aug 2024 15:06:18 +0000 (-0400) Subject: Define HostViewType in terms of DualViewType X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=598058a9053ec02a939c48f24b503b255e15e2c3;p=dealii.git Define HostViewType in terms of DualViewType --- diff --git a/include/deal.II/lac/trilinos_tpetra_types.h b/include/deal.II/lac/trilinos_tpetra_types.h index fb5242ad37..56de340066 100644 --- a/include/deal.II/lac/trilinos_tpetra_types.h +++ b/include/deal.II/lac/trilinos_tpetra_types.h @@ -145,17 +145,6 @@ namespace LinearAlgebra using RowMatrixType = Tpetra::RowMatrix>; - - /** - * @brief Typedef for the Kokkos::View type. - * This is needed for shallow copies of deal.II LA structures - * to Trilinos LA structures. - * - */ - template - using HostViewType = - typename VectorType::host_view_type; - /** * @brief Typedef for the Kokkos::DualView type. * This is needed for shallow copies of deal.II LA structures @@ -165,6 +154,15 @@ namespace LinearAlgebra using DualViewType = typename VectorType::dual_view_type; + /** + * @brief Typedef for the Kokkos::View type. + * This is needed for shallow copies of deal.II LA structures + * to Trilinos LA structures. + * + */ + template + using HostViewType = + typename DualViewType::t_host; # ifdef DEAL_II_TRILINOS_WITH_IFPACK2 /**