MCPcopy Create free account
hub / github.com/NVIDIA/cutlass / lex_less

Function lex_less

include/cute/int_tuple.hpp:809–820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

807
808template <class IntTupleA, class IntTupleB>
809CUTE_HOST_DEVICE constexpr
810auto
811lex_less(IntTupleA const& a, IntTupleB const& b)
812{
813 if constexpr (is_tuple<IntTupleA>::value && is_tuple<IntTupleB>::value) {
814 return detail::lex_less_impl<0>(a, b);
815 } else {
816 return a < b;
817 }
818
819 CUTE_GCC_UNREACHABLE;
820}
821
822template <class T, class U>
823CUTE_HOST_DEVICE constexpr

Callers 5

TESTFunction · 0.85
lex_less_implFunction · 0.85
lex_leqFunction · 0.85
lex_gtrFunction · 0.85
lex_geqFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected