Merge commit '1c6f83df6c1d96668feb5ab7fd3f7d9fbc69d264' into develop

This commit is contained in:
assistant-librarian[bot]
2025-06-06 22:10:54 +00:00
parent ffe5283fd0
commit 3b5833b030
10 changed files with 233 additions and 18 deletions

View File

@@ -18,9 +18,12 @@ template <typename ADataType,
typename CDataType,
typename ALayout,
typename BLayout,
typename CLayout>
typename CLayout,
bool Persistent>
float gemm_calc(const ck_tile::GemmHostArgs& args, const ck_tile::stream_config& s)
{
if constexpr(Persistent)
std::cout << "WARNING: Ignoring persistent kernel option for basic gemm." << std::endl;
// The kPadM, kPadN, kPadK & kBlockPerCu should also come from the Codegen part.
constexpr bool kPadM = false;
constexpr bool kPadN = false;