Hello,
From NX datasheet and the power modes in the link below, the CPU frequency is only 1.4GHz when all 6 CPU cores are online.
https://docs.nvidia.com/jetson/archives/l4t-archived/l4t-3242/index.html#page/Tegra%20Linux%20Driver%20Package%20Development%20Guide%2Fpower_management_jetson_xavier.html%23wwpID0E0LO0HA
In our testing, we found 6 CPU cores can all be running at 1.9GHz by conducting the following Linux command:
for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_max_freq; do echo 1907200 > $i; done
And the performance benchmark SW shows significantly better CPU performance after increasing the CPU clocks from 1.4GHz to 1.9GHz.
In the post below, it says “we cannot guarantee the behavior and quality of NX then”.
Based on the results of nVIDIA’s internal evaluation, is it safe for customers to keep the frequency of all 6 CPU cores running at 1.9GHz for commercial product launch? Is the 1-year warranty still valid for NX SOM if 1.9GHz is used for all 6 CPU cores in commercial SW?
Thanks!