9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 18:19:14 +00:00
This commit is contained in:
Daniel Mills
2020-07-30 03:52:23 -04:00
parent aec5486144
commit d92c96ecc2
6 changed files with 16 additions and 21 deletions

View File

@@ -831,7 +831,7 @@ public class Iris extends JavaPlugin implements BoardProvider
imsg(i, "Creating Iris " + dimm + "...");
}
int tc = Math.max(Runtime.getRuntime().availableProcessors(), 4);
int tc = Math.max(Runtime.getRuntime().availableProcessors() * 4, 4);
IrisChunkGenerator gx = new IrisChunkGenerator(dimm, tc);
info("Generating with " + tc + " threads per chunk");
O<Boolean> done = new O<Boolean>();