From c6996c8b7f913a12f5f99a5e3b8642d020e4dfc0 Mon Sep 17 00:00:00 2001 From: Aviral Goel Date: Thu, 12 Jun 2025 18:27:14 -0400 Subject: [PATCH] fix(gemm_universal): Update gemm_utils.hpp so it builds successfully for memory pipeline (#2336) [ROCm/composable_kernel commit: e5ece1446782b99877792d51e4ed3119dfd7000a] --- example/ck_tile/03_gemm/gemm_utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/ck_tile/03_gemm/gemm_utils.hpp b/example/ck_tile/03_gemm/gemm_utils.hpp index aec5f6a116..cd4ace6d2f 100644 --- a/example/ck_tile/03_gemm/gemm_utils.hpp +++ b/example/ck_tile/03_gemm/gemm_utils.hpp @@ -49,7 +49,7 @@ struct GemmConfig static constexpr ck_tile::index_t M_Warp_Tile = 32; static constexpr ck_tile::index_t N_Warp_Tile = 32; - static constexpr ck_tile::index_t K_Warp_Tile = 8; + static constexpr ck_tile::index_t K_Warp_Tile = 16; static constexpr bool DoubleSmemBuffer = false; #endif