mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-07 08:15:04 +00:00
Revert "Add type traits 'is_signed_integral<>'"
This reverts commit f2c148efae.
This commit is contained in:
@@ -57,13 +57,4 @@ __host__ __device__ constexpr Y bit_cast(const X& x)
|
||||
#endif
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
struct is_signed_integral
|
||||
: public integral_constant<bool, std::is_signed_v<T> && std::is_integral_v<T>>
|
||||
{
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
inline constexpr bool is_signed_integral_v = is_signed_integral<T>::value;
|
||||
|
||||
} // namespace ck
|
||||
|
||||
Reference in New Issue
Block a user