Hi,
Sorry that tegrastats doesn’t support DLA monitoring.
Here are two possible way for your reference:
1.
Please use Nsight system to measure how much of a workload is running on the DLA.
https://developer.nvidia.com/nsight-systems
2.
You can also check the device node if DLA is active or not.
For DLA-0
cat /sys/devices/platform/host1x/15880000.nvdla0/power/runtime_status
For DLA-1
cat /sys/devices/platform/host1x/158c0000.nvdla1/power/runtime_status
Ex.
nvidia@jetson-0330618100118:~$ cat /sys/devices/platform/host1x/158c0000.nvdla1/power/runtime_status
active
nvidia@jetson-0330618100118:~$ cat /sys/devices/platform/host1x/158c0000.nvdla1/power/runtime_status
suspended
Thanks.