Why do I only see 1 and 2 CPUs on my Jetson. It shows me Jetson stats.
Do you see an “isolcpus=...
” entry from “cat /proc/cmdline
”? If so, then it just means those cores were set for use only when explicitly asked for. If this is the case, then go to your “/boot/extlinux/extlinux.conf
” file, look for the “APPEND
” key/value pair, and at the very end of the line (with a single space character delimiter), add:
isolcpus=
The kernel will use the last occurrence of most parameters, and if there is an earlier isolcpus=
entry, then the new entry will be the one enforced (and naming no cores for isolation means none will be isolated).
Thanks, this is a very detailed explanation. Thank you.
I also solved the described problem by simply using the command for the jupiter console
sudo nvpmodel -m0
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.