We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bcda892 + 25cdd06 commit 7ad8dbaCopy full SHA for 7ad8dba
src/tools/miri/src/bin/miri.rs
@@ -723,8 +723,8 @@ fn main() {
723
724
// Ensure we have parallelism for many-seeds mode.
725
if many_seeds.is_some() && !rustc_args.iter().any(|arg| arg.starts_with("-Zthreads=")) {
726
- // Clamp to 8 threads; things get a lot less efficient beyond that due to lock contention.
727
- let threads = std::thread::available_parallelism().map_or(1, |n| n.get()).min(8);
+ // Clamp to 10 threads; things get a lot less efficient beyond that due to lock contention.
+ let threads = std::thread::available_parallelism().map_or(1, |n| n.get()).min(10);
728
rustc_args.push(format!("-Zthreads={threads}"));
729
}
730
let many_seeds =
0 commit comments