From e2b49690f2933c74bb468c795499c9a0c9d70bac Mon Sep 17 00:00:00 2001 From: kjayapra-amd Date: Tue, 5 Jul 2022 09:52:07 -0700 Subject: [PATCH] SWDEV-344950 - Enable gfx1100 and gfx1102 on ROCm backend. Change-Id: Ic559a804e6d504b73a7cea4aba086790956ee018 --- rocclr/device/device.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rocclr/device/device.cpp b/rocclr/device/device.cpp index bdc7e1e73a..54689a209f 100644 --- a/rocclr/device/device.cpp +++ b/rocclr/device/device.cpp @@ -186,6 +186,8 @@ 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}, + {"gfx1100", "gfx1100", true, true, 11, 0, 0, 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}, }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); }