Skip to content

Commit

Permalink
Added support for in2 instance types
Browse files Browse the repository at this point in the history
Added support for the AWS Inferentia 2 instance types based on the NeuronCore v2 chip architecture
  • Loading branch information
mmcclean-aws authored Feb 22, 2023
1 parent c611acd commit 63161aa
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1614,6 +1614,34 @@ var InstanceTypes = map[string]*InstanceType{
GPU: 0,
Architecture: "amd64",
},
"inf2.48xlarge": {
InstanceType: "inf2.48xlarge",
VCPU: 192,
MemoryMb: 786432,
GPU: 0,
Architecture: "amd64",
},
"inf2.24xlarge": {
InstanceType: "inf2.24xlarge",
VCPU: 96,
MemoryMb: 393216,
GPU: 0,
Architecture: "amd64",
},
"inf2.8xlarge": {
InstanceType: "inf2.8xlarge",
VCPU: 32,
MemoryMb: 131072,
GPU: 0,
Architecture: "amd64",
},
"inf2.xlarge": {
InstanceType: "inf2.xlarge",
VCPU: 4,
MemoryMb: 16384,
GPU: 0,
Architecture: "amd64",
},
"is4gen.2xlarge": {
InstanceType: "is4gen.2xlarge",
VCPU: 8,
Expand Down

0 comments on commit 63161aa

Please sign in to comment.