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
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