alpaka
Abstraction Library for Parallel Kernel Acceleration
TaskKernelGpuHipRt.hpp
Go to the documentation of this file.
1 /* Copyright 2022 Andrea Bocci
2  * SPDX-License-Identifier: MPL-2.0
3  */
4 
5 #pragma once
6 
9 
10 #ifdef ALPAKA_ACC_GPU_HIP_ENABLED
11 
12 namespace alpaka
13 {
14  template<typename TAcc, typename TDim, typename TIdx, typename TKernelFnObj, typename... TArgs>
15  using TaskKernelGpuHipRt = TaskKernelGpuUniformCudaHipRt<ApiHipRt, TAcc, TDim, TIdx, TKernelFnObj, TArgs...>;
16 } // namespace alpaka
17 
18 #endif // ALPAKA_ACC_GPU_HIP_ENABLED
The alpaka accelerator library.