From 91ba995482eff69809bc069147651dfc37ad68b3 Mon Sep 17 00:00:00 2001 From: Torre Zuk <42548444+TorreZuk@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:33:29 -0700 Subject: [PATCH] reduce default gfx targets (#1311) (#1318) (cherry picked from commit 290f1316672e6df3ca30c542980a516b564e716e) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be38713fa2..68880a9b98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -159,12 +159,12 @@ else() if (NOT BUILD_ADDRESS_SANITIZER) #Set the AMDGPU_TARGETS with backward compatiblity rocm_check_target_ids(DEFAULT_AMDGPU_TARGETS - TARGETS "gfx908:xnack+;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-;gfx940;gfx941;gfx942;gfx1100;gfx1101;;gfx1200;gfx1201" + TARGETS "gfx908:xnack+;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-;gfx942;gfx1100;gfx1101;;gfx1200;gfx1201" ) else() #build xnack-supported targets only rocm_check_target_ids(DEFAULT_AMDGPU_TARGETS - TARGETS "gfx908:xnack+;gfx90a:xnack+;gfx940:xnack+;gfx941:xnack+;gfx942:xnack+" + TARGETS "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+" ) endif()