Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/jit-diff/diff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private static void StartTasks(List<AssemblyInfo> 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;

Expand Down