mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 01:10:17 +00:00
* delete obselete files * move files * build * update cmake * update cmake * fix build * reorg examples * update cmake for example and test
14 lines
265 B
C++
14 lines
265 B
C++
#ifndef CK_ENABLE_IF_HPP
|
|
#define CK_ENABLE_IF_HPP
|
|
|
|
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
|
|
#endif
|