1f96593b4f
* Test using hip graphs * Remove assert for api_end < async_end * Update rocprofv3/tracing-hip-in-libraries::test_api_trace * Update rocprofv3/tracing-hip-in-libraries::test_api_trace * Increase rocprofv3-test-trace-hip-in-libraries-validate timeout * Update rocprofv3/tracing-hip-in-libraries::test_api_trace * Remove submit retry * Update rocprofv3/tracing-hip-in-libraries::test_api_trace * Increase rocprofv3-test-trace-hip-in-libraries-validate timeout * Update lib/common/container/record_header_buffer.hpp - minor tweaks * Update lib/rocprofiler-sdk/buffer.hpp - tweak ROCPROFILER_BUFFER_POLICY_LOSSLESS flush behavior * Increase rocprofv3-test-trace-hip-in-libraries-validate timeout * Update rocprofv3/tracing-hip-in-libraries::test_api_trace * Revert rocprofv3-test-trace-hip-in-libraries-validate timeout * Update run-ci.py - RETRY_COUNT set to zero
27 lines
827 B
CMake
27 lines
827 B
CMake
#
|
|
# Integration test applications
|
|
#
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
project(rocprofiler-tests-bin LANGUAGES C CXX)
|
|
|
|
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)
|
|
|
|
set(CMAKE_BUILD_RPATH "\$ORIGIN:\$ORIGIN/../lib")
|
|
|
|
# applications used by integration tests which DO NOT link to rocprofiler-sdk-roctx
|
|
add_subdirectory(simple-transpose)
|
|
add_subdirectory(multistream)
|
|
add_subdirectory(vector-operations)
|
|
add_subdirectory(hip-in-libraries)
|
|
add_subdirectory(scratch-memory)
|
|
add_subdirectory(page-migration)
|
|
add_subdirectory(hsa-queue-dependency)
|
|
add_subdirectory(hip-graph)
|