Package org.tensorflow.framework
Interface ScopedAllocatorOptionsOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ScopedAllocatorOptions,ScopedAllocatorOptions.Builder
public interface ScopedAllocatorOptionsOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnableOp(int index)If present, only perform optimization for these ops.org.nd4j.shade.protobuf.ByteStringgetEnableOpBytes(int index)If present, only perform optimization for these ops.intgetEnableOpCount()If present, only perform optimization for these ops.List<String>getEnableOpList()If present, only perform optimization for these ops.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnableOpList
List<String> getEnableOpList()
If present, only perform optimization for these ops.
repeated string enable_op = 1;- Returns:
- A list containing the enableOp.
-
getEnableOpCount
int getEnableOpCount()
If present, only perform optimization for these ops.
repeated string enable_op = 1;- Returns:
- The count of enableOp.
-
getEnableOp
String getEnableOp(int index)
If present, only perform optimization for these ops.
repeated string enable_op = 1;- Parameters:
index- The index of the element to return.- Returns:
- The enableOp at the given index.
-
getEnableOpBytes
org.nd4j.shade.protobuf.ByteString getEnableOpBytes(int index)
If present, only perform optimization for these ops.
repeated string enable_op = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the enableOp at the given index.
-
-