From 355907e6796ab69fb69157120718b58e67cbfe41 Mon Sep 17 00:00:00 2001 From: Steve Leung Date: Fri, 7 Jul 2023 09:38:10 -0600 Subject: [PATCH] cmake: add gfx940, gfx941, gfx942 compile targets --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb242ba..4991072 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -121,7 +121,7 @@ if (BUILD_WITH_COMPILER STREQUAL "HIP-NVCC" ) else() # Define GPU targets - set( AMDGPU_TARGETS gfx803;gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack-;gfx90a:xnack+;gfx1030;gfx1100;gfx1101;gfx1102 CACHE STRING + set( AMDGPU_TARGETS gfx803;gfx900;gfx906;gfx908;gfx90a;gfx940;gfx941;gfx942;gfx1030;gfx1100;gfx1101;gfx1102 CACHE STRING "List of specific machine types for library to target" ) if( BUILD_WITH_COMPILER STREQUAL "HIP-CLANG" )