Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/tpetra/core/src/Tpetra_CrsMatrix_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8930,7 +8930,11 @@ void copyAndPermuteStaticGraphNew(
using LO = LocalOrdinal;
using GO = GlobalOrdinal;

#if KOKKOS_VERSION >= 40799
using impl_scalar_type = typename KokkosKernels::ArithTraits<Scalar>::val_type;
#else
using impl_scalar_type = typename Kokkos::ArithTraits<Scalar>::val_type;
#endif

using crs_matrix_type = CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node>;

Expand Down
Loading