Enable DPP8 GEMM on Navi3 (#892)

This commit is contained in:
Bartlomiej Wroblewski
2023-09-08 18:14:57 +02:00
committed by GitHub
parent 562b4cec48
commit 8f84a01237
2 changed files with 4 additions and 2 deletions

View File

@@ -168,7 +168,8 @@ struct DeviceGemmDpp : public DeviceGemm<ALayout,
static bool IsSupportedArgument(const Argument& karg)
{
if(ck::get_device_name() == "gfx1030")
if(ck::get_device_name() == "gfx1030" || ck::get_device_name() == "gfx1100" ||
ck::get_device_name() == "gfx1101" || ck::get_device_name() == "gfx1102")
{
return GridwiseGemm::CheckValidity(karg);
}