Binary file not shown.
|
After Width: | Height: | Size: 79 KiB |
@@ -22,6 +22,7 @@ options.
|
|||||||
* :doc:`cli`
|
* :doc:`cli`
|
||||||
* :doc:`grafana-gui`
|
* :doc:`grafana-gui`
|
||||||
* :doc:`standalone-gui`
|
* :doc:`standalone-gui`
|
||||||
|
* :doc:`text-based user interface (TUI)`
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,72 @@
|
|||||||
|
.. meta::
|
||||||
|
:description: ROCm Compute Profiler analysis: Text-based User Interface
|
||||||
|
:keywords: Omniperf, ROCm, profiler, tool, Instinct, accelerator, GUI, standalone, filter
|
||||||
|
|
||||||
|
****************************************
|
||||||
|
Text-based User Interface (TUI) analysis
|
||||||
|
****************************************
|
||||||
|
|
||||||
|
ROCm Compute Profiler's analyze mode now supports a lightweight Text-based User Interface (TUI)
|
||||||
|
that provides an interactive terminal experience for enhanced usability. You can use the TUI
|
||||||
|
interface as a more visually engaging and interactive alternative to explore analysis results
|
||||||
|
compared to the standard :doc:`cli`. It provides enhanced visual feedback and easy navigation without
|
||||||
|
needing the extra setup of a full graphical interface. This analysis option is implemented as a
|
||||||
|
terminal-based interface that offers real-time visual feedback, keyboard shortcuts for common
|
||||||
|
actions, and improved readability with formatted output.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
TUI is currently in an early access state. While functional, you may encounter minor issues or limitations.
|
||||||
|
For the limitations identified, see :ref:`Current limitations <tui-limitation>`
|
||||||
|
Running production workloads is not recommended.
|
||||||
|
|
||||||
|
Launch the TUI analyzer
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
1. Use the ``--tui`` flag with the analysis command to launch the ROCm Compute Profiler TUI analyzer.
|
||||||
|
For example:
|
||||||
|
|
||||||
|
.. code-block:: shell-session
|
||||||
|
|
||||||
|
$ rocprof-compute analyze --tui
|
||||||
|
|
||||||
|
2. To start the analysis, use the dropdown menu at the top left of the screen to select a single
|
||||||
|
workload from ``rocprof-compute profile`` generated output directories.
|
||||||
|
|
||||||
|
.. image:: ../../data/analyze/tui.png
|
||||||
|
:align: center
|
||||||
|
:alt: ROCm Compute Profiler TUI home screen
|
||||||
|
:width: 800
|
||||||
|
|
||||||
|
3. You can see the center window update with collapsed contents. Uncollapse to view tables, charts,
|
||||||
|
and graphs visualizing the analysis data.
|
||||||
|
|
||||||
|
4. After the analysis results are loaded, you can start interactive analysis with detailed metrics.
|
||||||
|
The TUI supports basic keyboard shortcuts, including quit application commands for easy navigation.
|
||||||
|
|
||||||
|
TUI analysis structure
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
Unlike the :doc:`cli` plain style interfaces, the TUI restructures the analysis workflow into four
|
||||||
|
hierarchical categories to provide a more organized, top-down analysis approach:
|
||||||
|
|
||||||
|
1. Top Stat
|
||||||
|
2. High Level analysis
|
||||||
|
3. Detailed block analysis
|
||||||
|
4. Source Level analysis
|
||||||
|
|
||||||
|
You are recommended to follow this top-down hierarchical structure to conduct a thorough performance
|
||||||
|
analysis, starting with the broad overview and progressively drilling down to specific details.
|
||||||
|
|
||||||
|
.. _tui-limitation:
|
||||||
|
|
||||||
|
Current limitations
|
||||||
|
----------------------------------
|
||||||
|
The TUI implementation has several limitations that will be addressed in future releases:
|
||||||
|
|
||||||
|
* **PC sampling**: Source Level analysis does not have PC sampling enabled by default during the
|
||||||
|
profiling stage. Refer to :doc:`../pc_sampling` for details on how to build and enable PC sampling
|
||||||
|
manually.
|
||||||
|
|
||||||
|
* **Filtering capabilities**: Advanced filtering options such as kernel filtering and dispatch
|
||||||
|
filtering are currently not supported. These features will be available in upcoming releases.
|
||||||
@@ -152,6 +152,14 @@ Analyze mode
|
|||||||
To generate a lightweight GUI interface, you can add the ``--gui`` flag to your
|
To generate a lightweight GUI interface, you can add the ``--gui`` flag to your
|
||||||
analysis command.
|
analysis command.
|
||||||
|
|
||||||
|
Analyze mode now supports a lightweight Text-based User Interface (TUI) that
|
||||||
|
provides an interactive terminal experience for enhanced usability. To enable TUI mode,
|
||||||
|
use the ``--tui`` flag when running the analyze command:
|
||||||
|
|
||||||
|
.. code-block:: shell
|
||||||
|
|
||||||
|
$ rocprof-compute analyze --tui
|
||||||
|
|
||||||
This mode is a middle ground to the highly detailed ROCm Compute Profiler Grafana GUI and
|
This mode is a middle ground to the highly detailed ROCm Compute Profiler Grafana GUI and
|
||||||
is great if you want immediate access to a hardware component you’re already
|
is great if you want immediate access to a hardware component you’re already
|
||||||
familiar with.
|
familiar with.
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ in practice.
|
|||||||
|
|
||||||
* :doc:`how-to/analyze/standalone-gui`
|
* :doc:`how-to/analyze/standalone-gui`
|
||||||
|
|
||||||
|
* :doc:`how-to/analyze/tui`
|
||||||
|
|
||||||
.. grid-item-card:: Conceptual
|
.. grid-item-card:: Conceptual
|
||||||
|
|
||||||
* :doc:`conceptual/performance-model`
|
* :doc:`conceptual/performance-model`
|
||||||
|
|||||||
@@ -26,6 +26,7 @@ subtrees:
|
|||||||
- file: how-to/analyze/cli.rst
|
- file: how-to/analyze/cli.rst
|
||||||
- file: how-to/analyze/grafana-gui.rst
|
- file: how-to/analyze/grafana-gui.rst
|
||||||
- file: how-to/analyze/standalone-gui.rst
|
- file: how-to/analyze/standalone-gui.rst
|
||||||
|
- file: how-to/analyze/tui.rst
|
||||||
|
|
||||||
- caption: Conceptual
|
- caption: Conceptual
|
||||||
entries:
|
entries:
|
||||||
|
|||||||
Reference in New Issue
Block a user