2025-06-06 04:03:14 -05:00
|
|
|
#
|
|
|
|
|
# rocprofv3 python bindings for roctx test(s)
|
|
|
|
|
#
|
|
|
|
|
cmake_minimum_required(VERSION 3.21.0 FATAL_ERROR)
|
|
|
|
|
|
|
|
|
|
project(
|
|
|
|
|
rocprofiler-tests-rocprofv3-python-binding
|
|
|
|
|
LANGUAGES CXX
|
|
|
|
|
VERSION 0.0.0)
|
|
|
|
|
|
|
|
|
|
find_package(rocprofiler-sdk REQUIRED)
|
|
|
|
|
|
|
|
|
|
if(NOT Python3_EXECUTABLE)
|
|
|
|
|
find_package(Python3 3.6 REQUIRED COMPONENTS Interpreter)
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
if(ROCPROFILER_MEMCHECK STREQUAL "LeakSanitizer")
|
|
|
|
|
set(LOG_LEVEL "warning") # info produces memory leak
|
|
|
|
|
else()
|
|
|
|
|
set(LOG_LEVEL "info")
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
string(REPLACE "LD_PRELOAD=" "ROCPROF_PRELOAD=" PRELOAD_ENV
|
|
|
|
|
"${ROCPROFILER_MEMCHECK_PRELOAD_ENV}")
|
|
|
|
|
|
2025-11-21 08:06:56 -06:00
|
|
|
rocprofiler_add_integration_execute_test(
|
|
|
|
|
rocprofv3-trace-roctx-python-bindings
|
2025-06-06 04:03:14 -05:00
|
|
|
COMMAND
|
|
|
|
|
$<TARGET_FILE:rocprofiler-sdk::rocprofv3> --marker-trace --summary -u sec -d
|
2025-11-21 08:06:56 -06:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker-python-bindings -o out --output-format csv json
|
|
|
|
|
pftrace --log-level ${LOG_LEVEL} -- ${Python3_EXECUTABLE}
|
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker.py
|
|
|
|
|
DEPENDS rocprofiler-sdk::rocprofv3
|
|
|
|
|
TIMEOUT 45
|
|
|
|
|
LABELS "integration-tests"
|
|
|
|
|
PRELOAD "${PRELOAD_ENV}"
|
|
|
|
|
ENVIRONMENT
|
|
|
|
|
"PYTHONPATH=${rocprofiler-sdk_LIB_DIR}/python${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR}/site-packages"
|
|
|
|
|
FIXTURES_SETUP rocprofv3-trace-roctx-python-bindings)
|
|
|
|
|
|
|
|
|
|
rocprofiler_add_integration_validate_test(
|
|
|
|
|
rocprofv3-trace-roctx-python-bindings
|
|
|
|
|
TEST_PATHS validate.py
|
|
|
|
|
COPY conftest.py marker.py
|
|
|
|
|
CONFIG pytest.ini
|
|
|
|
|
ARGS --agent-input
|
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker-python-bindings/out_agent_info.csv
|
|
|
|
|
--marker-input
|
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker-python-bindings/out_marker_api_trace.csv
|
|
|
|
|
--json-input
|
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker-python-bindings/out_results.json
|
|
|
|
|
--pftrace-input
|
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/marker-python-bindings/out_results.pftrace
|
|
|
|
|
TIMEOUT 45
|
|
|
|
|
LABELS "integration-tests"
|
|
|
|
|
FIXTURES_REQUIRED rocprofv3-trace-roctx-python-bindings
|
|
|
|
|
DISABLED "${TRANSPOSE_ROCTRACER_ROCTX_DISABLED}")
|