Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions projects/rocprim/test/rocprim/test_utils_assertions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,10 @@

namespace test_utils {

#if ROCPRIM_HAS_INT128_SUPPORT
template<class T>
using is_int128 = std::is_same<rocprim::int128_t, typename std::remove_cv<T>::type>;
template<class T>
using is_uint128 = std::is_same<rocprim::uint128_t, typename std::remove_cv<T>::type>;
#else
template<class T>
using is_int128 = std::false_type;
template<class T>
using is_uint128 = std::false_type;
#endif // ROCPRIM_HAS_INT128_SUPPORT

template<class T>
using is_double_custom_type = std::is_same<typename std::remove_cv<T>::type, common::custom_type<double,double,1>>;
Expand Down
Loading