Skip to content

Commit

Permalink
Tpetra: Experimental::HIP* -> HIP* fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
csiefer2 committed Oct 18, 2023
1 parent 9d46570 commit 97c51a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace KokkosCompat {

#ifdef KOKKOS_ENABLE_HIP
template<>
std::string KokkosDeviceWrapperNode<Kokkos::HIP, Kokkos::Experimental::HIPSpace>::name() {
std::string KokkosDeviceWrapperNode<Kokkos::HIP, Kokkos::HIPSpace>::name() {
return std::string("HIP/Wrapper");
}
#endif // KOKKOS_ENABLE_HIP
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class KokkosDeviceWrapperNode {
#endif

#ifdef KOKKOS_ENABLE_HIP
typedef KokkosDeviceWrapperNode<::Kokkos::HIP, ::Kokkos::Experimental::HIPSpace> KokkosHIPWrapperNode;
typedef KokkosDeviceWrapperNode<::Kokkos::HIP, ::Kokkos::HIPSpace> KokkosHIPWrapperNode;
#endif

#ifdef KOKKOS_ENABLE_CUDA
Expand Down
2 changes: 1 addition & 1 deletion packages/tpetra/core/test/Comm/gpuAwareMpi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ namespace { // (anonymous)
typedef Kokkos::Device<Kokkos::Cuda, Kokkos::CudaSpace> test_device_type;
typedef Tpetra::KokkosCompat::KokkosCudaWrapperNode test_node_type;
#elif defined(KOKKOS_ENABLE_HIP)
typedef Kokkos::Device<Kokkos::HIP, Kokkos::Experimental::HIPSpace> test_device_type;
typedef Kokkos::Device<Kokkos::HIP, Kokkos::HIPSpace> test_device_type;
typedef Tpetra::KokkosCompat::KokkosHIPWrapperNode test_node_type;
#elif defined(KOKKOS_ENABLE_SYCL)
typedef Kokkos::Device<Kokkos::Experimental::SYCL, Kokkos::Experimental::SYCLSpace> test_device_type;
Expand Down

0 comments on commit 97c51a4

Please sign in to comment.