Class: Aws::SageMaker::Types::AcceleratorPartitionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AcceleratorPartitionConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Configuration for allocating accelerator partitions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The number of accelerator partitions to allocate with the specified partition type.
-
#type ⇒ String
The Multi-Instance GPU (MIG) profile type that defines the partition configuration.
Instance Attribute Details
#count ⇒ Integer
The number of accelerator partitions to allocate with the specified partition type. If you don't specify a value for vCPU and MemoryInGiB, SageMaker AI automatically allocates ratio-based values for those parameters based on the accelerator partition count you provide.
33 34 35 36 37 38 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33 class AcceleratorPartitionConfig < Struct.new( :type, :count) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The Multi-Instance GPU (MIG) profile type that defines the partition configuration. The profile specifies the compute and memory allocation for each partition instance. The available profile types depend on the instance type specified in the compute quota configuration.
33 34 35 36 37 38 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 33 class AcceleratorPartitionConfig < Struct.new( :type, :count) SENSITIVE = [] include Aws::Structure end |