mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-29 11:16:59 +00:00
edit Argument check
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user