diff --git a/rocclr/runtime/device/pal/paldefs.hpp b/rocclr/runtime/device/pal/paldefs.hpp index 449cd9233a..7f8f092594 100644 --- a/rocclr/runtime/device/pal/paldefs.hpp +++ b/rocclr/runtime/device/pal/paldefs.hpp @@ -154,7 +154,7 @@ static const AMDDeviceInfo GfxIpDeviceInfo[] = { /* GFX600 */ {"gfx600", "gfx600", 4, 16, 1, 256, 64 * Ki, 32, 600}, /* GFX700 */ {"gfx700", "gfx700", 4, 16, 1, 256, 64 * Ki, 32, 700}, /* GFX800 */ {"gfx800", "gfx800", 4, 16, 1, 256, 64 * Ki, 32, 800}, - /* GFX801 */ {"gfx801", "gfx801", 4, 16, 1, 256, 64 * Ki, 32, 801}, + /* GFX810 */ {"gfx810", "gfx810", 4, 16, 1, 256, 64 * Ki, 32, 810}, /* GFX900 */ {"gfx900", "gfx900", 4, 16, 1, 256, 64 * Ki, 32, 900}, /* GFX1000 */ {"gfx1000", "gfx1000", 4, 16, 1, 256, 64 * Ki, 32, 1000 }, }; diff --git a/rocclr/runtime/device/pal/paldevice.cpp b/rocclr/runtime/device/pal/paldevice.cpp index f944528e58..92833852b0 100644 --- a/rocclr/runtime/device/pal/paldevice.cpp +++ b/rocclr/runtime/device/pal/paldevice.cpp @@ -99,7 +99,7 @@ bool NullDevice::init() { // Loop through all supported devices and create each of them for (uint id = static_cast(Pal::GfxIpLevel::GfxIp7); - id <= static_cast(Pal::GfxIpLevel::GfxIp9); ++id) { + id <= static_cast(Pal::GfxIpLevel::GfxIp10); ++id) { bool foundActive = false; Pal::GfxIpLevel ipLevel = static_cast(id); diff --git a/rocclr/runtime/device/pal/palsettings.cpp b/rocclr/runtime/device/pal/palsettings.cpp index e05fa0ba39..8dcf524a40 100644 --- a/rocclr/runtime/device/pal/palsettings.cpp +++ b/rocclr/runtime/device/pal/palsettings.cpp @@ -164,6 +164,7 @@ bool Settings::create(const Pal::DeviceProperties& palProp, switch (palProp.revision) { case Pal::AsicRevision::Unknown: switch (palProp.gfxLevel) { + case Pal::GfxIpLevel::GfxIp10: case Pal::GfxIpLevel::GfxIp9: aiPlus_ = true; break; @@ -410,6 +411,7 @@ bool Settings::create(const Pal::DeviceProperties& palProp, #if defined(WITH_LIGHTNING_COMPILER) switch (palProp.gfxLevel) { + case Pal::GfxIpLevel::GfxIp10: case Pal::GfxIpLevel::GfxIp9: singleFpDenorm_ = true; break;