Class: Google::Apis::ContainerV1beta1::AcceleratorConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

AcceleratorConfig represents a Hardware Accelerator request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AcceleratorConfig

Returns a new instance of AcceleratorConfig.



64
65
66
# File 'lib/google/apis/container_v1beta1/classes.rb', line 64

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#accelerator_countFixnum

The number of the accelerator cards exposed to an instance. Corresponds to the JSON property acceleratorCount

Returns:

  • (Fixnum)


32
33
34
# File 'lib/google/apis/container_v1beta1/classes.rb', line 32

def accelerator_count
  @accelerator_count
end

#accelerator_typeString

The accelerator type resource name. List of supported accelerators here Corresponds to the JSON property acceleratorType

Returns:

  • (String)


38
39
40
# File 'lib/google/apis/container_v1beta1/classes.rb', line 38

def accelerator_type
  @accelerator_type
end

#gpu_driver_installation_configGoogle::Apis::ContainerV1beta1::GpuDriverInstallationConfig

GPUDriverInstallationConfig specifies the version of GPU driver to be auto installed. Corresponds to the JSON property gpuDriverInstallationConfig



44
45
46
# File 'lib/google/apis/container_v1beta1/classes.rb', line 44

def gpu_driver_installation_config
  @gpu_driver_installation_config
end

#gpu_partition_sizeString

Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig user guide. Corresponds to the JSON property gpuPartitionSize

Returns:

  • (String)


51
52
53
# File 'lib/google/apis/container_v1beta1/classes.rb', line 51

def gpu_partition_size
  @gpu_partition_size
end

#gpu_sharing_configGoogle::Apis::ContainerV1beta1::GpuSharingConfig

GPUSharingConfig represents the GPU sharing configuration for Hardware Accelerators. Corresponds to the JSON property gpuSharingConfig



57
58
59
# File 'lib/google/apis/container_v1beta1/classes.rb', line 57

def gpu_sharing_config
  @gpu_sharing_config
end

#max_time_shared_clients_per_gpuFixnum

The number of time-shared GPU resources to expose for each physical GPU. Corresponds to the JSON property maxTimeSharedClientsPerGpu

Returns:

  • (Fixnum)


62
63
64
# File 'lib/google/apis/container_v1beta1/classes.rb', line 62

def max_time_shared_clients_per_gpu
  @max_time_shared_clients_per_gpu
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



69
70
71
72
73
74
75
76
# File 'lib/google/apis/container_v1beta1/classes.rb', line 69

def update!(**args)
  @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
  @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
  @gpu_driver_installation_config = args[:gpu_driver_installation_config] if args.key?(:gpu_driver_installation_config)
  @gpu_partition_size = args[:gpu_partition_size] if args.key?(:gpu_partition_size)
  @gpu_sharing_config = args[:gpu_sharing_config] if args.key?(:gpu_sharing_config)
  @max_time_shared_clients_per_gpu = args[:max_time_shared_clients_per_gpu] if args.key?(:max_time_shared_clients_per_gpu)
end