Package org.tensorflow.framework
Interface GraphTransferConstNodeInfoOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GraphTransferConstNodeInfo,GraphTransferConstNodeInfo.Builder
public interface GraphTransferConstNodeInfoOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.nd4j.shade.protobuf.ByteStringgetData()bytes data = 4;DataTypegetDtype().tensorflow.DataType dtype = 5;intgetDtypeValue().tensorflow.DataType dtype = 5;StringgetName()string name = 1;org.nd4j.shade.protobuf.ByteStringgetNameBytes()string name = 1;intgetNodeId()int32 node_id = 2;longgetShape(int index)repeated int64 shape = 3;intgetShapeCount()repeated int64 shape = 3;List<Long>getShapeList()repeated int64 shape = 3;-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
string name = 1;- Returns:
- The name.
-
getNameBytes
org.nd4j.shade.protobuf.ByteString getNameBytes()
string name = 1;- Returns:
- The bytes for name.
-
getNodeId
int getNodeId()
int32 node_id = 2;- Returns:
- The nodeId.
-
getShapeList
List<Long> getShapeList()
repeated int64 shape = 3;- Returns:
- A list containing the shape.
-
getShapeCount
int getShapeCount()
repeated int64 shape = 3;- Returns:
- The count of shape.
-
getShape
long getShape(int index)
repeated int64 shape = 3;- Parameters:
index- The index of the element to return.- Returns:
- The shape at the given index.
-
getData
org.nd4j.shade.protobuf.ByteString getData()
bytes data = 4;- Returns:
- The data.
-
getDtypeValue
int getDtypeValue()
.tensorflow.DataType dtype = 5;- Returns:
- The enum numeric value on the wire for dtype.
-
getDtype
DataType getDtype()
.tensorflow.DataType dtype = 5;- Returns:
- The dtype.
-
-