9a0c84efa6
* Fix find_package(rocprofiler) in build tree * Move include/rocprofiler to include/rocprofiler-sdk * Update include/CMakeLists.txt - add_subdirectory(rocprofiler-sdk) * Move lib/rocprofiler to lib/rocprofiler-sdk * Move lib/rocprofiler-tool to lib/rocprofiler-sdk-tool * Update lib/CMakeLists.txt - add_subdirectory(rocprofiler-sdk) - add_subdirectory(rocprofiler-sdk-tool) * Update lib/rocprofiler-sdk/CMakeLists.txt * Rename rocprofiler-tool to rocprofiler-sdk-tool * Replace include rocprofiler/ with include rocprofiler-sdk/ * Replace include lib/rocprofiler/ with include lib/rocprofiler-sdk/ * Set VERSION to 0.0.0 and finish install to rocprofiler-sdk * More fixes for rocprofiler -> rocprofiler-sdk - fix issue with rocprofiler-sdk-config.cmake.in - fix counters xml install path * Fix documentation generation * Create rocprofiler_LIB_ROCPROFILER_SDK_DIR for build tree * cmake formatting (cmake-format) (#264) Co-authored-by: jrmadsen <jrmadsen@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
34 라인
1.1 KiB
Markdown
34 라인
1.1 KiB
Markdown
# ROCProfiler Tool Library
|
|
|
|
This is a tool that gets registered with the
|
|
rocprofiler to obtain its services.
|
|
The tool is built as a shared library and is named as
|
|
rocprofiler-sdk-tool.
|
|
The library can be preloaded using LD_PRELOAD
|
|
to facilitate its registration as a tool
|
|
with the rocprofiler.
|
|
|
|
The user through rocprofv3 script can select the
|
|
options to obtain tracing and counter collection
|
|
services from the rocprofiler.
|
|
|
|
Currently, this tool supports kernel trace and the
|
|
hsa-api trace.
|
|
The tool uses the following environment variables
|
|
to read the user choices.
|
|
|
|
- `ROCPROFILER_KERNEL_TRACE=1` to obtain kernel trace
|
|
- `ROCPROFILER_HSA_API_TRACE=1` to obtain hsa api trace
|
|
|
|
The user can also specify the output filename and output file path
|
|
to which the traces are written to.
|
|
|
|
- `ROCPROFILER_OUTPUT_PATH=<directory>` to set the output directory path
|
|
- `ROCPROFILER_OUTPUT_FILE_NAME=<filename-without-extension>` to set the output file name
|
|
|
|
## CHANGELOG
|
|
|
|
The tool design is similar to its earlier versions.
|
|
However, not all features that the earlier versions supported are supported by
|
|
this tool.
|