Add support for more Navi2x and Navi3x models. (#1152)

* add support for navi2x and navi3x models

* fix syntax

* use common macro for different mi300 architectures

[ROCm/composable_kernel commit: 180f16f9ac]
This commit is contained in:
Illia Silin
2024-02-02 11:35:26 -08:00
committed by GitHub
parent 459e8e2596
commit b71f0c2938
69 changed files with 194 additions and 194 deletions

View File

@@ -55,10 +55,7 @@ class TestGroupedConvndBwdWeight : public ::testing::Test
}
}
const bool is_navi3x = ck::get_device_name() == "gfx1100" ||
ck::get_device_name() == "gfx1101" ||
ck::get_device_name() == "gfx1102";
if(is_navi3x)
if(ck::is_navi3_supported())
{
// on navi3x only support for 3d is implemented
if constexpr(NDimSpatial{} != 3)