enable_if.hpp 505 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
// SPDX-License-Identifier: MIT
Illia Silin's avatar
Illia Silin committed
2
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
Chao Liu's avatar
Chao Liu committed
3

4
#pragma once
Umang Yadav's avatar
Umang Yadav committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifdef __HIPCC_RTC__
namespace std {
template <bool B, class T = void>
struct enable_if
{
};

template <class T>
struct enable_if<true, T>
{
    using type = T;
};
}
#endif
Chao Liu's avatar
Chao Liu committed
19
20
21
22
23
24
25
26
27
28

namespace ck {

template <bool B, typename T = void>
using enable_if = std::enable_if<B, T>;

template <bool B, typename T = void>
using enable_if_t = typename std::enable_if<B, T>::type;

} // namespace ck