Possiblity of disabling 1 more core on the uz801 #618
GhostDog98
started this conversation in
Show and tell
Replies: 1 comment
-
ok thank you. feel free to add to the docs. i'll move this to the discussion area |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What problem does this feature solve or what does it enhance?
The docs mentions "even with 2 disabled cores there is plenty of compute overhead".
This would enable a better battery life by a major fraction.
Proposed Solution
My model came with only 1 core active and seems to be working perfectly fine.
If I run
cat /proc/stat | grep cpu
:It shows ~54% utilization. Additionally, if i run
cat /proc/interrupts
, all processes are already running on core 0, and if i run:cat /sys/devices/system/cpu/cpu1/online
returns 0cat /sys/devices/system/cpu/cpu0/online
returns 1So only cpu0 is online.
Nonetheless, my stick seems to be working perfectly fine.
On a system with core 1 enabled, you should be able to disable it using
echo 0 > /sys/devices/system/cpu/cpu1/online
.Alternatives Considered
No response
Beta Was this translation helpful? Give feedback.
All reactions