From 32d69cc58fc089a4d6e1f8b800634bb2c2f52394 Mon Sep 17 00:00:00 2001 From: ltqin Date: Mon, 25 Aug 2025 03:22:00 +0000 Subject: [PATCH] format --- example/ck_tile/01_fmha/fmha_fwd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ck_tile/01_fmha/fmha_fwd.cpp b/example/ck_tile/01_fmha/fmha_fwd.cpp index a3ef2e21bf..d6d3ac1fbc 100644 --- a/example/ck_tile/01_fmha/fmha_fwd.cpp +++ b/example/ck_tile/01_fmha/fmha_fwd.cpp @@ -1289,7 +1289,7 @@ bool run(const ck_tile::ArgParser& arg_parser) // clang-format off // permute - if(i_perm) q_host_ref.ForEach([&](auto& self, auto i) { self(i) = q_host(b_idx, i[0], i[1] + query_offset, i[2]); }); + if(i_perm) q_host_ref.ForEach([&](auto& self, auto i) { self(i) = q_host(b_idx, i[0], i[1] + query_offset, i[2]); }); else q_host_ref.ForEach([&](auto& self, auto i) { self(i) = q_host(b_idx, i[1] + query_offset, i[0], i[2]); }); #if CK_TILE_FMHA_FWD_APPENDKV_API