pyitt is a Python binding to Intel Instrumentation and Tracing Technology (ITT) API. It provides a convenient way to mark up the Python code for further performance analysis using performance analyzers from Intel like Intel VTune or others.
pyitt supports following ITT APIs:
- Collection Control API
- Counter API
- Domain API
- Event API
- Frame API
- Id API
- Processor Trace Control API
- String Handle API
- Task API
- Thread Naming API
The main goal of the project is to provide the ability to instrument a Python code using ITT API in the Pythonic way. pyitt provides wrappers that simplify markup of Python code.
import pyitt
@pyitt.task
def workload():
pass
workload()
pyitt.task
can be used as a decorator. In this case, the name of a callable object (workload
function in this
example) will be used as a name of the task and the task will be attributed to a default domain named 'pyitt'.
If you want to change the default name and/or other parameters for the task (e.g. task domain), you can pass
them as arguments to pyitt.task
:
import pyitt
@pyitt.task('My Task', domain='My Task Domain')
def workload():
pass
workload()
Also, pyitt.task
returns the object that can be used as a context manager:
import pyitt
with pyitt.task():
# some code here...
pass
If the task name is not specified, the pyitt.task
uses call site information (filename and line number) to give
the name to the task. A custom name for the task and other task parameters can be specified via arguments
for pyitt.task
in the same way as for the decorator form.
pyitt package is available on PyPi and can be installed in the usual way for the supported configurations:
python -m pip install pyitt
The native part of pyitt module is written using C++20 standard, therefore you need a compiler that supports this standard, for example GCC-10 for Linux and Visual Studio 2022 for Windows.
-
Install the compiler and Python utilities to build module:
sudo apt install gcc g++ python3-pip
-
Clone the repository:
git clone --recurse-submodules https://github.com/esuldin/pyitt.git
-
Build and install pyitt:
cd pyitt python3 -m pip install .
-
Install Python 3.8+ together with pip utility.
-
Install Visual Studio 2022. Make sure that "Desktop development with C++" workload is selected.
-
Clone the repository
git clone --recurse-submodules https://github.com/esuldin/pyitt.git
-
Build and install pyitt
cd pyitt python -m pip install .
pyitt provides compatibility layers that allow you to use pyitt as a "backend" for other Python bindings to the ITT API.
pyitt.compatibility_layers.itt_python
fully implements the itt-python public API. It allows you to switch to pyitt
without anything else by only replacing the imports. For example, the following import for itt-python:
import itt
should be replaced with:
import pyitt.compatibility_layers.itt_python as itt
For more details, please see itt_python_compatibility_sample.py.
pyitt.compatibility_layers.ittapi
implements most of ittapi Python binding public API. Technically, the Python binding
to ITT API that is included in the ITT API repository is based on the pyitt v1.1.0 code base. But, the implementations
have been diverging since then. However, in most cases, it should be possible to use newer versions of pyitt instead of
ittapi just by replacing the imports. For example, the import for ittapi:
import ittapi
should be replaced with:
import pyitt.compatibility_layers.ittapi as ittapi
-
If pyitt is used in a function which is specified as a target for calls from multiprocessing module and an application is profiled on Linux with Intel VTune Profiler, the following error may occur:
<...>/data.0/userapicollector-*.trace' (Data file is corrupted)
This issue is caused by libittnotify_collector.so library which is a part of Intel VTune Profiler. Unfortunately, the issue is not resolvable within pyitt itself. However, a potential workaround is to use 'spawn' method for multiprocessing module in the profiled application:
import multiprocessing ... if __name__ == '__main__': multiprocessing.set_start_method('spawn')
Please see #1 for more technical information.
- Intel® VTune™ Profiler User Guide - Instrumentation and Tracing Technology APIs
- Intel® VTune™ Profiler User Guide - Task Analysis
- Intel® VTune™ Profiler Performance Analysis Cookbook - Profiling an Application for Performance Anomalies
- Intel® Graphics Performance Analyzers User Guide - Instrumentation and Tracing Technology API Support