Michael Yang
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
8 additions and
1 deletions
-
CMakeLists.txt
-
CMakePresets.json
|
|
|
@ -85,6 +85,11 @@ if(CMAKE_CUDA_COMPILER) |
|
|
|
) |
|
|
|
endif() |
|
|
|
|
|
|
|
set(WINDOWS_AMDGPU_TARGETS_EXCLUDE_REGEX "^gfx(906|908|90a):xnack[+-]$" |
|
|
|
CACHE STRING |
|
|
|
"Regular expression describing AMDGPU_TARGETS not supported on Windows. Override to force building these targets. Default \"^gfx(906|908|90a):xnack[+-]$\"." |
|
|
|
) |
|
|
|
|
|
|
|
check_language(HIP) |
|
|
|
if(CMAKE_HIP_COMPILER) |
|
|
|
set(HIP_PLATFORM "amd") |
|
|
|
@ -92,6 +97,8 @@ if(CMAKE_HIP_COMPILER) |
|
|
|
find_package(hip REQUIRED) |
|
|
|
if(NOT AMDGPU_TARGETS) |
|
|
|
list(FILTER AMDGPU_TARGETS INCLUDE REGEX "^gfx(900|94[012]|101[02]|1030|110[012])$") |
|
|
|
elseif(WIN32 AND WINDOWS_AMDGPU_TARGETS_EXCLUDE_REGEX) |
|
|
|
list(FILTER AMDGPU_TARGETS EXCLUDE REGEX ${WINDOWS_AMDGPU_TARGETS_EXCLUDE_REGEX}) |
|
|
|
endif() |
|
|
|
|
|
|
|
if(AMDGPU_TARGETS) |
|
|
|
|
|
|
|
@ -56,7 +56,7 @@ |
|
|
|
"name": "ROCm 6", |
|
|
|
"inherits": [ "ROCm" ], |
|
|
|
"cacheVariables": { |
|
|
|
"AMDGPU_TARGETS": "gfx900;gfx940;gfx941;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102" |
|
|
|
"AMDGPU_TARGETS": "gfx900;gfx940;gfx941;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-" |
|
|
|
} |
|
|
|
} |
|
|
|
], |
|
|
|
|