Package org.tensorflow.framework
Interface SaveSliceInfoDefOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SaveSliceInfoDef,SaveSliceInfoDef.Builder
public interface SaveSliceInfoDefOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFullName()Name of the full variable of which this is a slice.org.nd4j.shade.protobuf.ByteStringgetFullNameBytes()Name of the full variable of which this is a slice.longgetFullShape(int index)Shape of the full variable.intgetFullShapeCount()Shape of the full variable.List<Long>getFullShapeList()Shape of the full variable.longgetVarOffset(int index)Offset of this variable into the full variable.intgetVarOffsetCount()Offset of this variable into the full variable.List<Long>getVarOffsetList()Offset of this variable into the full variable.longgetVarShape(int index)Shape of this variable.intgetVarShapeCount()Shape of this variable.List<Long>getVarShapeList()Shape of this variable.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFullName
String getFullName()
Name of the full variable of which this is a slice.
string full_name = 1;- Returns:
- The fullName.
-
getFullNameBytes
org.nd4j.shade.protobuf.ByteString getFullNameBytes()
Name of the full variable of which this is a slice.
string full_name = 1;- Returns:
- The bytes for fullName.
-
getFullShapeList
List<Long> getFullShapeList()
Shape of the full variable.
repeated int64 full_shape = 2;- Returns:
- A list containing the fullShape.
-
getFullShapeCount
int getFullShapeCount()
Shape of the full variable.
repeated int64 full_shape = 2;- Returns:
- The count of fullShape.
-
getFullShape
long getFullShape(int index)
Shape of the full variable.
repeated int64 full_shape = 2;- Parameters:
index- The index of the element to return.- Returns:
- The fullShape at the given index.
-
getVarOffsetList
List<Long> getVarOffsetList()
Offset of this variable into the full variable.
repeated int64 var_offset = 3;- Returns:
- A list containing the varOffset.
-
getVarOffsetCount
int getVarOffsetCount()
Offset of this variable into the full variable.
repeated int64 var_offset = 3;- Returns:
- The count of varOffset.
-
getVarOffset
long getVarOffset(int index)
Offset of this variable into the full variable.
repeated int64 var_offset = 3;- Parameters:
index- The index of the element to return.- Returns:
- The varOffset at the given index.
-
getVarShapeList
List<Long> getVarShapeList()
Shape of this variable.
repeated int64 var_shape = 4;- Returns:
- A list containing the varShape.
-
getVarShapeCount
int getVarShapeCount()
Shape of this variable.
repeated int64 var_shape = 4;- Returns:
- The count of varShape.
-
getVarShape
long getVarShape(int index)
Shape of this variable.
repeated int64 var_shape = 4;- Parameters:
index- The index of the element to return.- Returns:
- The varShape at the given index.
-
-