Apply clang-format with -style=file

This commit is contained in:
Max Podkorytov
2026-01-22 03:14:00 +00:00
parent f0655784fb
commit eed4270cb7

View File

@@ -46,7 +46,8 @@ __host__ __device__ constexpr auto generate_tie(F&& f, Number<N>)
// - Lambda approach: N unique lambda types for N sequences → O(N) instantiations
// - Named functor approach: Single functor type → O(1) instantiation overhead
//
// The detail::make_identity_sequences_impl creates a Sequence<I> for each index I via pack expansion
// The detail::make_identity_sequences_impl creates a Sequence<I> for each index I via pack
// expansion
//
// Impact: Reduces instantiation overhead for identity sequence generation (common in transforms)
//