Enum OptimizerOptions.GlobalJitLevel

java.lang.Object
java.lang.Enum<OptimizerOptions.GlobalJitLevel>
org.tensorflow.proto.OptimizerOptions.GlobalJitLevel
All Implemented Interfaces:
Internal.EnumLite, ProtocolMessageEnum, Serializable, Comparable<OptimizerOptions.GlobalJitLevel>
Enclosing class:
OptimizerOptions

public static enum OptimizerOptions.GlobalJitLevel extends Enum<OptimizerOptions.GlobalJitLevel> implements ProtocolMessageEnum
Control the use of the compiler/jit.  Experimental.
Protobuf enum tensorflow.OptimizerOptions.GlobalJitLevel
  • Enum Constant Details

  • Field Details

    • DEFAULT_VALUE

      public static final int DEFAULT_VALUE
      Default setting ("off" now, but later expected to be "on")
      
      DEFAULT = 0;
      See Also:
    • OFF_VALUE

      public static final int OFF_VALUE
      OFF = -1;
      See Also:
    • ON_1_VALUE

      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;
      See Also:
    • ON_2_VALUE

      public static final int ON_2_VALUE
      ON_2 = 2;
      See Also:
  • Method Details