From 6b361f5a4beef653b1f943a2e348adb2b0154f3a Mon Sep 17 00:00:00 2001 From: "PoYen, Chen" Date: Sun, 18 Aug 2024 00:42:22 +0000 Subject: [PATCH] Clarify the case in warning message --- 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 a8d816a528..225dcf12c3 100644 --- a/example/ck_tile/01_fmha/fmha_fwd.cpp +++ b/example/ck_tile/01_fmha/fmha_fwd.cpp @@ -327,7 +327,7 @@ bool run(const ck_tile::ArgParser& arg_parser) auto mode = static_cast(arg_parser.get_uint32("mode")); if((use_cache_batch_idx || 0 < page_block_size) && mode != mode_enum::batch) { - std::cerr << "kvcache enabled. ignoring the 'mode' option" << std::endl; + std::cerr << "both kvcache & split-kv enabled. ignoring the 'mode' option" << std::endl; mode = mode_enum::batch; }