public static final enum
OptimizerOptions.GlobalJitLevel
Control the use of the compiler/jit. Experimental.
tensorflow.OptimizerOptions.GlobalJitLevel
Constants
int | DEFAULT_VALUE | Default setting ("off" now, but later expected to be "on") DEFAULT = 0;
|
int | OFF_VALUE | OFF = -1;
|
int | ON_1_VALUE | The following settings turn on compilation, with higher values being more aggressive. |
int | ON_2_VALUE | ON_2 = 2;
|
Inherited Methods
final int |
compareTo(OptimizerOptions.GlobalJitLevel arg0)
|
int |
compareTo(Object arg0)
|
final boolean |
equals(Object arg0)
|
final Class<OptimizerOptions.GlobalJitLevel> |
getDeclaringClass()
|
final int |
hashCode()
|
final String |
name()
|
final int |
ordinal()
|
String |
toString()
|
static <T extends Enum<T>> T |
valueOf(Class<T> arg0, String arg1)
|
boolean |
equals(Object arg0)
|
final Class<?> |
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String |
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
abstract int |
compareTo(OptimizerOptions.GlobalJitLevel arg0)
|
Enum Values
public static final OptimizerOptions.GlobalJitLevel DEFAULT
Default setting ("off" now, but later expected to be "on")
DEFAULT = 0;
public static final OptimizerOptions.GlobalJitLevel OFF
OFF = -1;
public static final OptimizerOptions.GlobalJitLevel ON_1
The following settings turn on compilation, with higher values being more aggressive. Higher values may reduce opportunities for parallelism and may use more memory. (At present, there is no distinction, but this is expected to change.)
ON_1 = 1;
public static final OptimizerOptions.GlobalJitLevel ON_2
ON_2 = 2;
public static final OptimizerOptions.GlobalJitLevel UNRECOGNIZED
Constants
public static final int DEFAULT_VALUE
Default setting ("off" now, but later expected to be "on")
DEFAULT = 0;
Constant Value:
0
public static final int OFF_VALUE
OFF = -1;
Constant Value:
-1
public static final int ON_1_VALUE
The following settings turn on compilation, with higher values being more aggressive. Higher values may reduce opportunities for parallelism and may use more memory. (At present, there is no distinction, but this is expected to change.)
ON_1 = 1;
Constant Value:
1
public static final int ON_2_VALUE
ON_2 = 2;
Constant Value:
2