From 5a6a6912d9cbe496aab138a78394f3a98fbfc7ce Mon Sep 17 00:00:00 2001 From: "Khatri, Shweta" Date: Fri, 7 Mar 2025 13:56:43 -0500 Subject: [PATCH] Added gfx94x and gfx11xx IDs to enumerator (#5) [ROCm/rocminfo commit: 9638da746714ea25d482b891dc8e10feaf2b7346] --- projects/rocminfo/rocm_agent_enumerator | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/projects/rocminfo/rocm_agent_enumerator b/projects/rocminfo/rocm_agent_enumerator index 2e77c2cd57..e56b3f7c1e 100755 --- a/projects/rocminfo/rocm_agent_enumerator +++ b/projects/rocminfo/rocm_agent_enumerator @@ -49,6 +49,10 @@ ISA_TO_ID = { "gfx90a" : [0x7408, 0x740c, 0x740f, 0x7410], # Renoir "gfx90c" : [0x15e7, 0x1636, 0x1638, 0x164c], + + # Instinct MI300 series + "gfx942" : [0x74a1, 0x74a2, 0x74a5, 0x74a9, 0x74b5, 0x74b6, 0x74bd], + # Navi10 "gfx1010" : [0x7310, 0x7312, 0x7318, 0x7319, 0x731a, 0x731b, 0x731e, 0x731f], # Navi12 @@ -72,6 +76,13 @@ ISA_TO_ID = { "gfx1034" : [0x7420, 0x7421, 0x7422, 0x7423, 0x743f], # Yellow_Carp "gfx1035" : [0x164d, 0x1681] + + # Navi31 + "gfx1100": [0x7448, 0x7449, 0x744a, 0x744c, 0x745e], + # Navi32 + "gfx1101": [0x7470, 0x747e], + # Navi33 + "gfx1102": [0x7480, 0x7483, 0x7489, 0x7499], } def staticVars(**kwargs):