[llvm] [AMDGPU][Offload][LIT] Run unified_shared_memory tests on gfx950 (PR #150372)

via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 23 22:34:10 PDT 2025


https://github.com/hidekisaito created https://github.com/llvm/llvm-project/pull/150372

None

>From c5c8f13b853dee6dfa1bc6010696afda67104692 Mon Sep 17 00:00:00 2001
From: Hideki Saito <hidekido at amd.com>
Date: Thu, 24 Jul 2025 00:32:34 -0500
Subject: [PATCH] [AMDGPU][Offload][LIT] Run unified_shared_memory tests on
 gfx950

---
 offload/test/lit.cfg | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/offload/test/lit.cfg b/offload/test/lit.cfg
index df57be293138c..800a63bc0ee32 100644
--- a/offload/test/lit.cfg
+++ b/offload/test/lit.cfg
@@ -133,7 +133,8 @@ elif config.libomptarget_current_target.startswith('amdgcn'):
     # amdgpu_test_arch contains a list of AMD GPUs in the system
     # only check the first one assuming that we will run the test on it.
     if not (config.amdgpu_test_arch.startswith("gfx90a") or
-            config.amdgpu_test_arch.startswith("gfx942")):
+            config.amdgpu_test_arch.startswith("gfx942") or
+            config.amdgpu_test_arch.startswith("gfx950")):
        supports_unified_shared_memory = False
     # check if AMD architecture is an APU:
     if ((config.amdgpu_test_arch.startswith("gfx942") and



More information about the llvm-commits mailing list