Class: Google::Apis::ContainerV1::AcceleratorConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AcceleratorConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
AcceleratorConfig represents a Hardware Accelerator request.
Instance Attribute Summary collapse
-
#accelerator_count ⇒ Fixnum
The number of the accelerator cards exposed to an instance.
-
#accelerator_type ⇒ String
The accelerator type resource name.
-
#gpu_partition_size ⇒ String
Size of partitions to create on the GPU.
-
#gpu_sharing_config ⇒ Google::Apis::ContainerV1::GpuSharingConfig
GPUSharingConfig represents the GPU sharing configuration for Hardware Accelerators.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AcceleratorConfig
constructor
A new instance of AcceleratorConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AcceleratorConfig
Returns a new instance of AcceleratorConfig.
53 54 55 |
# File 'lib/google/apis/container_v1/classes.rb', line 53 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerator_count ⇒ Fixnum
The number of the accelerator cards exposed to an instance.
Corresponds to the JSON property acceleratorCount
32 33 34 |
# File 'lib/google/apis/container_v1/classes.rb', line 32 def accelerator_count @accelerator_count end |
#accelerator_type ⇒ String
The accelerator type resource name. List of supported accelerators here
Corresponds to the JSON property acceleratorType
38 39 40 |
# File 'lib/google/apis/container_v1/classes.rb', line 38 def accelerator_type @accelerator_type end |
#gpu_partition_size ⇒ String
Size of partitions to create on the GPU. Valid values are described in the
NVIDIA mig user guide.
Corresponds to the JSON property gpuPartitionSize
45 46 47 |
# File 'lib/google/apis/container_v1/classes.rb', line 45 def gpu_partition_size @gpu_partition_size end |
#gpu_sharing_config ⇒ Google::Apis::ContainerV1::GpuSharingConfig
GPUSharingConfig represents the GPU sharing configuration for Hardware
Accelerators.
Corresponds to the JSON property gpuSharingConfig
51 52 53 |
# File 'lib/google/apis/container_v1/classes.rb', line 51 def gpu_sharing_config @gpu_sharing_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
58 59 60 61 62 63 |
# File 'lib/google/apis/container_v1/classes.rb', line 58 def update!(**args) @accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count) @accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type) @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) end |