From 2aa7e5819f69b3771958ea12cfd169ff90b7521c Mon Sep 17 00:00:00 2001 From: jie1zhan Date: Wed, 24 Aug 2022 08:57:53 +0800 Subject: [PATCH] SWDEV-352127 - Fix clinfo issue, add new asic id Change-Id: Idc6ff6fe647878f32f8dbb0613cbb879ea21ecdf --- rocclr/device/device.cpp | 1 + rocclr/device/pal/paldevice.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/rocclr/device/device.cpp b/rocclr/device/device.cpp index 126b4b7ca0..340e6d065a 100644 --- a/rocclr/device/device.cpp +++ b/rocclr/device/device.cpp @@ -187,6 +187,7 @@ std::pair Isa::supportedIsas() { {"gfx1033", "gfx1033", true, false, 10, 3, 3, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1034", "gfx1034", true, true, 10, 3, 4, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1035", "gfx1035", true, true, 10, 3, 5, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, + {"gfx1036", "gfx1036", true, true, 10, 3, 6, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1100", "gfx1100", true, true, 11, 0, 0, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1101", "gfx1101", true, true, 11, 0, 1, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1102", "gfx1102", true, true, 11, 0, 2, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, diff --git a/rocclr/device/pal/paldevice.cpp b/rocclr/device/pal/paldevice.cpp index 2c9a83c31b..36b79ae97f 100644 --- a/rocclr/device/pal/paldevice.cpp +++ b/rocclr/device/pal/paldevice.cpp @@ -104,6 +104,7 @@ static constexpr PalDevice supportedPalDevices[] = { {10, 3, 2, Pal::GfxIpLevel::GfxIp10_3, "gfx1032", Pal::AsicRevision::Navi23}, {10, 3, 4, Pal::GfxIpLevel::GfxIp10_3, "gfx1034", Pal::AsicRevision::Navi24}, {10, 3, 5, Pal::GfxIpLevel::GfxIp10_3, "gfx1035", Pal::AsicRevision::Rembrandt}, + {10, 3, 6, Pal::GfxIpLevel::GfxIp10_3, "gfx1036", Pal::AsicRevision::Raphael}, }; static std::tuple findIsa(Pal::AsicRevision asicRevision,