From 9f2bb57232f527853b2d78e40fa2a56c93a66d43 Mon Sep 17 00:00:00 2001 From: Vladislav Sytchenko Date: Wed, 3 Mar 2021 10:30:04 -0500 Subject: [PATCH] SWDEV-1 - Remove unannounced asic Change-Id: I0ec360e7f924dcfbc26bc70981a714abb57804c9 [ROCm/clr commit: b4064ad557d6b68da544c6deb457e020d4432428] --- projects/clr/rocclr/device/device.cpp | 1 - projects/clr/rocclr/device/pal/paldevice.cpp | 3 --- 2 files changed, 4 deletions(-) diff --git a/projects/clr/rocclr/device/device.cpp b/projects/clr/rocclr/device/device.cpp index 3e71317127..4cacdec10d 100644 --- a/projects/clr/rocclr/device/device.cpp +++ b/projects/clr/rocclr/device/device.cpp @@ -186,7 +186,6 @@ std::pair Isa::supportedIsas() { {"gfx1030", "gfx1030", nullptr, true, true, false, 10, 3, 0, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1031", "gfx1031", nullptr, true, true, false, 10, 3, 1, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, {"gfx1032", "gfx1032", nullptr, true, true, false, 10, 3, 2, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, - {"gfx1033", "gfx1033", nullptr, false, true, false, 10, 3, 3, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32} }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); } diff --git a/projects/clr/rocclr/device/pal/paldevice.cpp b/projects/clr/rocclr/device/pal/paldevice.cpp index f739446cab..aae6aa419f 100644 --- a/projects/clr/rocclr/device/pal/paldevice.cpp +++ b/projects/clr/rocclr/device/pal/paldevice.cpp @@ -105,9 +105,6 @@ static constexpr PalDevice supportedPalDevices[] = { {10, 3, 0, Pal::GfxIpLevel::GfxIp10_3, "gfx1030", Pal::AsicRevision::Navi21}, {10, 3, 1, Pal::GfxIpLevel::GfxIp10_3, "gfx1031", Pal::AsicRevision::Navi22}, {10, 3, 2, Pal::GfxIpLevel::GfxIp10_3, "gfx1032", Pal::AsicRevision::Navi23}, -#if PAL_BUILD_VAN_GOGH - {10, 3, 3, Pal::GfxIpLevel::GfxIp10_3, "", Pal::AsicRevision::VanGogh}, -#endif }; static std::tuple findIsa(Pal::AsicRevision asicRevision,