Files
rocm-systems/catch/unit/synchronization/CMakeLists.txt
T
Ajay 0e0c86d122 SWDEV-441112 - fix hip-tests catch build on nvidia platform
Change-Id: I6a4a4613b2d56627e128f7dabaacaa552e292311
2024-02-08 14:41:36 -05:00

26 wiersze
978 B
CMake

# Common Tests - Test independent of all platforms
set(TEST_SRC
copy_coherency.cc
)
add_custom_target(memcpyInt.hsaco COMMAND ${CMAKE_CXX_COMPILER} --genco ${OFFLOAD_ARCH_STR}
${CMAKE_CURRENT_SOURCE_DIR}/memcpyIntDevice.cpp -o
${CMAKE_CURRENT_BINARY_DIR}/../synchronization/memcpyInt.hsaco -I
${HIP_PATH}/include -I
${CMAKE_CURRENT_SOURCE_DIR}/../../include -L
${HIP_PATH}/${CMAKE_INSTALL_LIBDIR}/../../include --rocm-path=${ROCM_PATH})
# only for AMD
if(HIP_PLATFORM MATCHES "amd")
set(AMD_SRC
cache_coherency_cpu_gpu.cc
cache_coherency_gpu_gpu.cc
)
set(TEST_SRC ${TEST_SRC} ${AMD_SRC})
endif()
hip_add_exe_to_target(NAME synchronizationTests
TEST_SRC ${TEST_SRC}
TEST_TARGET_NAME build_tests
COMPILE_OPTIONS -std=c++14)
add_dependencies(synchronizationTests memcpyInt.hsaco)