Class: Google::Cloud::Container::V1::GPUDirectConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1/cluster_service.rb

Overview

GPUDirectConfig specifies the GPU direct strategy on the node pool.

Defined Under Namespace

Modules: GPUDirectStrategy

Instance Attribute Summary collapse

Instance Attribute Details

#gpu_direct_strategy::Google::Cloud::Container::V1::GPUDirectConfig::GPUDirectStrategy

Returns The type of GPU direct strategy to enable on the node pool.

Returns:



6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
# File 'proto_docs/google/container/v1/cluster_service.rb', line 6643

class GPUDirectConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Option for GPU direct Strategies
  module GPUDirectStrategy
    # Default value. No GPU Direct strategy is enabled on the node.
    GPU_DIRECT_STRATEGY_UNSPECIFIED = 0

    # GPUDirect-RDMA on A3 Ultra, and A4 machine types
    RDMA = 2
  end
end