Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: function.proto
package org.tensorflow.framework;
/**
*
* A function can be instantiated when the runtime can bind every attr
* with a value. When a GraphDef has a call to a function, it must
* have binding for every attr defined in the signature.
* TODO(zhifengc):
* * device spec, etc.
*
*
* Protobuf type {@code tensorflow.FunctionDef}
*/
public final class FunctionDef extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tensorflow.FunctionDef)
FunctionDefOrBuilder {
// Use FunctionDef.newBuilder() to construct.
private FunctionDef(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private FunctionDef() {
nodeDef_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private FunctionDef(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
org.tensorflow.framework.OpDef.Builder subBuilder = null;
if (signature_ != null) {
subBuilder = signature_.toBuilder();
}
signature_ = input.readMessage(org.tensorflow.framework.OpDef.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(signature_);
signature_ = subBuilder.buildPartial();
}
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
nodeDef_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000004;
}
nodeDef_.add(
input.readMessage(org.tensorflow.framework.NodeDef.parser(), extensionRegistry));
break;
}
case 34: {
if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
ret_ = com.google.protobuf.MapField.newMapField(
RetDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000008;
}
com.google.protobuf.MapEntry
ret = input.readMessage(
RetDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
ret_.getMutableMap().put(ret.getKey(), ret.getValue());
break;
}
case 42: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
attr_ = com.google.protobuf.MapField.newMapField(
AttrDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000002;
}
com.google.protobuf.MapEntry
attr = input.readMessage(
AttrDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
attr_.getMutableMap().put(attr.getKey(), attr.getValue());
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
nodeDef_ = java.util.Collections.unmodifiableList(nodeDef_);
}
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 5:
return internalGetAttr();
case 4:
return internalGetRet();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.framework.FunctionDef.class, org.tensorflow.framework.FunctionDef.Builder.class);
}
private int bitField0_;
public static final int SIGNATURE_FIELD_NUMBER = 1;
private org.tensorflow.framework.OpDef signature_;
/**
*
* The definition of the function's name, arguments, return values,
* attrs etc.
*
* Attributes specific to this function definition.
*
*
* map<string, .tensorflow.AttrValue> attr = 5;
*/
public org.tensorflow.framework.AttrValue getAttrOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetAttr().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int NODE_DEF_FIELD_NUMBER = 3;
private java.util.List nodeDef_;
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public int getNodeDefCount() {
return nodeDef_.size();
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public org.tensorflow.framework.NodeDefOrBuilder getNodeDefOrBuilder(
int index) {
return nodeDef_.get(index);
}
public static final int RET_FIELD_NUMBER = 4;
private static final class RetDefaultEntryHolder {
static final com.google.protobuf.MapEntry<
java.lang.String, java.lang.String> defaultEntry =
com.google.protobuf.MapEntry
.newDefaultInstance(
org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_RetEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField<
java.lang.String, java.lang.String> ret_;
private com.google.protobuf.MapField
internalGetRet() {
if (ret_ == null) {
return com.google.protobuf.MapField.emptyMapField(
RetDefaultEntryHolder.defaultEntry);
}
return ret_;
}
public int getRetCount() {
return internalGetRet().getMap().size();
}
/**
*
* A mapping from the output arg names from `signature` to the
* outputs from `node_def` that should be returned by the function.
*
*
* map<string, string> ret = 4;
*/
public boolean containsRet(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
return internalGetRet().getMap().containsKey(key);
}
/**
* Use {@link #getRetMap()} instead.
*/
@java.lang.Deprecated
public java.util.Map getRet() {
return getRetMap();
}
/**
*
* A mapping from the output arg names from `signature` to the
* outputs from `node_def` that should be returned by the function.
*
*
* map<string, string> ret = 4;
*/
public java.util.Map getRetMap() {
return internalGetRet().getMap();
}
/**
*
* A mapping from the output arg names from `signature` to the
* outputs from `node_def` that should be returned by the function.
*
*
* map<string, string> ret = 4;
*/
public java.lang.String getRetOrDefault(
java.lang.String key,
java.lang.String defaultValue) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetRet().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
* A mapping from the output arg names from `signature` to the
* outputs from `node_def` that should be returned by the function.
*
*
* map<string, string> ret = 4;
*/
public java.lang.String getRetOrThrow(
java.lang.String key) {
if (key == null) { throw new java.lang.NullPointerException(); }
java.util.Map map =
internalGetRet().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (signature_ != null) {
output.writeMessage(1, getSignature());
}
for (int i = 0; i < nodeDef_.size(); i++) {
output.writeMessage(3, nodeDef_.get(i));
}
for (java.util.Map.Entry entry
: internalGetRet().getMap().entrySet()) {
com.google.protobuf.MapEntry
ret = RetDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
output.writeMessage(4, ret);
}
for (java.util.Map.Entry entry
: internalGetAttr().getMap().entrySet()) {
com.google.protobuf.MapEntry
attr = AttrDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
output.writeMessage(5, attr);
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (signature_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getSignature());
}
for (int i = 0; i < nodeDef_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, nodeDef_.get(i));
}
for (java.util.Map.Entry entry
: internalGetRet().getMap().entrySet()) {
com.google.protobuf.MapEntry
ret = RetDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, ret);
}
for (java.util.Map.Entry entry
: internalGetAttr().getMap().entrySet()) {
com.google.protobuf.MapEntry
attr = AttrDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, attr);
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.tensorflow.framework.FunctionDef)) {
return super.equals(obj);
}
org.tensorflow.framework.FunctionDef other = (org.tensorflow.framework.FunctionDef) obj;
boolean result = true;
result = result && (hasSignature() == other.hasSignature());
if (hasSignature()) {
result = result && getSignature()
.equals(other.getSignature());
}
result = result && internalGetAttr().equals(
other.internalGetAttr());
result = result && getNodeDefList()
.equals(other.getNodeDefList());
result = result && internalGetRet().equals(
other.internalGetRet());
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptorForType().hashCode();
if (hasSignature()) {
hash = (37 * hash) + SIGNATURE_FIELD_NUMBER;
hash = (53 * hash) + getSignature().hashCode();
}
if (!internalGetAttr().getMap().isEmpty()) {
hash = (37 * hash) + ATTR_FIELD_NUMBER;
hash = (53 * hash) + internalGetAttr().hashCode();
}
if (getNodeDefCount() > 0) {
hash = (37 * hash) + NODE_DEF_FIELD_NUMBER;
hash = (53 * hash) + getNodeDefList().hashCode();
}
if (!internalGetRet().getMap().isEmpty()) {
hash = (37 * hash) + RET_FIELD_NUMBER;
hash = (53 * hash) + internalGetRet().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.tensorflow.framework.FunctionDef parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.framework.FunctionDef parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.framework.FunctionDef parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.tensorflow.framework.FunctionDef parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.tensorflow.framework.FunctionDef parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.framework.FunctionDef parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.framework.FunctionDef parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.tensorflow.framework.FunctionDef parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.tensorflow.framework.FunctionDef parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.tensorflow.framework.FunctionDef parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.tensorflow.framework.FunctionDef prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* A function can be instantiated when the runtime can bind every attr
* with a value. When a GraphDef has a call to a function, it must
* have binding for every attr defined in the signature.
* TODO(zhifengc):
* * device spec, etc.
*
*
* Protobuf type {@code tensorflow.FunctionDef}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:tensorflow.FunctionDef)
org.tensorflow.framework.FunctionDefOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 5:
return internalGetAttr();
case 4:
return internalGetRet();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 5:
return internalGetMutableAttr();
case 4:
return internalGetMutableRet();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.tensorflow.framework.FunctionDef.class, org.tensorflow.framework.FunctionDef.Builder.class);
}
// Construct using org.tensorflow.framework.FunctionDef.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getNodeDefFieldBuilder();
}
}
public Builder clear() {
super.clear();
if (signatureBuilder_ == null) {
signature_ = null;
} else {
signature_ = null;
signatureBuilder_ = null;
}
internalGetMutableAttr().clear();
if (nodeDefBuilder_ == null) {
nodeDef_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
} else {
nodeDefBuilder_.clear();
}
internalGetMutableRet().clear();
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.tensorflow.framework.FunctionProtos.internal_static_tensorflow_FunctionDef_descriptor;
}
public org.tensorflow.framework.FunctionDef getDefaultInstanceForType() {
return org.tensorflow.framework.FunctionDef.getDefaultInstance();
}
public org.tensorflow.framework.FunctionDef build() {
org.tensorflow.framework.FunctionDef result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.tensorflow.framework.FunctionDef buildPartial() {
org.tensorflow.framework.FunctionDef result = new org.tensorflow.framework.FunctionDef(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (signatureBuilder_ == null) {
result.signature_ = signature_;
} else {
result.signature_ = signatureBuilder_.build();
}
result.attr_ = internalGetAttr();
result.attr_.makeImmutable();
if (nodeDefBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004)) {
nodeDef_ = java.util.Collections.unmodifiableList(nodeDef_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.nodeDef_ = nodeDef_;
} else {
result.nodeDef_ = nodeDefBuilder_.build();
}
result.ret_ = internalGetRet();
result.ret_.makeImmutable();
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.tensorflow.framework.FunctionDef) {
return mergeFrom((org.tensorflow.framework.FunctionDef)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.tensorflow.framework.FunctionDef other) {
if (other == org.tensorflow.framework.FunctionDef.getDefaultInstance()) return this;
if (other.hasSignature()) {
mergeSignature(other.getSignature());
}
internalGetMutableAttr().mergeFrom(
other.internalGetAttr());
if (nodeDefBuilder_ == null) {
if (!other.nodeDef_.isEmpty()) {
if (nodeDef_.isEmpty()) {
nodeDef_ = other.nodeDef_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureNodeDefIsMutable();
nodeDef_.addAll(other.nodeDef_);
}
onChanged();
}
} else {
if (!other.nodeDef_.isEmpty()) {
if (nodeDefBuilder_.isEmpty()) {
nodeDefBuilder_.dispose();
nodeDefBuilder_ = null;
nodeDef_ = other.nodeDef_;
bitField0_ = (bitField0_ & ~0x00000004);
nodeDefBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getNodeDefFieldBuilder() : null;
} else {
nodeDefBuilder_.addAllMessages(other.nodeDef_);
}
}
}
internalGetMutableRet().mergeFrom(
other.internalGetRet());
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.tensorflow.framework.FunctionDef parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.tensorflow.framework.FunctionDef) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private org.tensorflow.framework.OpDef signature_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
org.tensorflow.framework.OpDef, org.tensorflow.framework.OpDef.Builder, org.tensorflow.framework.OpDefOrBuilder> signatureBuilder_;
/**
*
* The definition of the function's name, arguments, return values,
* attrs etc.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public int getNodeDefCount() {
if (nodeDefBuilder_ == null) {
return nodeDef_.size();
} else {
return nodeDefBuilder_.getCount();
}
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public Builder setNodeDef(
int index, org.tensorflow.framework.NodeDef value) {
if (nodeDefBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeDefIsMutable();
nodeDef_.set(index, value);
onChanged();
} else {
nodeDefBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public Builder addNodeDef(org.tensorflow.framework.NodeDef value) {
if (nodeDefBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeDefIsMutable();
nodeDef_.add(value);
onChanged();
} else {
nodeDefBuilder_.addMessage(value);
}
return this;
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public Builder addNodeDef(
int index, org.tensorflow.framework.NodeDef value) {
if (nodeDefBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNodeDefIsMutable();
nodeDef_.add(index, value);
onChanged();
} else {
nodeDefBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public org.tensorflow.framework.NodeDef.Builder getNodeDefBuilder(
int index) {
return getNodeDefFieldBuilder().getBuilder(index);
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
*
* repeated .tensorflow.NodeDef node_def = 3;
*/
public org.tensorflow.framework.NodeDefOrBuilder getNodeDefOrBuilder(
int index) {
if (nodeDefBuilder_ == null) {
return nodeDef_.get(index); } else {
return nodeDefBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*
* By convention, "op" in node_def is resolved by consulting with a
* user-defined library first. If not resolved, "func" is assumed to
* be a builtin op.
*