Skip to content

Commit

Permalink
Merge pull request ornladios#3571 from anagainaru/hip-adios-view
Browse files Browse the repository at this point in the history
Allowing Put/Get to receive Kokkos Views with HIP backend
  • Loading branch information
anagainaru authored Mar 31, 2023
2 parents a9dce35 + 60877b3 commit f102c60
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bindings/CXX11/adios2/cxx11/KokkosView.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,26 @@ struct memspace_kokkos_to_adios2<Kokkos::CudaHostPinnedSpace>

#endif

#if defined(KOKKOS_ENABLE_HIP) && defined(ADIOS2_HAVE_GPU_SUPPORT)
template <>
struct memspace_kokkos_to_adios2<Kokkos::Experimental::HIPSpace>
{
static constexpr adios2::MemorySpace value = adios2::MemorySpace::GPU;
};

template <>
struct memspace_kokkos_to_adios2<Kokkos::Experimental::HIPHostPinnedSpace>
{
static constexpr adios2::MemorySpace value = adios2::MemorySpace::GPU;
};

template <>
struct memspace_kokkos_to_adios2<Kokkos::Experimental::HIPManagedSpace>
{
static constexpr adios2::MemorySpace value = adios2::MemorySpace::GPU;
};
#endif

} // namespace detail

template <class T, class... Parameters>
Expand Down

0 comments on commit f102c60

Please sign in to comment.