cuda::experimental::stf::array_tuple#
-
template<typename T, size_t n>
using cuda::experimental::stf::array_tuple = decltype(to_tuple(::std::array<T, n>{}))# Array-like tuple with a single element type repeated
ntimes.The
array_tupletemplate generates astd::tuplewith a single typeTrepeatedntimes. This can be used to create a tuple with consistent types and a fixed size.- Template Parameters:
T – The type of the elements that the tuple will contain.
n – The number of elements that the tuple will contain.