set the minimum core amount to 2 (1 on single core cpus)
This commit is contained in:
committed by
Sheepit Renderfarm
parent
9a5cd74609
commit
6ca2067cbe
@@ -20,7 +20,8 @@
|
||||
package com.sheepit.client.hardware.cpu;
|
||||
|
||||
public class CPU {
|
||||
final public static int MIN_RENDERBUCKET_SIZE = 32;
|
||||
public static final int MIN_RENDERBUCKET_SIZE = 32;
|
||||
public static final int MIN_CORES = Runtime.getRuntime().availableProcessors() > 1 ? 2 : 1;
|
||||
private String name;
|
||||
private String model;
|
||||
private String family;
|
||||
|
||||
Reference in New Issue
Block a user