Class: Aws::SageMaker::Types::AcceleratorPartitionConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#countInteger

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.

Returns:

  • (Integer)


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

#typeString

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.

Returns:

  • (String)


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