Skip to content

Commit

Permalink
Bump stack size as an experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
atomb committed May 24, 2023
1 parent 1dc38e5 commit 901a0bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DafnyCore/DafnyMain.cs
Expand Up @@ -118,7 +118,7 @@ public class DafnyMain {
}

private static readonly TaskScheduler largeThreadScheduler =
CustomStackSizePoolTaskScheduler.Create(0x10000000, Environment.ProcessorCount);
CustomStackSizePoolTaskScheduler.Create(0x20000000, Environment.ProcessorCount);

public static readonly TaskFactory LargeStackFactory = new(CancellationToken.None,
TaskCreationOptions.DenyChildAttach, TaskContinuationOptions.None, largeThreadScheduler);
Expand Down

0 comments on commit 901a0bf

Please sign in to comment.