4208b5654c
* Initial support for GPU hardware counters
* Update find modules for roctracer and rocprofiler
- /opt/rocm/{rocprofiler,roctracer} path is deprecated so tweak search procedure
* Improve ConfigCPack for MPI
* Update rocprofiler
- rocm_metrics()
- minor cleanup
* Update rocm find modules
* declare rocm_metrics + call in omnitrace-avail
* relocate omnitrace-launch-compiler
* REALPATH and find_modules
* Examples cmake (may drop)
* omnitrace-avail
- hw_counter categories
- init rocm
* setenv updates for rocprofiler in library.cpp and dl.cpp
* get_rocm_events config
* gpu::hip_device_count()
* rocm_metrics returns hardware_counters::info
* - relocated library/components/roctracer_callbacks.* to library/roctracer.*
- relocated library/components/rocprofiler.* to library/rocprofiler.*
- cleaned up rocprofiler.hpp
- added perfetto output of rocprofiler
- added timemory output of rocprofiler
- renamed omni.roctracer thread to roctracer.hip
- added roctracer.hsa thread name
- updated timemory submodule to support std::variant
- updated timemory submodule to support = in config value
- updated timemory submodule to support standalone storage
- updated timemory submodule to support new hw counter apis
- updated timemory submodule to prevent label/description caching in data_tracker
* update omnitrace-avail info_type generation
* Update timemory submodule
* rocprofiler component
* cmake formatting
* omnitrace-avail handle no GPUs
- Add -c command-line option for --categories
- support verbosity
* hsa_rsrc_factory throws exceptions
- throw exceptions to avoid aborting on HSA_STATUS_ERROR_NOT_INITIALIZED when advantageous
- removed duplicate specialization of is_available for component::rocprofiler
* rocprofiler symbols for when disabled
* Fix warning in omnitrace-avail
- std::stringstream from initializer list would use explicit constructor
* Fix finalization after settings are deleted
* Reorganized rocprofiler source
* Updated formatting
* Miscellaneous tweaks
- added using statements from timemory
- tweaked the main and thread bundle names
- fixed timemory header includes
80 rivejä
2.6 KiB
CMake
80 rivejä
2.6 KiB
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying file
|
|
# Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
# ----------------------------------------------------------------------------------------#
|
|
|
|
if(NOT ROCM_PATH AND NOT "$ENV{ROCM_PATH}" STREQUAL "")
|
|
set(ROCM_PATH "$ENV{ROCM_PATH}")
|
|
endif()
|
|
|
|
foreach(_DIR ${ROCM_PATH} /opt/rocm /opt/rocm/rocm_smi)
|
|
if(EXISTS ${_DIR})
|
|
get_filename_component(_ABS_DIR "${_DIR}" REALPATH)
|
|
list(APPEND _ROCM_SMI_PATHS ${_ABS_DIR})
|
|
endif()
|
|
endforeach()
|
|
|
|
# ----------------------------------------------------------------------------------------#
|
|
|
|
find_path(
|
|
rocm-smi_ROOT_DIR
|
|
NAMES include/rocm_smi/rocm_smi.h
|
|
HINTS ${_ROCM_SMI_PATHS}
|
|
PATHS ${_ROCM_SMI_PATHS}
|
|
PATH_SUFFIXES rocm_smi)
|
|
|
|
mark_as_advanced(rocm-smi_ROOT_DIR)
|
|
|
|
# ----------------------------------------------------------------------------------------#
|
|
|
|
find_path(
|
|
rocm-smi_INCLUDE_DIR
|
|
NAMES rocm_smi/rocm_smi.h
|
|
HINTS ${rocm-smi_ROOT_DIR} ${_ROCM_SMI_PATHS}
|
|
PATHS ${rocm-smi_ROOT_DIR} ${_ROCM_SMI_PATHS}
|
|
PATH_SUFFIXES include rocm_smi/include)
|
|
|
|
mark_as_advanced(rocm-smi_INCLUDE_DIR)
|
|
|
|
# ----------------------------------------------------------------------------------------#
|
|
|
|
find_library(
|
|
rocm-smi_LIBRARY
|
|
NAMES rocm_smi64 rocm_smi
|
|
HINTS ${rocm-smi_ROOT_DIR} ${_ROCM_SMI_PATHS}
|
|
PATHS ${rocm-smi_ROOT_DIR} ${_ROCM_SMI_PATHS}
|
|
PATH_SUFFIXES rocm_smi/lib rocm_smi/lib64 lib lib64)
|
|
|
|
if(rocm-smi_LIBRARY)
|
|
get_filename_component(rocm-smi_LIBRARY_DIR "${rocm-smi_LIBRARY}" PATH CACHE)
|
|
endif()
|
|
|
|
mark_as_advanced(rocm-smi_LIBRARY)
|
|
|
|
# ----------------------------------------------------------------------------------------#
|
|
|
|
find_package_handle_standard_args(rocm-smi DEFAULT_MSG rocm-smi_ROOT_DIR
|
|
rocm-smi_INCLUDE_DIR rocm-smi_LIBRARY)
|
|
|
|
# ------------------------------------------------------------------------------#
|
|
|
|
if(rocm-smi_FOUND)
|
|
add_library(rocm-smi::rocm-smi INTERFACE IMPORTED)
|
|
add_library(rocm-smi::roctx INTERFACE IMPORTED)
|
|
set(rocm-smi_INCLUDE_DIRS ${rocm-smi_INCLUDE_DIR})
|
|
set(rocm-smi_LIBRARIES ${rocm-smi_LIBRARY})
|
|
set(rocm-smi_LIBRARY_DIRS ${rocm-smi_LIBRARY_DIR})
|
|
|
|
target_include_directories(rocm-smi::rocm-smi INTERFACE ${rocm-smi_INCLUDE_DIR})
|
|
target_link_libraries(rocm-smi::rocm-smi INTERFACE ${rocm-smi_LIBRARY})
|
|
|
|
endif()
|
|
|
|
# ------------------------------------------------------------------------------#
|
|
|
|
unset(_ROCM_SMI_PATHS)
|
|
|
|
# ------------------------------------------------------------------------------#
|