mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 02:59:22 -05:00
Tests/HIP: Drop unnecessary hard-coded compute architectures
In commit8514ee9b31(HIP: analyze output of `hipcc` to determine default GPU architecture, 2021-05-27, v3.21.0-rc1~66^2) we dropped these from most tests, but missed `HIP.TryCompile`. Since commit735f41fc2d(HIP: Use 'rocm_agent_enumerator' to determine CMAKE_HIP_ARCHITECTURES, 2021-09-15, v3.21.3~1^2~3) we automatically select architectures anyway.
This commit is contained in:
@@ -5,12 +5,6 @@ project (TryCompile HIP)
|
|||||||
# Verify try_compile with HIP language works
|
# Verify try_compile with HIP language works
|
||||||
set(CMAKE_HIP_STANDARD 14)
|
set(CMAKE_HIP_STANDARD 14)
|
||||||
|
|
||||||
if(CMAKE_HIP_PLATFORM STREQUAL "amd")
|
|
||||||
set(CMAKE_HIP_ARCHITECTURES gfx803 gfx900)
|
|
||||||
elseif(CMAKE_HIP_PLATFORM STREQUAL "nvidia")
|
|
||||||
set(CMAKE_HIP_ARCHITECTURES 52)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
||||||
try_compile(result "${CMAKE_CURRENT_BINARY_DIR}"
|
try_compile(result "${CMAKE_CURRENT_BINARY_DIR}"
|
||||||
SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/device_function.hip"
|
SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/device_function.hip"
|
||||||
|
|||||||
Reference in New Issue
Block a user