Python Codelets¶
Python Codelets allow users to build parts of their application in Python. This section gives an overview of the how to implement codelets in python and how to use them in an application.
Codelets are user implemented units which can be run as part of the graph. Python codelets allow the users to implement this functionality in python. Like C++ codelets, python codelets have the following functions users can implement:
start()- called once when the codelet startstick()- called on every tickstop()- called once when the codelet is stopped
Unlike the C++ codelets, all the python codelets are registered via a same interface namely: nvidia::gxf::PyCodeletV0.
To implement a codelet in python, users have to implement the class CodeletAdapter. As explained above, the users
implement start(), stop() and tick() methods in Python. This class also provides basic functionality to
obtain the parameters.
Running an application containing a Python Codelet has to be done using gxe.py. Graphs containing Python Codelets
cannot run directly using the gxe binary because a python interpreter has to be started before running any Python
Codelet.
A graph can also be run if graph-composer and regsitry is already installed.
Use the following command to install the relevant extensions:
registry graph insall -g path/to/graph.yaml -m output/path/to/generated/manifest.yaml -d path/to/target.yaml --output-directory output/directory
A sample target file can be found in /opt/nvidia/graph-composer/.
The above command will install the relevant extensions and other required files to output/directory.
Once that is done, run the following command:
cp /opt/nvidia/graph-composer/core.so /opt/nvidia/graph-composer/core.py output/directory/gxf
Finally add output/directory to PYTHONPATH using the following command:
export PYTHONPATH=output/directory
Running a graph using gxe.py:
python3 output/directory/gxf/std/gxe.py --app path/to/graph.yaml --manifest path/to/manifest/file.yaml
Following are some of the Python Codelet examples which can be found in gxf/python/tests:
Ping Codelets demonstrate the basic usage of python codelets
- PingTx.py
Constructs an empty message which is an
EntityTransmits it on the first transmitter
- PingRx.py
Receives a message on first transmitter
Passes if it’s non-null else raises an exception
Obtaining tensor data in python
- VerifyEqual.py
This codelet has two receivers.
It receives two messages one from each receiver.
Extracts tensor data from both the message.
Copies the data on the host if the tensor is on the device.
Asserts that the data on the tensors is equal.
Generating tensor data from python
- StreamGenerator
On every tick, this codelet generates four tensors: two on host and two on device.
It uses TensorDescription object to reshape the tensor to desired shape.
Creates a host message and a device message.
Adds the device tensors to device messages and host tensors to host messages
Publishes the host message on the first transmitter and the device message on the second transmitter.
Please refer to the sample graph files present in the gxf/python/tests directory for examples on
how to use the Python Codelets in an application.
General Concepts¶
Python enables users to add a lot of functionality with very less boiler plate code and hence is heavily used in the Machine Learning Community.
For e.g. simulating a sensor for data, vizualizing the generated output or running various ML models on the data can be easily implemented in python. Python Codelets allow users to implement these functionalities in python.
Unlike C++ codelets, python codelets are not registered individually. To create a python codelet users implement
CodeletAdapter (a python base class) and all python codelets are registered in the registry as PyCodeletV0
which is a classic C++ codelet. This C++ codelet calls the start(), tick() and stop() methods of the
python codelet implementation.
PyCodeletV0 |
User’s Python Codelet |
|---|---|
|
|
|
|
|
|
Implenting a Python Codelet¶
Implementing Class¶
To implement a python codelet, users implement CodeletAdapter. This is available in
gxf.python_codelet.codelet. Specifically, users implement the following functions:
start() - Setting up the codelet. Called once when the codelet starts.
tick() - Business logic. Called based on Scheduling Terms.
stop() - Clean up. Called when entity containing the python codelet is terminated.
Adding Python Codelet to the Graph¶
Adding a python codelet to the graph is different from adding a C++ codelet. Unlike C++ codelets, the type of python
codelet is nvidia::gxf::PyCodeletV0 and not nvidia::gxf::Codelet. Linking the implementation of the codelet is
done via params directly.
Also, python codelets only support registering only a selected types of parameters:
nvidia::gxf::PyCodeletV0 accepts the following parameters:
Parameter |
Mandatory/Optional |
Description |
|---|---|---|
|
Mandatory |
Name of the user’s python codelet class which implements CodeletAdapter |
|
Mandatory |
Absolute path to the file containing the implementation |
|
Optional |
A list of receivers |
|
Optional |
A list of transmitters |
|
Optional |
A list of allocators |
|
Optional |
A list of cuda stream pools |
|
Optional |
A string which the users can parse for setting additional params |
Following is an entity named rx which contains the following components:
A python codelet called
python_receiverA
DoubleBufferReceivercalled signalA nameless
MessageAvailableSchedulingTerm
The implementation of the python codelet is present in some/path/to/PythonCodelets.py file under the class
called PingRx which should implement CodeletAdapter. The python codelet also accept two other parameters:
receivers: A list containing single item,signal, which is a double buffer receiver component.codelet_params: a custom string which the user can parse in thestart(),tick()orstop()method and use accordingly.
---
name: rx
components:
- name: signal
type: nvidia::gxf::DoubleBufferReceiver
- type: nvidia::gxf::MessageAvailableSchedulingTerm
parameters:
receiver: signal
min_size: 1
- name: python_receiver
type: nvidia::gxf::PyCodeletV0
parameters:
codelet_name: "PingRx"
codelet_file: "some/path/to/PingRx.py"
receivers: [signal]
codelet_params: "log_count=5"
Accessing Parameters¶
CodeletAdapter implements the following methods which let’s users access the parameters using self.method_name():
Method |
Description |
|---|---|
|
returns a list of gxf.StandardExtension.Allocator objects |
|
returns a list of gxf.CudaExtension.CudaStreamPool objects |
|
returns a list of gxf.StandardExtension.Transmitter objects |
|
returns a list of gxf.StandardExtension.Receiver objects |
|
returns a gxf.StandardExtension.Clock |
|
returns a string containing the additional params |
CodeletAdapter also implements the following utility methods:
Method |
Description |
|---|---|
|
returns the unique ID of the entity containing this codelet. |
|
returns the unique ID of the codelet component. |
|
returns the name of the python codelet. |
|
returns the last timestamp in nanoseconds when the codelet was either started, ticked, or stopped. |
|
same as |
|
returns the time difference between the current call ( |
|
returns the number of times the codelet has been executed. |
|
returns |