mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
Fix K padding calculation for grouped conv data (#876)
* Fix K padding calculation for grouped conv data * Restore previous padd for 1x1 specialization
This commit is contained in:
@@ -268,6 +268,8 @@ struct GridwiseGemmMultipleD_xdl_cshuffle
|
||||
static_assert((MPerBlock % (MPerXdl * MXdlPerWave) == 0) &&
|
||||
(NPerBlock % (NXdlPerWave * NPerXdl)) == 0,
|
||||
"Invalid tuning param!");
|
||||
static_assert(KPerBlock % AK1Value == 0 && KPerBlock % BK1Value == 0,
|
||||
"KPerBlock must be divisible by AK1Value and BK1Value!");
|
||||
|
||||
const auto M = a_grid_desc_m_k.GetLength(I0);
|
||||
const auto N = b_grid_desc_n_k.GetLength(I0);
|
||||
|
||||
Reference in New Issue
Block a user