From d2151c8659b360e23400b2f06deb7e4db9983f66 Mon Sep 17 00:00:00 2001 From: Miha Zupan Date: Tue, 12 May 2026 00:42:47 +0200 Subject: [PATCH] Change jitdiff parallelism from coreCount * 2 to coreCount --- src/jit-diff/diff.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit-diff/diff.cs b/src/jit-diff/diff.cs index e9cd749..8d26828 100644 --- a/src/jit-diff/diff.cs +++ b/src/jit-diff/diff.cs @@ -46,7 +46,7 @@ private static void StartTasks(List assemblyWorkList, jitdiff.Conf { // We limit the number of tasks we start in parallel to avoid overwhelming the system. // E.g. running frameworks diffs involves 100s of tasks, which can be problematic on machines with limited memory. - int parallelism = config.Sequential ? 1 : Environment.ProcessorCount * 2; + int parallelism = config.Sequential ? 1 : Environment.ProcessorCount; bool anyFailed = false;