5ede3b1fb9
* SWDEV-372153 - Add tests for hipStreamGetDevice Change-Id: Ida2d36ff6f4f38daa97712533d27061fc99454ca * Fix test on nvidia devices ---------
41 行
1.2 KiB
CMake
41 行
1.2 KiB
CMake
set(COMMON_SHARED_SRC streamCommon.cc)
|
|
|
|
set(TEST_SRC
|
|
hipStreamCreate.cc
|
|
hipStreamGetFlags.cc
|
|
hipStreamGetPriority.cc
|
|
hipMultiStream.cc
|
|
hipStreamAddCallback.cc
|
|
hipStreamCreateWithFlags.cc
|
|
hipStreamCreateWithPriority.cc
|
|
hipStreamDestroy.cc
|
|
hipAPIStreamDisable.cc
|
|
hipStreamValue.cc
|
|
hipStreamSynchronize.cc
|
|
hipStreamQuery.cc
|
|
hipDeviceGetStreamPriorityRange.cc
|
|
hipStreamACb_StrmSyncTiming.cc
|
|
hipLaunchHostFunc.cc
|
|
hipStreamGetDevice.cc
|
|
)
|
|
|
|
if(HIP_PLATFORM MATCHES "amd")
|
|
set(TEST_SRC ${TEST_SRC} hipStreamGetCUMask.cc hipStreamWithCUMask.cc
|
|
hipStreamACb_MultiThread.cc hipStreamWaitEvent.cc)
|
|
else()
|
|
set(TEST_SRC
|
|
${TEST_SRC}
|
|
# hipStreamAttachMemAsync_old.cc # Disabling it on nvidia due to issue
|
|
# in function definition of hipStreamAttachMemAsync
|
|
# Fixing would break ABI, to be re-enabled when the fix is made.
|
|
hipStreamACb_MultiThread.cc)
|
|
|
|
# set_source_files_properties(hipStreamAttachMemAsync_old.cc PROPERTIES
|
|
# COMPILE_FLAGS -std=c++17)
|
|
endif()
|
|
|
|
hip_add_exe_to_target(
|
|
NAME StreamTest
|
|
TEST_SRC ${TEST_SRC} TEST_TARGET_NAME build_tests
|
|
COMPILE_OPTIONS -std=c++17 COMMON_SHARED_SRC ${COMMON_SHARED_SRC})
|