6b109c11c4
* Reorganize rocprofv3 python package adding Python version candidates review fix fix test fix remove extra line fix the exception handle fix Lint fail fix installation adding checks to check version format disable test for address sanitizer * review comments * Removing extra lines * fix format * Add lib/python3/site-packages to PYTHONPATH in setup-env.sh * rocprof-compute update rocprofv3 avail lib path * Make rocprofv3 python binding build commands consistent with other python bindings * fix cmake * fix rocprof-compute * revert cmake changes * fix rocprofv3 avail python library * fix cmake * fix cmake --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: Sriraksha Nagaraj <Sriraksha.Nagaraj@amd.com> Co-authored-by: Jonathan R. Madsen <Jonathan.Madsen@amd.com> Co-authored-by: systems-assistant[bot] <systems-assistant[bot]@users.noreply.github.com> Co-authored-by: Jonathan R. Madsen <jrmadsen@users.noreply.github.com> Co-authored-by: SrirakshaNag <104580803+SrirakshaNag@users.noreply.github.com> Co-authored-by: Vignesh Edithal <Vignesh.Edithal@amd.com>
20 γραμμές
505 B
CMake
20 γραμμές
505 B
CMake
#
|
|
# Python package
|
|
#
|
|
|
|
set(CMAKE_MESSAGE_INDENT "[${PROJECT_NAME}][python] ")
|
|
set(DEFAULT_PYTHON_RPATH "\$ORIGIN:\$ORIGIN/../../..:\$ORIGIN/../../../rocprofiler-sdk")
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/utilities.cmake")
|
|
|
|
if(NOT DEFINED ROCPROFILER_PYTHON_VERSIONS)
|
|
get_default_python_versions(DEFAULT_PYTHON_VERSIONS)
|
|
set(ROCPROFILER_PYTHON_VERSIONS
|
|
"${DEFAULT_PYTHON_VERSIONS}"
|
|
CACHE STRING "")
|
|
endif()
|
|
|
|
add_subdirectory(roctx)
|
|
add_subdirectory(rocpd)
|
|
add_subdirectory(rocprofv3)
|