diff --git a/example/ck_tile/01_fmha/fmha_fwd.hpp b/example/ck_tile/01_fmha/fmha_fwd.hpp index 350e0aeb3d..ee6c672339 100644 --- a/example/ck_tile/01_fmha/fmha_fwd.hpp +++ b/example/ck_tile/01_fmha/fmha_fwd.hpp @@ -142,12 +142,6 @@ struct fmha_fwd_args std::tuple drop_seed_offset; }; -#if defined(ENABLE_APP_DEBUG_STMTS) -#define APP_DEBUG_STMTS if(true) -#else -#define APP_DEBUG_STMTS if(false) -#endif - template auto fmha_fwd_create_kargs_and_grids(fmha_fwd_args args) { @@ -338,12 +332,6 @@ auto fmha_fwd_splitkv_create_kargs_and_grids(fmha_fwd_args args) dim3 grids = FmhaFwdSplitKVKernel::GridSize( args.batch, args.nhead_q, args.max_seqlen_q, args.hdim_v, args.num_splits); - APP_DEBUG_STMTS - { - std::cout << "splitkv grid size: " << grids.x << ", " << grids.y << ", " << grids.z - << std::endl; - } - return ck_tile::make_tuple(kargs, grids); } @@ -394,12 +382,6 @@ auto fmha_fwd_splitkv_combine_create_kargs_and_grids(fmha_fwd_args args) dim3 grids = FmhaFwdSplitKVCombineKernel::GridSize( args.batch, args.nhead_q, args.max_seqlen_q, args.hdim_v); - APP_DEBUG_STMTS - { - std::cout << "splitkv-combine grid size: " << grids.x << ", " << grids.y << ", " << grids.z - << std::endl; - } - return ck_tile::make_tuple(kargs, grids); }