mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
[CK_BUILDER] Ck Tile Grouped convolution factory (#3352)
* [BUILDER] Ck Tile Grouped convolution factory * Part 2 * Fixes after rebase * Remove leftovers
This commit is contained in:
@@ -176,8 +176,10 @@ struct GemmPipelineAgBgCrCompV3 : public BaseGemmPipelineAgBgCrCompV3<Problem>
|
||||
constexpr index_t WaveNumN = BlockGemmShape::BlockWarps::at(I1{});
|
||||
return concat('_', "pipeline_AgBgCrCompV3",
|
||||
concat('x', MPerBlock, NPerBlock, KPerBlock), BlockSize,
|
||||
concat('x', GetVectorSizeA(), GetVectorSizeB(), GetVectorSizeC()),
|
||||
concat('x', WaveNumM, WaveNumN),
|
||||
concat('x', kPadM, kPadN, kPadK));
|
||||
concat('x', kPadM, kPadN, kPadK),
|
||||
Problem::GetName());
|
||||
// clang-format on
|
||||
}
|
||||
|
||||
|
||||
@@ -301,7 +301,12 @@ struct UniversalGemmPipelineProblem
|
||||
return concat('_', "gemm_problem",
|
||||
concat('x', kBlockSize),
|
||||
concat('x', kPadM, kPadN, kPadK),
|
||||
Scheduler);
|
||||
Scheduler,
|
||||
"NumWaveGroups",
|
||||
NumWaveGroups,
|
||||
"DoubleSmemBuffer",
|
||||
DoubleSmemBuffer
|
||||
);
|
||||
// clang-format on
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user