From e71d3df441f466d0897f81c9de583acbc16f54a2 Mon Sep 17 00:00:00 2001 From: Estevan Vedovelli Date: Thu, 15 Jan 2026 09:35:24 -0500 Subject: [PATCH] Fix error when building with -DCMAKE_BUILD_TYPE=Debug (#3541) Co-authored-by: Illia Silin <98187287+illsilin@users.noreply.github.com> [ROCm/composable_kernel commit: e30207985aa5d9d0b53dc837904bf2ac3063a412] --- .../ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp b/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp index 897892afb2..ee8527c458 100644 --- a/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp +++ b/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp @@ -59,7 +59,7 @@ struct BaseFlatmmPipelineAGmemBGmemCRegV1 return TailHandler(run_func, has_hot_loop); else { - assert(("Wrong TailNumber!", false)); + assert(false && "Wrong TailNumber!"); return TailHandler(run_func, has_hot_loop); } }