fd3d97287c
* Page migration reporting support * Page migration: Update parser and reporting Container does not lave latest KFD header, so CI might fail * Add kfd_ioctl.h * Formatting * Update get_key - get key was not used (and shouldn't be), so delete it * clang-tidy fixes * Tests for page migration * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update tests/bin/page-migration/CMakeLists.txt Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update page-migration test app - add hipHostRegister to register mmap'ed allocation with HIP - misc cleanup and reorg - remove HSA_XNACK=1 from test env * Update lib/rocprofiler-sdk/tests/page_migration.cpp - fix compilation error * Minor updates (reorg, rename) * Page migration reporting support * Page migration: Update parser and reporting Container does not lave latest KFD header, so CI might fail * Update page migration tests, fix trigger types * Page Migration Tracing Support Refactoring (#753) * Reorganization * Update page migration init/fini * Formatting * Update page_migration.cpp - change logging severity * Skip test if KFD does not support page migration reporting * Rework skipping test if KFD does not support page migration * Fix event trigger enum values * Fix clang-diagnostic-unused-const-variable --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: Jonathan R. Madsen <jrmadsen@users.noreply.github.com>
26 lines
799 B
CMake
26 lines
799 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)
|