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

Function construct

include/cute/algorithm/tuple_algorithms.hpp:626–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624// Shortcut around cute::tuple_cat for common insert/remove/repeat cases
625template <class T, class X, int... I, int... J, int... K>
626CUTE_HOST_DEVICE constexpr
627auto
628construct(T const& t, X const& x, seq<I...>, seq<J...>, seq<K...>)
629{
630 return cute::make_tuple(get<I>(t)..., (void(J),x)..., get<K>(t)...);
631}
632
633} // end namespace detail
634

Callers 10

insertFunction · 0.85
removeFunction · 0.85
replaceFunction · 0.85
replace_frontFunction · 0.85
replace_backFunction · 0.85
tuple_repeatFunction · 0.85
repeatFunction · 0.85
groupFunction · 0.85
appendFunction · 0.85
prependFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected