From 19a156aa0a609a14e16d8efeb21708fd6968fafd Mon Sep 17 00:00:00 2001 From: Max Podkorytov <4273004+tenpercent@users.noreply.github.com> Date: Thu, 22 Jan 2026 03:17:44 +0000 Subject: [PATCH] Apply clang-format with -style=file --- include/ck/utility/sequence_helper.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ck/utility/sequence_helper.hpp b/include/ck/utility/sequence_helper.hpp index 60fc78e072..427a8c0cef 100644 --- a/include/ck/utility/sequence_helper.hpp +++ b/include/ck/utility/sequence_helper.hpp @@ -92,8 +92,8 @@ struct FindTransformResult // // Why this approach: // - Nested static_for (OLD): Creates lambda closure for each iteration level -// Example: Searching Tuple, Seq<2,3>, Seq<4,5>> creates multiple applier::operator() instantiations -// Result: Many applier instantiations for typical tensor descriptor operations +// Example: Searching Tuple, Seq<2,3>, Seq<4,5>> creates multiple applier::operator() +// instantiations Result: Many applier instantiations for typical tensor descriptor operations // // - Pack expansion + constexpr (NEW): Single function with compile-time array search // Example: Same search creates constexpr array, single search function