Skip to content

Commit

Permalink
Update platform aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Jan 7, 2025
1 parent a5122a9 commit 7b97e01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CLUEstering/alpaka/AlpakaCore/alpakaConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ namespace alpaka_common {

// host types
using DevHost = alpaka::DevCpu;
using PltfHost = alpaka::PltfCpu;
using PlatformHost = alpaka::PltfCpu;

} // namespace alpaka_common

#ifdef ALPAKA_ACC_GPU_CUDA_ENABLED
namespace alpaka_cuda_async {
using namespace alpaka_common;

using Platform = alpaka::PltfCudaRt;
using Platform = alpaka::PlatformCudaRt;
using Device = alpaka::DevCudaRt;
using Queue = alpaka::QueueCudaRtNonBlocking;
using Event = alpaka::EventCudaRt;
Expand All @@ -61,7 +61,7 @@ namespace alpaka_cuda_async {
namespace alpaka_rocm_async {
using namespace alpaka_common;

using Platform = alpaka::PltfHipRt;
using Platform = alpaka::PlatformHipRt;
using Device = alpaka::DevHipRt;
using Queue = alpaka::QueueHipRtNonBlocking;
using Event = alpaka::EventHipRt;
Expand All @@ -84,7 +84,7 @@ namespace alpaka_rocm_async {
namespace alpaka_serial_sync {
using namespace alpaka_common;

using Platform = alpaka::PltfCpu;
using Platform = alpaka::PlatformCpu;
using Device = alpaka::DevCpu;
using Queue = alpaka::QueueCpuBlocking;
using Event = alpaka::EventCpu;
Expand All @@ -107,7 +107,7 @@ namespace alpaka_serial_sync {
namespace alpaka_tbb_async {
using namespace alpaka_common;

using Platform = alpaka::PltfCpu;
using Platform = alpaka::PlatformCpu;
using Device = alpaka::DevCpu;
using Queue = alpaka::QueueCpuNonBlocking;
using Event = alpaka::EventCpu;
Expand All @@ -130,7 +130,7 @@ namespace alpaka_tbb_async {
namespace alpaka_omp2_async {
using namespace alpaka_common;

using Platform = alpaka::PltfCpu;
using Platform = alpaka::PlatformCpu;
using Device = alpaka::DevCpu;
using Queue = alpaka::QueueCpuBlocking;
using Event = alpaka::EventCpu;
Expand Down

0 comments on commit 7b97e01

Please sign in to comment.