reduce regression parallelism
All checks were successful
Build / build (push) Successful in 2m52s

This commit is contained in:
2025-06-06 21:16:22 +02:00
parent b97d7c895a
commit b4b332bdbb

View File

@ -265,7 +265,7 @@ fn try_regression() -> Result<(usize, usize, usize), DynError> {
const GAMES: usize = 100;
// limit the parallelism
rayon::ThreadPoolBuilder::new()
.num_threads(std::thread::available_parallelism()?.get() / 4)
.num_threads(std::thread::available_parallelism()?.get() / 8)
.build_global()
.unwrap();