Sajina PK
e265e0e24f
[rocprofiler-systems]: Add documentation for communication API tracing ( #2478 )
...
Add documentation for communication runtime tracing for MPI, UCX, RCCL.
---------
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2026-01-27 23:48:27 -05:00
Kian Cossettini
28b2ade7d2
Update mentions of OpenMP to reflect newer implementation ( #2701 )
...
Update timemory examples in docs to use the `rocprofiler-sdk` API.
2026-01-21 07:18:51 -05:00
Milan Radosavljevic
318d13870f
[rocprofiler-systems] Update logging to use spdlog library ( #2428 )
...
## Motivation
- Structured logging with proper log levels (TRACE, DEBUG, INFO, WARNING, ERROR, CRITICAL)
- Better performance through compile-time formatting
- Consistent formatting using fmt library
- Runtime log level control via arguments and environment variables
- Easier maintenance and debugging capabilities
## Technical Details
- Added spdlog as a submodule and integrated it into CMake build system
- Created new `rocprofiler-systems-logger` library wrapping spdlog functionality
- Replaced custom logging macros (`ROCPROFSYS_VERBOSE`, `ROCPROFSYS_DEBUG`, `ROCPROFSYS_FATAL`, `ROCPROFSYS_REQUIRE`, `ROCPROFSYS_CI_THROW`, etc.) with spdlog equivalents (`LOG_DEBUG`, `LOG_WARNING`, `LOG_CRITICAL`, etc.)
- Implemented log level control through command-line arguments and environment variables
- Converted assertion macros to proper error handling with exceptions and std::abort()
2026-01-14 15:27:51 -05:00
anujshuk-amd
596ffce5fe
[rocprof-sys] Fix segfault from thread ID array overflow ( #2172 )
...
**Thread limit configuration and enforcement: **
* Added a check in `CMakeLists.txt` to ensure `ROCPROFSYS_MAX_THREADS` is at least 128, automatically setting it to 128 with a warning if a lower value is provided.
* Replaced hardcoded thread limit (`allowed_max_threads`) in `pthread_create_gotcha.cpp` with the configurable `ROCPROFSYS_MAX_THREADS` value, ensuring all runtime checks and warnings use the actual configured limit.
**Documentation improvements: **
* Updated the development guide to explain the new thread limit behavior, including how exceeding the limit is handled gracefully, how to configure it, and the build-time validation rules.
**Test updates: **
* Modified thread limit tests to use the configurable `ROCPROFSYS_MAX_THREADS` value instead of a hardcoded limit and expanded the range of tested thread values.
* Increased test timeouts to accommodate larger thread counts and ensure reliability with higher limits.
2026-01-07 14:03:37 -05:00
marantic-amd
bb83791b17
Remove redundant ROCPROFSYS_TRACE_CACHED variable from the code ( #2434 )
2025-12-25 13:36:04 +01:00
marantic-amd
ba1380a75d
Put cached perfetto traces as default one ( #2138 )
...
* Put cached perfetto traces as default one
* Improve cached data and perfetto traces in order to be more aligned with E2E tests
* Addressing PR comments and findings
* Force early instrumentation bundle instantiation
* Sync-up insturumented containers with thread growth data
* Revert ompvv number of host threads to default 8
* Fixed counter track namings for amd-smi
* AIPROFSYST-34 [rocprof-sys] Update documentation describing newly introduced changes to default tracing mechanism
2025-12-22 12:47:35 +01:00
Mario Limonciello
d1aaae2539
Run pre-commit's whitespace related hooks on projects/rocprofiler-systems ( #2123 )
...
In order for pre-commit to be useful, everything needs to meet a common
baseline.
Signed-off-by: Mario Limonciello (AMD) <superm1@kernel.org >
2025-12-04 23:39:42 -05:00
anujshuk-amd
d36b8ec66d
[rocprof-sys] Add documentation for building with multiple Python versions ( #1870 )
...
* Adding support to build ROCm with Multiple Python Environments
* Update install.rst
* Update projects/rocprofiler-systems/docs/install/install.rst
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update projects/rocprofiler-systems/docs/install/install.rst
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Updated documentation to align with instuctions in `profiling-python-scripts.rst`
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-11-19 18:18:53 -05:00
Sajina PK
4ef1e53269
[Rocprof-Systems]: Documentation update for profiling modes and PAPI counter enablement ( #1437 )
...
* Documentation update for profiling modes and papi counter enablement
Update the documentation to add more details regarding profiling modes.
Update the Papi event and hardware counter collection documentation.
* Change1 for review comments
* Formatting changes for Examples
* Apply suggestions from code review
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Formatting and code block error fixed
* Bold applied
---------
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
Co-authored-by: prbasyal <prbasyal@amd.com >
2025-11-19 17:04:35 -05:00
Milan Radosavljevic
3ee393047c
Add user_api_active flag to enable/disable user-defined regions ( #312 )
...
* Add user start/stop bool
* Update documentation for user-api
* Update projects/rocprofiler-systems/source/lib/rocprof-sys-dl/dl.cpp
Co-authored-by: Aleksandar Djordjevic <aleksandar.djordjevic@amd.com >
* Format fix
---------
Co-authored-by: Aleksandar Djordjevic <aleksandar.djordjevic@amd.com >
2025-11-18 13:48:27 -05:00
Sajina PK
f6183e3563
[Rocprofiler-systems]: Documentation addition for xgmi and pcie metrics feature ( #1798 )
...
* Documentation addition for xgmi and pcie metrics feature
Add documentation to provide details about How to get collect XGMI and PCIe interconnect metrics.
* Apply suggestions from code review
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Update projects/rocprofiler-systems/CHANGELOG.md
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Update projects/rocprofiler-systems/CHANGELOG.md
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
---------
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-11-17 18:34:28 -05:00
Pratik Basyal
0325de6538
[ROCm Systems Profiler] Path issue note added to Profiling python script ( #1766 )
...
* Note added to Profiling python script
* Doxygen reverted
* Update projects/rocprofiler-systems/docs/how-to/profiling-python-scripts.rst
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
---------
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-11-07 18:49:23 -05:00
Pratik Basyal
fdb557c88a
[Systems-Profiler] Officially unsupported OS removed ( #1740 )
...
* Fedora and CentOS removed
* David's feedback incorporated
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
---------
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-11-06 16:06:28 -05:00
Pratik Basyal
6356c179ff
[ROCm Systems Profiler] 7.1.0 Formatting updated for understanding rocpd output docs" ( #1663 )
...
* Formatting udpated for ROCm Systems rocpd docs"
* Minor change
* Formatting in profiler script fixed"
* Sphinx warnings and formatting fixes
* Formatting fixed
* Formatting fixed
* Collapsible code block added
* Dixygne change reverted
2025-11-04 12:48:02 -05:00
David Galiffi
5850d5b973
Updating documentation ( #1602 )
...
* Update rocprof-sys-feature-set.rst
* Update configuring-runtime-options.rst
2025-10-31 14:30:25 -04:00
Kian Cossettini
f0a41b65f7
[rocprofiler-systems] Add Fortran main detection to rocprof-sys-instrument to avoid instrumenting around C "main" wrapper ( #1322 )
...
* Add check for Fortran main
* Comment change
* MAIN__ -> Fortran main
* Cray Compiler comment change
* Add changelog and troubleshooting comments
* Improve CHANGELOG.md message
* Change CHANGELOG msg to be in 7.2.0
* Apply review change #1
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply review change #2
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply review change #3
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
---------
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-10-21 16:41:29 -04:00
David Galiffi
b75423b173
Update installation and ROCPD documentation ( #1300 )
...
* Updating install doc page
* Removing the Quick Start page
* Add documentation for rocpd output
* Update links to reference rocm-systems repo
* Update README.md
Installation instructions references ROCm Docs link.
* Updated git clone instructions
Back to using https to clone the repository
* Fix formatting
* Update projects/rocprofiler-systems/docs/how-to/understanding-rocprof-sys-output.rst
* Add reference to "rocpd" section to the "Profiling Python" section
* Update CONTRIBUTING.md
* For ROCPD, document minimum version of SDK.
* Update CHANGELOGS
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
* Update CHANGELOG.md
Updated based on feedback from docs team
* Update CONTRIBUTING.md
* Update CONTRIBUTING.md.
Simplify and remove setup information overlapping with the "rocm-systems" contributing documentation.
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Update CHANGELOG.md
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
* Apply suggestion from @prbasyal-amd
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
---------
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
2025-10-15 23:11:46 -04:00
Ammar ELWazir
2a9700fcd7
[ROCProfiler-Register/Systems/Compute] Fixing License file name usage ( #927 )
...
ROCProfiler-Register/Systems/Compute: The license file name in the CMake install module and other locations was originally LICENSE, but it was recently changed to LICENSE.md, requiring an update to the CMake install module and all other relevant locations.
2025-09-10 15:46:39 -04:00
David Galiffi
872846bcdc
Updated Group By HIP Stream documentation ( #717 )
...
Based on feedback from https://github.com/ROCm/rocprofiler-systems/pull/306
2025-08-26 22:03:51 -04:00
systems-assistant[bot]
dd37d215fd
Add documentation describing ROCPROFSYS_USE_RCCP ( #110 )
...
* Add documentation describing ROCPROFSYS_USE_RCCP
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
* Update wordlist
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
* Update CHANGELOGS.md
---------
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
2025-08-13 18:01:18 -04:00
dependabot[bot]
e0c8e8a8c8
Bump rocm-docs-core[api_reference] from 1.21.1 to 1.22.0 in /docs/sphinx ( #302 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.21.1 to 1.22.0.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.21.1...v1.22.0 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.22.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: be69ec06f2 ]
2025-07-30 13:33:41 -04:00
ajanicijamd
e2fc692ee0
Allow events to be grouped by HIP stream ID ( #274 )
...
- Corelate memory_copy and kernel_dispatch events with their HIP stream_id and add stream_id as an annotation in Perfetto.
- By default, group memory_copy and kernel_dispatch events in Perfetto output by their stream_id.
- Add option, with the configuration setting ROCPROFSYS_ROCM_GROUP_BY_QUEUE, to group by HSA queue instead.
---------
Signed-off-by: David Galiffi <David.Galiffi@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
[ROCm/rocprofiler-systems commit: 4b4a846b58 ]
2025-07-23 21:28:26 -04:00
dependabot[bot]
5c5de6fe2a
Bump rocm-docs-core[api_reference] from 1.21.0 to 1.21.1 in /docs/sphinx ( #263 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.21.0 to 1.21.1.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.21.0...v1.21.1 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.21.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 4b741a0148 ]
2025-06-25 09:51:55 -04:00
dependabot[bot]
e41bd098c1
Bump rocm-docs-core[api_reference] from 1.20.1 to 1.21.0 in /docs/sphinx ( #262 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.20.1 to 1.21.0.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.20.1...v1.21.0 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.21.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 3a0985c68a ]
2025-06-24 12:33:13 -04:00
Pratik Basyal
0f7ae37ca6
Broken link to ROCprofiler-SDK updated ( #254 )
...
[ROCm/rocprofiler-systems commit: 66e71574ba ]
2025-06-18 13:15:18 -04:00
dependabot[bot]
8304214152
Bump rocm-docs-core[api_reference] from 1.20.0 to 1.20.1 in /docs/sphinx ( #239 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.20.0 to 1.20.1.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/v1.20.1/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.20.0...v1.20.1 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.20.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 0d3d0518d2 ]
2025-06-10 14:22:42 -04:00
Pranjal Swarup
9d94e11e2b
Update dyninst to v13 ( #190 )
...
Update Dyninst submodule
Refactoring of build scripts to build TBB, Boost, ElfUtils, and LibIberty, since Dyninst build scripts no longer do.
Workflows are now building Dyninst and its dependencies.
---------
Co-authored-by: marantic-amd <marantic@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
[ROCm/rocprofiler-systems commit: 96df9b6d3e ]
2025-06-06 22:52:23 -04:00
Sajina PK
44827ba976
"How-to" document describing VCN and JPEG metrics and tracing ( #186 )
...
- Create a document to describe enabling VCN and JPEG related metrics
and tracing
- Upload images and modify indexes.
[ROCm/rocprofiler-systems commit: 13f315a65d ]
2025-06-02 13:31:18 -04:00
dependabot[bot]
3c64dc9c22
Bump rocm-docs-core[api_reference] from 1.19.1 to 1.20.0 in /docs/sphinx ( #222 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.19.1 to 1.20.0.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.19.1...v1.20.0 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.20.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 7ff2de2591 ]
2025-06-02 09:47:38 -04:00
dependabot[bot]
b97d17942b
Bump rocm-docs-core[api_reference] from 1.19.0 to 1.19.1 in /docs/sphinx ( #219 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.19.0 to 1.19.1.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.19.0...v1.19.1 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.19.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 2afe8b68ea ]
2025-05-30 09:32:01 -04:00
dependabot[bot]
c352d1cf58
Bump tornado from 6.4.2 to 6.5.1 in /docs/sphinx ( #214 )
...
Bumps [tornado](https://github.com/tornadoweb/tornado ) from 6.4.2 to 6.5.1.
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst )
- [Commits](https://github.com/tornadoweb/tornado/compare/v6.4.2...v6.5.1 )
---
updated-dependencies:
- dependency-name: tornado
dependency-version: 6.5.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 9943e10569 ]
2025-05-27 11:33:54 -04:00
dependabot[bot]
526af64292
Bump rocm-docs-core[api_reference] from 1.18.4 to 1.19.0 in /docs/sphinx ( #215 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.18.4 to 1.19.0.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.18.4...v1.19.0 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 22642aaff9 ]
2025-05-27 11:25:20 -04:00
kcossett-amd
07bb699993
Add Pre-Commit Hooks ( #212 )
...
Pre-commit hooks for:
- clang-format
- cmake-format
- copyright header check
- YAML check
- Trailing whitespace and end-of-file newline check
---------
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
Co-authored-by: Peter Park <git@peterjunpark.com >
[ROCm/rocprofiler-systems commit: 54e91f1c2d ]
2025-05-26 14:50:48 -04:00
David Galiffi
52a132a3d8
Add note about workaround required for older versions of tool. ( #209 )
...
Versions prior to ROCm 6.3.1 require that Perfetto UI v46.0 is used to view output files.
For SWDEV-510143
[ROCm/rocprofiler-systems commit: dfbcbee55f ]
2025-05-20 17:27:02 -04:00
dependabot[bot]
484d66f7eb
Bump rocm-docs-core[api_reference] from 1.18.2 to 1.18.4 in /docs/sphinx ( #196 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.18.2 to 1.18.4.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.18.2...v1.18.4 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.18.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: a5c56a665d ]
2025-05-05 13:10:38 -04:00
Luca Bruni
579596dbba
Appropriately filter data based on -D and -H options ( #163 )
...
- Addresses concern that device metric tracks are still shown in Perfetto trace file even when only -H is specified to rocprof-sys-sample (and vice versa).
- Update sampling call-stack docs.
[ROCm/rocprofiler-systems commit: 8ae6651357 ]
2025-04-30 09:50:51 -04:00
Pratik Basyal
6b93df5843
Broken link fix to How-to: Configuring Runtime Options [amd-staging] ( #180 )
...
* Update to KOKKOS_TOOLS_LIBS env var (#69 )
* Broken link fixed
---------
Co-authored-by: Maarten Arnst <maarten.arnst@ulg.ac.be >
[ROCm/rocprofiler-systems commit: 16745948de ]
2025-04-24 12:34:00 -04:00
dependabot[bot]
2d6a4c8307
Bump cryptography from 43.0.1 to 44.0.1 in /docs/sphinx ( #173 )
...
Bumps [cryptography](https://github.com/pyca/cryptography ) from 43.0.1 to 44.0.1.
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pyca/cryptography/compare/43.0.1...44.0.1 )
---
updated-dependencies:
- dependency-name: cryptography
dependency-version: 44.0.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: cbc0080419 ]
2025-04-22 11:07:31 -04:00
Sajina PK
04fb7e4fe7
RocJpeg cmake and document fixes ( #157 )
...
- Fix for rocjpeg sample cmake due to changes in the rocJPEG project
- Fix for rocprofiler-sdk version check - change the format
- Edits to docs for jpeg and vcn activity support - mention that these values may not be supported on all ASICs.
[ROCm/rocprofiler-systems commit: fad3a0d341 ]
2025-04-09 16:20:02 -04:00
ajanicijamd
01c1cbe57f
"How-To" document describing network performance profiling ( #145 )
...
---------
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
Co-authored-by: Peter Park <peter.park@amd.com >
Co-authored-by: Pratik Basyal <pratik.basyal@amd.com >
[ROCm/rocprofiler-systems commit: de84a277f2 ]
2025-04-09 16:11:52 -04:00
dependabot[bot]
7ba2f1264e
Bump rocm-docs-core[api_reference] from 1.18.1 to 1.18.2 in /docs/sphinx ( #159 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.18.1 to 1.18.2.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.18.1...v1.18.2 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-version: 1.18.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 7f2b19882d ]
2025-04-03 09:46:25 -04:00
David Galiffi
63ec6ec48d
Additional AMD-SMI Updates ( #149 )
...
- Check AMDSMI header version to fix compilation failure with v2.0 header change
- Fix ROCM-SMI references in documentation and tests
- Check AMDSMI library version at runtime and output in logs
- Fix a possible exception occurring when an in-flight sample is outstanding while the component is shutting down.
[ROCm/rocprofiler-systems commit: 7bb45aba1c ]
2025-03-31 11:07:50 -04:00
David Galiffi
bd0eeb9555
Reapply "Upgrade ROCm-SMI to AMD SMI ( #86 )" ( #147 )
...
* Reapply "Upgrade ROCm-SMI to AMD SMI (#86 )"
This reverts commit 9fcea73122 .
---------
Signed-off-by: Carrie Fallows <Carrie.Fallows@amd.com >
Co-authored-by: David Galiffi <David.Galiffi@amd.com >
[ROCm/rocprofiler-systems commit: 85bbea4954 ]
2025-03-25 17:31:27 -04:00
dependabot[bot]
516c3b11f8
Bump rocm-docs-core[api_reference] from 1.17.1 to 1.18.1 in /docs/sphinx ( #137 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.17.1 to 1.18.1.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.17.1...v1.18.1 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: b621691a53 ]
2025-03-17 13:50:58 -04:00
dependabot[bot]
6406fd7d3f
Bump jinja2 from 3.1.4 to 3.1.6 in /docs/sphinx ( #134 )
...
Bumps [jinja2](https://github.com/pallets/jinja ) from 3.1.4 to 3.1.6.
- [Release notes](https://github.com/pallets/jinja/releases )
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst )
- [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.6 )
---
updated-dependencies:
- dependency-name: jinja2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: ccb315787e ]
2025-03-07 13:55:51 -07:00
Sajina PK
527cfcafa4
Documentation update for VCN, JPEG, rocDecode and rocJPEG feature ( #109 )
...
* Documentation update for VCN, JPEG, rocDecode and rocJPEG feature
Update documents to include the new tracks for tracing VCN and JPEG
activity.
Update the rocDecode and rocJPEG tracing enabled using ROCprofiler-SDK.
Update headings to the perfetto output images.
* Add few more lines about domain values.
* Add missing words to the dictionary
[ROCm/rocprofiler-systems commit: 2222ce9b83 ]
2025-03-06 18:03:33 -05:00
dependabot[bot]
933ee1cf26
Bump rocm-docs-core[api_reference] from 1.17.0 to 1.17.1 in /docs/sphinx ( #127 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.17.0 to 1.17.1.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.17.0...v1.17.1 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: 9b4ec6adb9 ]
2025-03-03 22:55:17 -05:00
dependabot[bot]
67d4cf637a
Bump rocm-docs-core[api_reference] from 1.15.0 to 1.17.0 in /docs/sphinx ( #114 )
...
Bumps [rocm-docs-core[api_reference]](https://github.com/ROCm/rocm-docs-core ) from 1.15.0 to 1.17.0.
- [Release notes](https://github.com/ROCm/rocm-docs-core/releases )
- [Changelog](https://github.com/ROCm/rocm-docs-core/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/ROCm/rocm-docs-core/compare/v1.15.0...v1.17.0 )
---
updated-dependencies:
- dependency-name: rocm-docs-core[api_reference]
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ROCm/rocprofiler-systems commit: c1d8799f92 ]
2025-02-20 09:44:29 -05:00
David Galiffi
9f4d6e33db
Update python documentation ( #106 )
...
* Fix a couple typos. Add note about limitations with AI / ML workloads.
* Updated note based on feedback.
[ROCm/rocprofiler-systems commit: b1d0c431c7 ]
2025-02-19 18:38:42 -05:00
David Galiffi
c1479bb70b
Add note to documentation about Perfetto workaround ( #103 )
...
Users viewing the "latest" documentation may still be using a version of omnitrace / rocprofiler-systems prior to 6.3.1. Re-add this warning so it is easier to find a workaround.
[ROCm/rocprofiler-systems commit: 349c7d3de6 ]
2025-02-12 21:16:00 -05:00