All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.distruntime.ListDevicesResponse Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto

package org.tensorflow.distruntime;

/**
 * Protobuf type {@code tensorflow.ListDevicesResponse}
 */
public  final class ListDevicesResponse extends
    org.nd4j.shade.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:tensorflow.ListDevicesResponse)
    ListDevicesResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use ListDevicesResponse.newBuilder() to construct.
  private ListDevicesResponse(org.nd4j.shade.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private ListDevicesResponse() {
    localDevice_ = java.util.Collections.emptyList();
    remoteDevice_ = java.util.Collections.emptyList();
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new ListDevicesResponse();
  }

  @java.lang.Override
  public final org.nd4j.shade.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private ListDevicesResponse(
      org.nd4j.shade.protobuf.CodedInputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    org.nd4j.shade.protobuf.UnknownFieldSet.Builder unknownFields =
        org.nd4j.shade.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          case 10: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              localDevice_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            localDevice_.add(
                input.readMessage(org.tensorflow.framework.DeviceAttributes.parser(), extensionRegistry));
            break;
          }
          case 18: {
            if (!((mutable_bitField0_ & 0x00000002) != 0)) {
              remoteDevice_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000002;
            }
            remoteDevice_.add(
                input.readMessage(org.tensorflow.framework.DeviceAttributes.parser(), extensionRegistry));
            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new org.nd4j.shade.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000001) != 0)) {
        localDevice_ = java.util.Collections.unmodifiableList(localDevice_);
      }
      if (((mutable_bitField0_ & 0x00000002) != 0)) {
        remoteDevice_ = java.util.Collections.unmodifiableList(remoteDevice_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_ListDevicesResponse_descriptor;
  }

  @java.lang.Override
  protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_ListDevicesResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.tensorflow.distruntime.ListDevicesResponse.class, org.tensorflow.distruntime.ListDevicesResponse.Builder.class);
  }

  public static final int LOCAL_DEVICE_FIELD_NUMBER = 1;
  private java.util.List localDevice_;
  /**
   * repeated .tensorflow.DeviceAttributes local_device = 1;
   */
  public java.util.List getLocalDeviceList() {
    return localDevice_;
  }
  /**
   * repeated .tensorflow.DeviceAttributes local_device = 1;
   */
  public java.util.List 
      getLocalDeviceOrBuilderList() {
    return localDevice_;
  }
  /**
   * repeated .tensorflow.DeviceAttributes local_device = 1;
   */
  public int getLocalDeviceCount() {
    return localDevice_.size();
  }
  /**
   * repeated .tensorflow.DeviceAttributes local_device = 1;
   */
  public org.tensorflow.framework.DeviceAttributes getLocalDevice(int index) {
    return localDevice_.get(index);
  }
  /**
   * repeated .tensorflow.DeviceAttributes local_device = 1;
   */
  public org.tensorflow.framework.DeviceAttributesOrBuilder getLocalDeviceOrBuilder(
      int index) {
    return localDevice_.get(index);
  }

  public static final int REMOTE_DEVICE_FIELD_NUMBER = 2;
  private java.util.List remoteDevice_;
  /**
   * repeated .tensorflow.DeviceAttributes remote_device = 2;
   */
  public java.util.List getRemoteDeviceList() {
    return remoteDevice_;
  }
  /**
   * repeated .tensorflow.DeviceAttributes remote_device = 2;
   */
  public java.util.List 
      getRemoteDeviceOrBuilderList() {
    return remoteDevice_;
  }
  /**
   * repeated .tensorflow.DeviceAttributes remote_device = 2;
   */
  public int getRemoteDeviceCount() {
    return remoteDevice_.size();
  }
  /**
   * repeated .tensorflow.DeviceAttributes remote_device = 2;
   */
  public org.tensorflow.framework.DeviceAttributes getRemoteDevice(int index) {
    return remoteDevice_.get(index);
  }
  /**
   * repeated .tensorflow.DeviceAttributes remote_device = 2;
   */
  public org.tensorflow.framework.DeviceAttributesOrBuilder getRemoteDeviceOrBuilder(
      int index) {
    return remoteDevice_.get(index);
  }

  private byte memoizedIsInitialized = -1;
  @java.lang.Override
  public final boolean isInitialized() {
    byte isInitialized = memoizedIsInitialized;
    if (isInitialized == 1) return true;
    if (isInitialized == 0) return false;

    memoizedIsInitialized = 1;
    return true;
  }

  @java.lang.Override
  public void writeTo(org.nd4j.shade.protobuf.CodedOutputStream output)
                      throws java.io.IOException {
    for (int i = 0; i < localDevice_.size(); i++) {
      output.writeMessage(1, localDevice_.get(i));
    }
    for (int i = 0; i < remoteDevice_.size(); i++) {
      output.writeMessage(2, remoteDevice_.get(i));
    }
    unknownFields.writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    for (int i = 0; i < localDevice_.size(); i++) {
      size += org.nd4j.shade.protobuf.CodedOutputStream
        .computeMessageSize(1, localDevice_.get(i));
    }
    for (int i = 0; i < remoteDevice_.size(); i++) {
      size += org.nd4j.shade.protobuf.CodedOutputStream
        .computeMessageSize(2, remoteDevice_.get(i));
    }
    size += unknownFields.getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
     return true;
    }
    if (!(obj instanceof org.tensorflow.distruntime.ListDevicesResponse)) {
      return super.equals(obj);
    }
    org.tensorflow.distruntime.ListDevicesResponse other = (org.tensorflow.distruntime.ListDevicesResponse) obj;

    if (!getLocalDeviceList()
        .equals(other.getLocalDeviceList())) return false;
    if (!getRemoteDeviceList()
        .equals(other.getRemoteDeviceList())) return false;
    if (!unknownFields.equals(other.unknownFields)) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (getLocalDeviceCount() > 0) {
      hash = (37 * hash) + LOCAL_DEVICE_FIELD_NUMBER;
      hash = (53 * hash) + getLocalDeviceList().hashCode();
    }
    if (getRemoteDeviceCount() > 0) {
      hash = (37 * hash) + REMOTE_DEVICE_FIELD_NUMBER;
      hash = (53 * hash) + getRemoteDeviceList().hashCode();
    }
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      java.nio.ByteBuffer data)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      java.nio.ByteBuffer data,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      org.nd4j.shade.protobuf.ByteString data)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      org.nd4j.shade.protobuf.ByteString data,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(byte[] data)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      byte[] data,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      java.io.InputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input, extensionRegistry);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseDelimitedFrom(
      java.io.InputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      org.nd4j.shade.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.tensorflow.distruntime.ListDevicesResponse parseFrom(
      org.nd4j.shade.protobuf.CodedInputStream input,
      org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return org.nd4j.shade.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input, extensionRegistry);
  }

  @java.lang.Override
  public Builder newBuilderForType() { return newBuilder(); }
  public static Builder newBuilder() {
    return DEFAULT_INSTANCE.toBuilder();
  }
  public static Builder newBuilder(org.tensorflow.distruntime.ListDevicesResponse prototype) {
    return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
  }
  @java.lang.Override
  public Builder toBuilder() {
    return this == DEFAULT_INSTANCE
        ? new Builder() : new Builder().mergeFrom(this);
  }

  @java.lang.Override
  protected Builder newBuilderForType(
      org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) {
    Builder builder = new Builder(parent);
    return builder;
  }
  /**
   * Protobuf type {@code tensorflow.ListDevicesResponse}
   */
  public static final class Builder extends
      org.nd4j.shade.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:tensorflow.ListDevicesResponse)
      org.tensorflow.distruntime.ListDevicesResponseOrBuilder {
    public static final org.nd4j.shade.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_ListDevicesResponse_descriptor;
    }

    @java.lang.Override
    protected org.nd4j.shade.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_ListDevicesResponse_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              org.tensorflow.distruntime.ListDevicesResponse.class, org.tensorflow.distruntime.ListDevicesResponse.Builder.class);
    }

    // Construct using org.tensorflow.distruntime.ListDevicesResponse.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        org.nd4j.shade.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (org.nd4j.shade.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getLocalDeviceFieldBuilder();
        getRemoteDeviceFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      if (localDeviceBuilder_ == null) {
        localDevice_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
      } else {
        localDeviceBuilder_.clear();
      }
      if (remoteDeviceBuilder_ == null) {
        remoteDevice_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000002);
      } else {
        remoteDeviceBuilder_.clear();
      }
      return this;
    }

    @java.lang.Override
    public org.nd4j.shade.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_ListDevicesResponse_descriptor;
    }

    @java.lang.Override
    public org.tensorflow.distruntime.ListDevicesResponse getDefaultInstanceForType() {
      return org.tensorflow.distruntime.ListDevicesResponse.getDefaultInstance();
    }

    @java.lang.Override
    public org.tensorflow.distruntime.ListDevicesResponse build() {
      org.tensorflow.distruntime.ListDevicesResponse result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public org.tensorflow.distruntime.ListDevicesResponse buildPartial() {
      org.tensorflow.distruntime.ListDevicesResponse result = new org.tensorflow.distruntime.ListDevicesResponse(this);
      int from_bitField0_ = bitField0_;
      if (localDeviceBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0)) {
          localDevice_ = java.util.Collections.unmodifiableList(localDevice_);
          bitField0_ = (bitField0_ & ~0x00000001);
        }
        result.localDevice_ = localDevice_;
      } else {
        result.localDevice_ = localDeviceBuilder_.build();
      }
      if (remoteDeviceBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0)) {
          remoteDevice_ = java.util.Collections.unmodifiableList(remoteDevice_);
          bitField0_ = (bitField0_ & ~0x00000002);
        }
        result.remoteDevice_ = remoteDevice_;
      } else {
        result.remoteDevice_ = remoteDeviceBuilder_.build();
      }
      onBuilt();
      return result;
    }

    @java.lang.Override
    public Builder clone() {
      return super.clone();
    }
    @java.lang.Override
    public Builder setField(
        org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
        java.lang.Object value) {
      return super.setField(field, value);
    }
    @java.lang.Override
    public Builder clearField(
        org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field) {
      return super.clearField(field);
    }
    @java.lang.Override
    public Builder clearOneof(
        org.nd4j.shade.protobuf.Descriptors.OneofDescriptor oneof) {
      return super.clearOneof(oneof);
    }
    @java.lang.Override
    public Builder setRepeatedField(
        org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
        int index, java.lang.Object value) {
      return super.setRepeatedField(field, index, value);
    }
    @java.lang.Override
    public Builder addRepeatedField(
        org.nd4j.shade.protobuf.Descriptors.FieldDescriptor field,
        java.lang.Object value) {
      return super.addRepeatedField(field, value);
    }
    @java.lang.Override
    public Builder mergeFrom(org.nd4j.shade.protobuf.Message other) {
      if (other instanceof org.tensorflow.distruntime.ListDevicesResponse) {
        return mergeFrom((org.tensorflow.distruntime.ListDevicesResponse)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(org.tensorflow.distruntime.ListDevicesResponse other) {
      if (other == org.tensorflow.distruntime.ListDevicesResponse.getDefaultInstance()) return this;
      if (localDeviceBuilder_ == null) {
        if (!other.localDevice_.isEmpty()) {
          if (localDevice_.isEmpty()) {
            localDevice_ = other.localDevice_;
            bitField0_ = (bitField0_ & ~0x00000001);
          } else {
            ensureLocalDeviceIsMutable();
            localDevice_.addAll(other.localDevice_);
          }
          onChanged();
        }
      } else {
        if (!other.localDevice_.isEmpty()) {
          if (localDeviceBuilder_.isEmpty()) {
            localDeviceBuilder_.dispose();
            localDeviceBuilder_ = null;
            localDevice_ = other.localDevice_;
            bitField0_ = (bitField0_ & ~0x00000001);
            localDeviceBuilder_ = 
              org.nd4j.shade.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getLocalDeviceFieldBuilder() : null;
          } else {
            localDeviceBuilder_.addAllMessages(other.localDevice_);
          }
        }
      }
      if (remoteDeviceBuilder_ == null) {
        if (!other.remoteDevice_.isEmpty()) {
          if (remoteDevice_.isEmpty()) {
            remoteDevice_ = other.remoteDevice_;
            bitField0_ = (bitField0_ & ~0x00000002);
          } else {
            ensureRemoteDeviceIsMutable();
            remoteDevice_.addAll(other.remoteDevice_);
          }
          onChanged();
        }
      } else {
        if (!other.remoteDevice_.isEmpty()) {
          if (remoteDeviceBuilder_.isEmpty()) {
            remoteDeviceBuilder_.dispose();
            remoteDeviceBuilder_ = null;
            remoteDevice_ = other.remoteDevice_;
            bitField0_ = (bitField0_ & ~0x00000002);
            remoteDeviceBuilder_ = 
              org.nd4j.shade.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getRemoteDeviceFieldBuilder() : null;
          } else {
            remoteDeviceBuilder_.addAllMessages(other.remoteDevice_);
          }
        }
      }
      this.mergeUnknownFields(other.unknownFields);
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        org.nd4j.shade.protobuf.CodedInputStream input,
        org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      org.tensorflow.distruntime.ListDevicesResponse parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (org.nd4j.shade.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (org.tensorflow.distruntime.ListDevicesResponse) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private java.util.List localDevice_ =
      java.util.Collections.emptyList();
    private void ensureLocalDeviceIsMutable() {
      if (!((bitField0_ & 0x00000001) != 0)) {
        localDevice_ = new java.util.ArrayList(localDevice_);
        bitField0_ |= 0x00000001;
       }
    }

    private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
        org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder> localDeviceBuilder_;

    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public java.util.List getLocalDeviceList() {
      if (localDeviceBuilder_ == null) {
        return java.util.Collections.unmodifiableList(localDevice_);
      } else {
        return localDeviceBuilder_.getMessageList();
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public int getLocalDeviceCount() {
      if (localDeviceBuilder_ == null) {
        return localDevice_.size();
      } else {
        return localDeviceBuilder_.getCount();
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public org.tensorflow.framework.DeviceAttributes getLocalDevice(int index) {
      if (localDeviceBuilder_ == null) {
        return localDevice_.get(index);
      } else {
        return localDeviceBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder setLocalDevice(
        int index, org.tensorflow.framework.DeviceAttributes value) {
      if (localDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureLocalDeviceIsMutable();
        localDevice_.set(index, value);
        onChanged();
      } else {
        localDeviceBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder setLocalDevice(
        int index, org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (localDeviceBuilder_ == null) {
        ensureLocalDeviceIsMutable();
        localDevice_.set(index, builderForValue.build());
        onChanged();
      } else {
        localDeviceBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder addLocalDevice(org.tensorflow.framework.DeviceAttributes value) {
      if (localDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureLocalDeviceIsMutable();
        localDevice_.add(value);
        onChanged();
      } else {
        localDeviceBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder addLocalDevice(
        int index, org.tensorflow.framework.DeviceAttributes value) {
      if (localDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureLocalDeviceIsMutable();
        localDevice_.add(index, value);
        onChanged();
      } else {
        localDeviceBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder addLocalDevice(
        org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (localDeviceBuilder_ == null) {
        ensureLocalDeviceIsMutable();
        localDevice_.add(builderForValue.build());
        onChanged();
      } else {
        localDeviceBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder addLocalDevice(
        int index, org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (localDeviceBuilder_ == null) {
        ensureLocalDeviceIsMutable();
        localDevice_.add(index, builderForValue.build());
        onChanged();
      } else {
        localDeviceBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder addAllLocalDevice(
        java.lang.Iterable values) {
      if (localDeviceBuilder_ == null) {
        ensureLocalDeviceIsMutable();
        org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll(
            values, localDevice_);
        onChanged();
      } else {
        localDeviceBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder clearLocalDevice() {
      if (localDeviceBuilder_ == null) {
        localDevice_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
      } else {
        localDeviceBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public Builder removeLocalDevice(int index) {
      if (localDeviceBuilder_ == null) {
        ensureLocalDeviceIsMutable();
        localDevice_.remove(index);
        onChanged();
      } else {
        localDeviceBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder getLocalDeviceBuilder(
        int index) {
      return getLocalDeviceFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public org.tensorflow.framework.DeviceAttributesOrBuilder getLocalDeviceOrBuilder(
        int index) {
      if (localDeviceBuilder_ == null) {
        return localDevice_.get(index);  } else {
        return localDeviceBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public java.util.List 
         getLocalDeviceOrBuilderList() {
      if (localDeviceBuilder_ != null) {
        return localDeviceBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(localDevice_);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder addLocalDeviceBuilder() {
      return getLocalDeviceFieldBuilder().addBuilder(
          org.tensorflow.framework.DeviceAttributes.getDefaultInstance());
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder addLocalDeviceBuilder(
        int index) {
      return getLocalDeviceFieldBuilder().addBuilder(
          index, org.tensorflow.framework.DeviceAttributes.getDefaultInstance());
    }
    /**
     * repeated .tensorflow.DeviceAttributes local_device = 1;
     */
    public java.util.List 
         getLocalDeviceBuilderList() {
      return getLocalDeviceFieldBuilder().getBuilderList();
    }
    private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
        org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder> 
        getLocalDeviceFieldBuilder() {
      if (localDeviceBuilder_ == null) {
        localDeviceBuilder_ = new org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
            org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder>(
                localDevice_,
                ((bitField0_ & 0x00000001) != 0),
                getParentForChildren(),
                isClean());
        localDevice_ = null;
      }
      return localDeviceBuilder_;
    }

    private java.util.List remoteDevice_ =
      java.util.Collections.emptyList();
    private void ensureRemoteDeviceIsMutable() {
      if (!((bitField0_ & 0x00000002) != 0)) {
        remoteDevice_ = new java.util.ArrayList(remoteDevice_);
        bitField0_ |= 0x00000002;
       }
    }

    private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
        org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder> remoteDeviceBuilder_;

    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public java.util.List getRemoteDeviceList() {
      if (remoteDeviceBuilder_ == null) {
        return java.util.Collections.unmodifiableList(remoteDevice_);
      } else {
        return remoteDeviceBuilder_.getMessageList();
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public int getRemoteDeviceCount() {
      if (remoteDeviceBuilder_ == null) {
        return remoteDevice_.size();
      } else {
        return remoteDeviceBuilder_.getCount();
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public org.tensorflow.framework.DeviceAttributes getRemoteDevice(int index) {
      if (remoteDeviceBuilder_ == null) {
        return remoteDevice_.get(index);
      } else {
        return remoteDeviceBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder setRemoteDevice(
        int index, org.tensorflow.framework.DeviceAttributes value) {
      if (remoteDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRemoteDeviceIsMutable();
        remoteDevice_.set(index, value);
        onChanged();
      } else {
        remoteDeviceBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder setRemoteDevice(
        int index, org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (remoteDeviceBuilder_ == null) {
        ensureRemoteDeviceIsMutable();
        remoteDevice_.set(index, builderForValue.build());
        onChanged();
      } else {
        remoteDeviceBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder addRemoteDevice(org.tensorflow.framework.DeviceAttributes value) {
      if (remoteDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRemoteDeviceIsMutable();
        remoteDevice_.add(value);
        onChanged();
      } else {
        remoteDeviceBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder addRemoteDevice(
        int index, org.tensorflow.framework.DeviceAttributes value) {
      if (remoteDeviceBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureRemoteDeviceIsMutable();
        remoteDevice_.add(index, value);
        onChanged();
      } else {
        remoteDeviceBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder addRemoteDevice(
        org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (remoteDeviceBuilder_ == null) {
        ensureRemoteDeviceIsMutable();
        remoteDevice_.add(builderForValue.build());
        onChanged();
      } else {
        remoteDeviceBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder addRemoteDevice(
        int index, org.tensorflow.framework.DeviceAttributes.Builder builderForValue) {
      if (remoteDeviceBuilder_ == null) {
        ensureRemoteDeviceIsMutable();
        remoteDevice_.add(index, builderForValue.build());
        onChanged();
      } else {
        remoteDeviceBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder addAllRemoteDevice(
        java.lang.Iterable values) {
      if (remoteDeviceBuilder_ == null) {
        ensureRemoteDeviceIsMutable();
        org.nd4j.shade.protobuf.AbstractMessageLite.Builder.addAll(
            values, remoteDevice_);
        onChanged();
      } else {
        remoteDeviceBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder clearRemoteDevice() {
      if (remoteDeviceBuilder_ == null) {
        remoteDevice_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000002);
        onChanged();
      } else {
        remoteDeviceBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public Builder removeRemoteDevice(int index) {
      if (remoteDeviceBuilder_ == null) {
        ensureRemoteDeviceIsMutable();
        remoteDevice_.remove(index);
        onChanged();
      } else {
        remoteDeviceBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder getRemoteDeviceBuilder(
        int index) {
      return getRemoteDeviceFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public org.tensorflow.framework.DeviceAttributesOrBuilder getRemoteDeviceOrBuilder(
        int index) {
      if (remoteDeviceBuilder_ == null) {
        return remoteDevice_.get(index);  } else {
        return remoteDeviceBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public java.util.List 
         getRemoteDeviceOrBuilderList() {
      if (remoteDeviceBuilder_ != null) {
        return remoteDeviceBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(remoteDevice_);
      }
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder addRemoteDeviceBuilder() {
      return getRemoteDeviceFieldBuilder().addBuilder(
          org.tensorflow.framework.DeviceAttributes.getDefaultInstance());
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public org.tensorflow.framework.DeviceAttributes.Builder addRemoteDeviceBuilder(
        int index) {
      return getRemoteDeviceFieldBuilder().addBuilder(
          index, org.tensorflow.framework.DeviceAttributes.getDefaultInstance());
    }
    /**
     * repeated .tensorflow.DeviceAttributes remote_device = 2;
     */
    public java.util.List 
         getRemoteDeviceBuilderList() {
      return getRemoteDeviceFieldBuilder().getBuilderList();
    }
    private org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
        org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder> 
        getRemoteDeviceFieldBuilder() {
      if (remoteDeviceBuilder_ == null) {
        remoteDeviceBuilder_ = new org.nd4j.shade.protobuf.RepeatedFieldBuilderV3<
            org.tensorflow.framework.DeviceAttributes, org.tensorflow.framework.DeviceAttributes.Builder, org.tensorflow.framework.DeviceAttributesOrBuilder>(
                remoteDevice_,
                ((bitField0_ & 0x00000002) != 0),
                getParentForChildren(),
                isClean());
        remoteDevice_ = null;
      }
      return remoteDeviceBuilder_;
    }
    @java.lang.Override
    public final Builder setUnknownFields(
        final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final org.nd4j.shade.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }


    // @@protoc_insertion_point(builder_scope:tensorflow.ListDevicesResponse)
  }

  // @@protoc_insertion_point(class_scope:tensorflow.ListDevicesResponse)
  private static final org.tensorflow.distruntime.ListDevicesResponse DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new org.tensorflow.distruntime.ListDevicesResponse();
  }

  public static org.tensorflow.distruntime.ListDevicesResponse getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final org.nd4j.shade.protobuf.Parser
      PARSER = new org.nd4j.shade.protobuf.AbstractParser() {
    @java.lang.Override
    public ListDevicesResponse parsePartialFrom(
        org.nd4j.shade.protobuf.CodedInputStream input,
        org.nd4j.shade.protobuf.ExtensionRegistryLite extensionRegistry)
        throws org.nd4j.shade.protobuf.InvalidProtocolBufferException {
      return new ListDevicesResponse(input, extensionRegistry);
    }
  };

  public static org.nd4j.shade.protobuf.Parser parser() {
    return PARSER;
  }

  @java.lang.Override
  public org.nd4j.shade.protobuf.Parser getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public org.tensorflow.distruntime.ListDevicesResponse getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy