2022-05-08 07:57:09 -05:00
# Omnitrace: Application Profiling, Tracing, and Analysis
2021-08-25 11:39:00 -05:00
2022-06-29 11:06:52 -05:00
[](https://github.com/AMDResearch/omnitrace/actions/workflows/ubuntu-bionic.yml)
2022-07-12 21:28:25 -05:00
[](https://github.com/AMDResearch/omnitrace/actions/workflows/ubuntu-focal.yml)
2022-06-29 11:06:52 -05:00
[](https://github.com/AMDResearch/omnitrace/actions/workflows/opensuse.yml)
2022-04-04 15:27:38 -05:00
2022-05-08 07:57:09 -05:00
> ***[Omnitrace](https://github.com/AMDResearch/omnitrace) is an AMD open source research project and is not supported as part of the ROCm software stack.***
2022-04-05 20:40:27 -05:00
2022-07-21 12:56:10 -05:00
## Overview
AMD Research is seeking to improve observability and performance analysis for software running on AMD heterogeneous systems.
If you are familiar with [rocprof ](https://rocmdocs.amd.com/en/latest/ROCm_Tools/ROCm-Tools.html ) and/or [uProf ](https://developer.amd.com/amd-uprof/ ),
you will find many of the capabilities of these tools available via Omnitrace in addition to many new capabilities.
Omnitrace is a comprehensive profiling and tracing tool for parallel applications written in C, C++, Fortran, HIP, OpenCL, and Python which execute on the CPU or CPU+GPU.
It is capable of gathering the performance information of functions through any combination of binary instrumentation, call-stack sampling, user-defined regions, and Python interpreter hooks.
Omnitrace supports interactive visualization of comprehensive traces in the web browser in addition to high-level summary profiles with mean/min/max/stddev statistics.
In addition to runtimes, omnitrace supports the collection of system-level metrics such as the CPU frequency, GPU temperature, and GPU utilization, process-level metrics
such as the memory usage, page-faults, and context-switches, and thread-level metrics such as memory usage, CPU time, and numerous hardware counters.
### Data Collection Modes
- Dynamic instrumentation
- Runtime instrumentation
- Instrument executable and shared libraries at runtime
- Binary rewriting
- Generate a new executable and/or library with instrumentation built-in
- Statistical sampling
- Periodic software interrupts per-thread
- Process-level sampling
- Background thread records process-, system- and device-level metrics while the application executes
- Critical trace generation
### Data Analysis
- High-level summary profiles with mean/min/max/stddev statistics
- Low overhead, memory efficient
- Ideal for running at scale
- Comprehensive traces
- Every individual event/measurement
- Critical trace analysis (alpha)
### Parallelism API Support
- HIP
- HSA
- Pthreads
- MPI
- Kokkos-Tools (KokkosP)
- OpenMP-Tools (OMPT)
### GPU Metrics
- GPU hardware counters
- HIP API tracing
- HIP kernel tracing
- HSA API tracing
- HSA operation tracing
- System-level sampling (via rocm-smi)
- Memory usage
- Power usage
- Temperature
- Utilization
### CPU Metrics
- CPU hardware counters sampling and profiles
- CPU frequency sampling
- Various timing metrics
- Wall time
- CPU time (process and/or thread)
- CPU utilization (process and/or thread)
- User CPU time
- Kernel CPU time
- Various memory metrics
- High-water mark (sampling and profiles)
- Memory page allocation
- Virtual memory usage
- Network statistics
- I/O metrics
- ... many more
2022-05-08 07:57:09 -05:00
## Documentation
2021-09-02 13:14:58 -05:00
2022-05-08 07:57:09 -05:00
The full documentation for [omnitrace ](https://github.com/AMDResearch/omnitrace ) is available at [amdresearch.github.io/omnitrace ](https://amdresearch.github.io/omnitrace/ ).
## Quick Start
### Omnitrace Settings
2022-06-28 21:53:53 -05:00
Generate an omnitrace configuration file using `omnitrace-avail -G omnitrace.cfg` . Optionally, use `omnitrace-avail -G omnitrace.cfg --all` for
2022-06-28 01:36:04 -05:00
a verbose configuration file with descriptions, categories, etc. Modify the configuration file as desired, e.g. enable
[perfetto ](https://perfetto.dev/ ), [timemory ](https://github.com/NERSC/timemory ), sampling, and process-level sampling by default
and tweak some sampling default values:
```console
# ...
OMNITRACE_USE_PERFETTO = true
OMNITRACE_USE_TIMEMORY = true
OMNITRACE_USE_SAMPLING = true
OMNITRACE_USE_PROCESS_SAMPLING = true
# ...
OMNITRACE_SAMPLING_FREQ = 50
OMNITRACE_SAMPLING_CPUS = all
OMNITRACE_SAMPLING_GPUS = $env:HIP_VISIBLE_DEVICES
```
Once the configuration file is adjusted to your preferences, either export the path to this file via `OMNITRACE_CONFIG_FILE=/path/to/omnitrace.cfg`
or place this file in `${HOME}/.omnitrace.cfg` to ensure these values are always read as the default. If you wish to change any of these settings,
you can override them via environment variables or by specifying an alternative `OMNITRACE_CONFIG_FILE` .
2022-05-08 07:57:09 -05:00
### Omnitrace Executable
The `omnitrace` executable is used to instrument an existing binary.
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2021-11-24 04:59:59 -06:00
omnitrace --help
omnitrace <omnitrace-options> -- <exe-or-library> <exe-options>
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
#### Binary Rewrite
2021-08-25 11:39:00 -05:00
2021-09-06 22:23:24 -05:00
Rewrite the text section of an executable or library with instrumentation:
2021-08-25 11:39:00 -05:00
2021-09-06 22:23:24 -05:00
```shell
2021-11-24 04:59:59 -06:00
omnitrace -o app.inst -- /path/to/app
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
In binary rewrite mode, if you also want instrumentation in the linked libraries, you must also rewrite those libraries.
Example of rewriting the functions starting with `"hip"` with instrumentation in the amdhip64 library:
2021-09-06 22:23:24 -05:00
```shell
2021-09-02 13:14:58 -05:00
mkdir -p ./lib
2021-11-24 04:59:59 -06:00
omnitrace -R '^hip' -o ./lib/libamdhip64.so.4 -- /opt/rocm/lib/libamdhip64.so.4
2021-09-02 13:14:58 -05:00
export LD_LIBRARY_PATH = ${ PWD } /lib:${ LD_LIBRARY_PATH }
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
2022-04-05 20:40:27 -05:00
> ***Verify via `ldd` that your executable will load the instrumented library -- if you built your executable with***
> ***an RPATH to the original library's directory, then prefixing `LD_LIBRARY_PATH` will have no effect.***
2021-09-02 13:14:58 -05:00
Once you have rewritten your executable and/or libraries with instrumentation, you can just run the (instrumented) executable
or exectuable which loads the instrumented libraries normally, e.g.:
2021-09-06 22:23:24 -05:00
```shell
./app.inst
```
2021-11-24 04:59:59 -06:00
If you want to re-define certain settings to new default in a binary rewrite, use the `--env` option. This `omnitrace` option
2022-05-10 17:30:45 -05:00
will set the environment variable to the given value but will not override it. E.g. the default value of `OMNITRACE_PERFETTO_BUFFER_SIZE_KB`
2021-09-06 22:23:24 -05:00
is 1024000 KB (1 GiB):
```shell
# buffer size defaults to 1024000
2021-11-24 04:59:59 -06:00
omnitrace -o app.inst -- /path/to/app
2021-09-06 22:23:24 -05:00
./app.inst
```
2022-05-10 17:30:45 -05:00
Passing `--env OMNITRACE_PERFETTO_BUFFER_SIZE_KB=5120000` will change the default value in `app.inst` to 5120000 KiB (5 GiB):
2021-09-06 22:23:24 -05:00
```shell
# defaults to 5 GiB buffer size
2022-05-10 17:30:45 -05:00
omnitrace -o app.inst --env OMNITRACE_PERFETTO_BUFFER_SIZE_KB = 5120000 -- /path/to/app
2021-09-06 22:23:24 -05:00
./app.inst
```
```shell
# override default 5 GiB buffer size to 200 MB
2022-05-10 17:30:45 -05:00
export OMNITRACE_PERFETTO_BUFFER_SIZE_KB = 200000
2021-09-02 13:14:58 -05:00
./app.inst
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
#### Runtime Instrumentation
2021-08-25 11:39:00 -05:00
2021-09-02 13:14:58 -05:00
Runtime instrumentation will not only instrument the text section of the executable but also the text sections of the
2022-05-08 07:57:09 -05:00
linked libraries. Thus, it may be useful to exclude those libraries via the `-ME` (module exclude) regex option
or exclude specific functions with the `-E` regex option.
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2021-11-24 04:59:59 -06:00
omnitrace -- /path/to/app
omnitrace -ME '^(libhsa-runtime64|libz\\.so)' -- /path/to/app
omnitrace -E 'rocr::atomic|rocr::core|rocr::HSA' -- /path/to/app
2021-08-25 11:39:00 -05:00
```
2022-05-08 07:57:09 -05:00
### Visualizing Perfetto Results
Visit [ui.perfetto.dev ](https://ui.perfetto.dev ) in your browser and open up the `.proto` file(s) created by omnitrace.




2021-09-02 13:14:58 -05:00
2021-11-24 04:59:59 -06:00
## Merging the traces from rocprof and omnitrace
2021-09-02 13:14:58 -05:00
2022-01-26 23:25:00 -06:00
This section requires installing [Julia ](https://julialang.org/ ).
### Installing Julia
Julia is available via Linux package managers or may be available via a module. Debian-based distributions such as Ubuntu can run (as a super-user):
```shell
apt-get install julia
```
Once Julia is installed, install the necessary packages (this operation only needs to be performed once):
```shell
julia -e 'using Pkg; for name in ["JSON", "DataFrames", "Dates", "CSV", "Chain", "PrettyTables"]; Pkg.add(name); end'
```
2022-04-05 20:40:27 -05:00
> ***Using `rocprof` externally for tracing is deprecated. The current version has built-in support for***
> ***recording the GPU activity and HIP API calls. If you want to use an external rocprof, either***
> ***configure CMake with `-DOMNITRACE_USE_ROCTRACER=OFF` or explicitly set `OMNITRACE_ROCTRACER_ENABLED=OFF` in the***
> ***environment.***
2021-09-06 22:23:24 -05:00
2021-11-24 04:59:59 -06:00
Use the `omnitrace-merge.jl` Julia script to merge rocprof and perfetto traces.
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2022-05-08 07:57:09 -05:00
export OMNITRACE_USE_ROCTRACER = OFF
2021-09-06 22:23:24 -05:00
rocprof --hip-trace --roctx-trace --stats ./app.inst
2021-11-24 04:59:59 -06:00
omnitrace-merge.jl results.json omnitrace-app.inst-output/2021-09-02_01.03_PM/*.proto
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
## Use Perfetto tracing with System Backend
2022-05-30 18:25:12 -05:00
Enable `traced` and `perfetto` in the background:
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2021-09-02 13:14:58 -05:00
pkill traced
traced --background
2022-05-30 18:25:12 -05:00
perfetto --out ./omnitrace-perfetto.proto --txt -c ${ OMNITRACE_ROOT } /share/omnitrace.cfg --background
2021-08-25 11:39:00 -05:00
```
2021-09-02 13:14:58 -05:00
2022-05-30 18:25:12 -05:00
Configure omnitrace to use the perfetto system backend:
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2022-05-10 17:30:45 -05:00
export OMNITRACE_PERFETTO_BACKEND = system
2021-08-25 11:39:00 -05:00
```
2022-05-30 18:25:12 -05:00
And finally, execute your instrumented application. Either the binary rewritten application:
2021-09-02 13:14:58 -05:00
2021-09-06 22:23:24 -05:00
```shell
2022-05-30 18:25:12 -05:00
omnitrace -o ./myapp.inst -- ./myapp
./myapp.inst
```
Or with runtime instrumentation:
```shell
omnitrace -- ./myapp
2021-08-25 11:39:00 -05:00
```