Add new instances for merging multiple fwd conv groups into a single GEMM batch. Allow group merging for C > 1 when vector load/store size is 1 for the output tensor.

This commit is contained in:
Ville Pietilä
2026-01-23 06:07:02 -05:00
parent 2e08a7e5ab
commit f88efddea4
2 changed files with 8 additions and 4 deletions

View File

@@ -1513,7 +1513,7 @@ struct DeviceGroupedConvFwdMultipleABD_Xdl_CShuffle
if constexpr(NumGroupsToMerge > 1)
{
if(!(C == 1))
if(!(C == 1) && CDEBlockTransferScalarPerVector_NPerBlock > 1)
{
return false;
}