From d6c35273e3b4ac229881ecd0b7688204d11b8589 Mon Sep 17 00:00:00 2001 From: Yifan Zhang Date: Thu, 1 Sep 2022 18:33:30 +0800 Subject: [PATCH] SWDEV-354850 - Enable gfx1103 on ROCm backend. Signed-off-by: Yifan Zhang Change-Id: Ia420444fd0cb703fcdca1ed7e3d2e262ffd7f4db --- rocclr/device/device.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rocclr/device/device.cpp b/rocclr/device/device.cpp index fffc3fbdcc..2394efb32d 100644 --- a/rocclr/device/device.cpp +++ b/rocclr/device/device.cpp @@ -191,6 +191,7 @@ std::pair Isa::supportedIsas() { {"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}, + {"gfx1103", "gfx1103", true, true, 11, 0, 3, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); }