From bacba218d72bc16728bca978414900f098e48ffb Mon Sep 17 00:00:00 2001 From: "PoYen, Chen" Date: Thu, 29 Jan 2026 08:05:36 -0600 Subject: [PATCH] [CK_BUILDER] Fix missing template arguments in ConvBwdWeightV3 test Add DirectLoad and NumGroupsToMerge template parameters to the DeviceGroupedConvBwdWeight_Xdl_CShuffleV3 test instantiation. These parameters were added to the device implementation in #3648 but the forward declaration in the reflect header does not have default values, requiring explicit specification in test code. --- experimental/builder/test/conv/ck/test_conv_traits.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/experimental/builder/test/conv/ck/test_conv_traits.cpp b/experimental/builder/test/conv/ck/test_conv_traits.cpp index 3221113565..7de7fae92d 100644 --- a/experimental/builder/test/conv/ck/test_conv_traits.cpp +++ b/experimental/builder/test/conv/ck/test_conv_traits.cpp @@ -812,7 +812,9 @@ TEST_F(ConvTraitsTest, ConvBwdWeightXdlCshuffleV3TraitsExtraction) ck::BlockGemmPipelineScheduler::Intrawave, // BlkGemmPipeSched ck::BlockGemmPipelineVersion::v1, // BlkGemmPipelineVer ck::half_t, // AComputeDataType - ck::half_t>; // BComputeDataType + ck::half_t, // BComputeDataType + false, // DirectLoad + 1>; // NumGroupsToMerge // Use ConvTraitsTmpl to extract compile-time information const auto traits = ck_tile::reflect::conv::instance_to_conv_traits();