Merge commit 'd5ae81b2922773f7cdf4a02a2e1fd57d0e4df851' into develop

This commit is contained in:
assistant-librarian[bot]
2026-01-20 22:14:29 +00:00
parent 5f61470a1f
commit b2c76ff10f
22 changed files with 2956 additions and 499 deletions

View File

@@ -14,7 +14,7 @@ namespace ck {
template <typename F, index_t... ids>
__host__ __device__ constexpr auto generate_tuple_for(F&& f, Sequence<ids...>)
{
return make_tuple(f(Number<ids>{})...);
return ck::make_tuple(f(Number<ids>{})...);
}
template <typename F, index_t N>