Hello
I’m using jetson agx orin with JP5.1 i wanted to know if there’s any way to monitor the usage load/power of every hardware part of the device other than powerGUI. PowerGUI doesn’t give clear results to monitor and it doesn’t provide data for DLA power consumption/VIC.
This is just the top half of the answer.
Someone better skilled may answer the bottom half part.
You may find further details from sysfs:
sudo su
# VIC details requires filtering out entries with service, device, victim and evict ;-):
find /sys -name '*vic*' | grep -iv service | grep -iv device | grep -iv victim | grep -iv evict | xargs ls -l
# DLA details are simpler to get:
find /sys -name '*dla*' | xargs ls -l
Thank you for your answer.
I couldn’t analyze what these commands give as an output because i couldn’t find details related to power
Please check Tegrastats Utility: Tegrastats Utility — Jetson Linux Developer Guide documentation (nvidia.com)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.