From 11873d4eff58a6d3d70f4aa0a2c8fc11c8089e8a Mon Sep 17 00:00:00 2001 From: Lang Yu Date: Sat, 22 Jul 2023 15:08:15 +0800 Subject: [PATCH] SWDEV-396372 - Add support for gfx1150 and gfx1151 Change-Id: If97710f18fbb61bead5cfe92ce11e11b4895b029 Signed-off-by: Lang Yu [ROCm/clr commit: c674d94a1227118dfbac5c47a50b6c3162b7c776] --- projects/clr/rocclr/device/device.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/clr/rocclr/device/device.cpp b/projects/clr/rocclr/device/device.cpp index b0cab834fa..bf88996f47 100644 --- a/projects/clr/rocclr/device/device.cpp +++ b/projects/clr/rocclr/device/device.cpp @@ -219,6 +219,8 @@ std::pair Isa::supportedIsas() { {"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}, + {"gfx1150", "gfx1150", true, true, 11, 5, 0, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, + {"gfx1151", "gfx1151", true, true, 11, 5, 1, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); }