13c5e7a3e4
Change-Id: Ie40c763e9391fa36d6c890cd0a171659a1502a83
[ROCm/hip-tests commit: 5d042c80fa]
25 라인
736 B
CMake
25 라인
736 B
CMake
# Common Tests - Test independent of all platforms
|
|
# moved hipDeviceGetP2PAttribute.cc from /catch/unit/device to
|
|
# /catch/unit/p2p folder and its dependent files.
|
|
set(TEST_SRC
|
|
hipDeviceGetP2PAttribute.cc
|
|
)
|
|
|
|
# only for AMD
|
|
if(HIP_PLATFORM MATCHES "amd")
|
|
set(AMD_SRC
|
|
hipP2pLinkTypeAndHopFunc.cc
|
|
)
|
|
set(TEST_SRC ${TEST_SRC} ${AMD_SRC})
|
|
endif()
|
|
|
|
set_source_files_properties(hipDeviceGetP2PAttribute.cc PROPERTIES COMPILE_FLAGS -std=c++17)
|
|
|
|
add_executable(hipDeviceGetP2PAttribute_exe EXCLUDE_FROM_ALL hipDeviceGetP2PAttribute_exe.cc)
|
|
|
|
hip_add_exe_to_target(NAME p2pTests
|
|
TEST_SRC ${TEST_SRC}
|
|
TEST_TARGET_NAME build_tests)
|
|
|
|
add_dependencies(build_tests hipDeviceGetP2PAttribute_exe)
|