edit Argument check

This commit is contained in:
so
2025-04-23 09:36:17 +00:00
parent 06db661ac2
commit 379854878a

View File

@@ -361,11 +361,11 @@ struct DeviceGemmMultiD_BlockScale_Xdl_CShuffle_V3_BPreshuffle
return false;
}
// Padding to release this restriction
if(arg.N % NPerBlock != 0 || arg.K % KPerBlock != 0)
{
return false;
}
// // Padding to release this restriction
// if(arg.N % NPerBlock != 0 || arg.K % KPerBlock != 0)
// {
// return false;
// }
return GridwiseGemm::CheckValidity(arg);
}