alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
trait.hpp
Go to the documentation of this file.
1/* Copyright 2024 René Widera
2 * SPDX-License-Identifier: MPL-2.0
3 */
4
5
6#pragma once
7
10
11#include <type_traits>
12
13namespace alpaka::unifiedCudaHip::trait
14{
15 template<alpaka::concepts::Executor T_Executor>
16 struct IsUnifiedExecutor : std::false_type
17 {
18 };
19
20 template<alpaka::concepts::Api T_Api>
21 struct IsUnifiedApi : std::false_type
22 {
23 };
24} // namespace alpaka::unifiedCudaHip::trait