Skip to content

Commit

Permalink
bugfix: occasional "No jobs available!" during Test001
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 26, 2024
1 parent c6d2d0a commit 40709f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/Test001.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void test001() {
final int numBytes = 1 << 18; // 256 KiB
TempAllocatorImpl allocator = new TempAllocatorImpl(numBytes);

final int maxJobs = 64;
final int maxJobs = 256;
final int maxBarriers = 4;
int numThreads = Utils.numThreads();
JobSystemThreadPool jobSystem
Expand Down

0 comments on commit 40709f0

Please sign in to comment.