2023-11-16 03:21:39 -06:00
|
|
|
#
|
|
|
|
|
# Integration test applications
|
|
|
|
|
#
|
|
|
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
|
|
2024-03-07 22:21:26 -06:00
|
|
|
project(rocprofiler-tests-bin LANGUAGES C CXX)
|
2023-11-16 03:21:39 -06:00
|
|
|
|
2024-04-09 20:49:16 +05:30
|
|
|
set(CMAKE_BUILD_RPATH
|
|
|
|
|
"\$ORIGIN:\$ORIGIN/../lib:$<TARGET_FILE_DIR:rocprofiler-sdk-roctx::rocprofiler-sdk-roctx-shared-library>"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# applications used by integration tests which DO link to rocprofiler-sdk-roctx
|
|
|
|
|
add_subdirectory(reproducible-runtime)
|
|
|
|
|
add_subdirectory(transpose)
|
|
|
|
|
|
2024-01-22 19:06:25 -06:00
|
|
|
set(CMAKE_BUILD_RPATH "\$ORIGIN:\$ORIGIN/../lib")
|
|
|
|
|
|
|
|
|
|
# applications used by integration tests which DO NOT link to rocprofiler-sdk-roctx
|
|
|
|
|
add_subdirectory(simple-transpose)
|
2024-02-05 12:42:59 -06:00
|
|
|
add_subdirectory(multistream)
|
2024-02-06 23:25:07 +05:30
|
|
|
add_subdirectory(vector-operations)
|
2024-03-07 22:21:26 -06:00
|
|
|
add_subdirectory(hip-in-libraries)
|
2024-04-05 18:32:57 -07:00
|
|
|
add_subdirectory(scratch-memory)
|
2024-04-12 13:51:44 -07:00
|
|
|
add_subdirectory(page-migration)
|
2024-04-09 20:49:16 +05:30
|
|
|
add_subdirectory(hsa-queue-dependency)
|
2024-05-07 15:10:22 -05:00
|
|
|
add_subdirectory(hip-graph)
|