From f5d0ee650bc6ce8c87096fd1d173e2e2a2baeb6a Mon Sep 17 00:00:00 2001 From: kjayapra-amd Date: Mon, 30 Sep 2024 06:30:33 -0400 Subject: [PATCH] SWDEV-460151 - Enabling gfx12 in HIP runtime. Change-Id: I374ea7c3119b0c61f9846a862c4a448ddb179748 --- rocclr/device/device.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rocclr/device/device.cpp b/rocclr/device/device.cpp index 08ce8eb6e9..76a6cb7161 100644 --- a/rocclr/device/device.cpp +++ b/rocclr/device/device.cpp @@ -221,6 +221,8 @@ std::pair Isa::supportedIsas() { {"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}, + {"gfx1200", "gfx1200", true, true, 12, 0, 0, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, + {"gfx1201", "gfx1201", true, true, 12, 0, 1, NONE, NONE, 2, 32, 1, 256, 64 * Ki, 32}, }; return std::make_pair(std::begin(supportedIsas_), std::end(supportedIsas_)); }