Add sync option to -Z threads to force synchronization on one thread#156198
Open
Zoxc wants to merge 1 commit intorust-lang:mainfrom
Open
Add sync option to -Z threads to force synchronization on one thread#156198Zoxc wants to merge 1 commit intorust-lang:mainfrom
sync option to -Z threads to force synchronization on one thread#156198Zoxc wants to merge 1 commit intorust-lang:mainfrom
Conversation
Collaborator
|
r? @folkertdev rustbot has assigned @folkertdev. Use Why was this reviewer chosen?The reviewer was selected based on:
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
folkertdev
requested changes
May 6, 2026
Comment on lines
+1070
to
1089
| pub(crate) fn parse_threads(slot: &mut Option<usize>, v: Option<&str>) -> bool { | ||
| let n = match v { | ||
| Some("sync") => { | ||
| *slot = Some(1); | ||
| return true; | ||
| } | ||
| None => false, | ||
| Some(s) => match s.parse().ok() { | ||
| Some(0) => std::thread::available_parallelism().map_or(1, NonZero::<usize>::get), | ||
| Some(i) => i, | ||
| None => return false, | ||
| }, | ||
| None => return false, | ||
| }; | ||
|
|
||
| // We want to cap the number of threads here to avoid large numbers like 999999 and compiler panics. | ||
| // This solution was suggested here https://github.com/rust-lang/rust/issues/117638#issuecomment-1800925067 | ||
| *slot = slot.clone().min(MAX_THREADS_CAP); | ||
| ret | ||
| let n = n.min(MAX_THREADS_CAP); | ||
| *slot = (n > 1).then_some(n); | ||
| true | ||
| } |
Contributor
There was a problem hiding this comment.
I think this will now be clearer as
Suggested change
| pub(crate) fn parse_threads(slot: &mut Option<usize>, v: Option<&str>) -> bool { | |
| let n = match v { | |
| Some("sync") => { | |
| *slot = Some(1); | |
| return true; | |
| } | |
| None => false, | |
| Some(s) => match s.parse().ok() { | |
| Some(0) => std::thread::available_parallelism().map_or(1, NonZero::<usize>::get), | |
| Some(i) => i, | |
| None => return false, | |
| }, | |
| None => return false, | |
| }; | |
| // We want to cap the number of threads here to avoid large numbers like 999999 and compiler panics. | |
| // This solution was suggested here https://github.com/rust-lang/rust/issues/117638#issuecomment-1800925067 | |
| *slot = slot.clone().min(MAX_THREADS_CAP); | |
| ret | |
| let n = n.min(MAX_THREADS_CAP); | |
| *slot = (n > 1).then_some(n); | |
| true | |
| } | |
| pub(crate) fn parse_threads(slot: &mut Option<usize>, v: Option<&str>) -> bool { | |
| let Some(s) = v else { return false }; | |
| // Configures to use synchronization despite only using one thread. | |
| if s == "sync" { | |
| *slot = Some(1); | |
| return true; | |
| } | |
| let n = match s.parse().ok() { | |
| Some(0) => std::thread::available_parallelism().map_or(1, NonZero::<usize>::get), | |
| Some(i) => i, | |
| None => return false, | |
| }; | |
| // We want to cap the number of threads here to avoid large numbers like 999999 and compiler panics. | |
| // This solution was suggested here https://github.com/rust-lang/rust/issues/117638#issuecomment-1800925067 | |
| let n = n.min(MAX_THREADS_CAP); | |
| *slot = (n > 1).then_some(n); | |
| true | |
| } |
maybe with another comment on the (n > 1).then_some(n) line.
Collaborator
|
Reminder, once the PR becomes ready for a review, use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds a
syncoption to-Z threadsto force synchronization while still using one thread. This is useful to measure overhead of synchronization without the noise of additional threads.