Revert "[CK-TILE] Default epilogue, adding support for D (#2629)" (#2746)

This reverts commit d43228fbca.
This commit is contained in:
John Afaganis
2025-08-26 10:48:49 -06:00
committed by GitHub
parent 5e85c38d7d
commit 508e7912f9
10 changed files with 422 additions and 618 deletions

View File

@@ -175,12 +175,6 @@ struct GemmKernelMultiD
CK_TILE_HOST static auto
IsSupportedArgument(const typename UniversalGemmKernel::KernelArgs& kargs) -> bool
{
// Currently MultiD kernel doesn't support k_batch > 1
if(kargs.k_batch > 1)
{
return false;
}
return UniversalGemmKernel::IsSupportedArgument(kargs);
}