d4a51e4102
* Adding att v3 support * misc fix * bug fix * Python linting workflow and rules * fix regex * Adding temporary args * fix temporary args * fix format * remove att_perfcounters from test input * Review comments (#163) Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com> * Revert "Review comments (#163)" This reverts commit 9ef0f8e5a4489d5581255e1b70ced2aef5c1c1d0. * Address review comments 2 * review changes * review comments * review * cmake alias * review * review * review * review * Enabling percounter in v3 script * review * formatting * formatting --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: Baraldi, Giovanni <Giovanni.Baraldi@amd.com> Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>
36 líneas
1.1 KiB
CMake
36 líneas
1.1 KiB
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)
|
|
if(ROCPROFILER_BUILD_OPENMP_TESTS)
|
|
add_subdirectory(openmp)
|
|
endif()
|
|
|
|
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)
|
|
add_subdirectory(hsa-memory-allocation)
|
|
add_subdirectory(pc-sampling)
|
|
if(ROCPROFILER_BUILD_ROCDECODE_TESTS)
|
|
add_subdirectory(rocdecode)
|
|
endif()
|
|
add_subdirectory(hsa-code-object)
|