forked from Mirror/pmbootstrap
pmb.core.config: remove +1 from nproc defaults
Since Linux has switched to EEVDF[1], the $(($(nproc)+2)) hack is no longer faster. The new scheduler is way more efficient and performs better with only `nproc` threads. [1]: https://docs.kernel.org/scheduler/sched-eevdf.html Part-of: https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/merge_requests/2595
This commit is contained in:
parent
0bca7555d7
commit
71f01ddbeb
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class Config:
|
|||
extra_space: int = 0
|
||||
hostname: str = ""
|
||||
is_default_channel: bool = True
|
||||
jobs: int = multiprocessing.cpu_count() + 1
|
||||
jobs: int = multiprocessing.cpu_count()
|
||||
kernel: str = "stable"
|
||||
keymap: str = ""
|
||||
locale: str = "en_US.UTF-8"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue