Skip to content

Commit

Permalink
Added support for the AWS Inferentia 2 instance types based on the Ne…
Browse files Browse the repository at this point in the history
…uronCore v2 chip architecture
  • Loading branch information
mmcclean-aws authored and ff-apple committed May 2, 2023
1 parent 6657ca5 commit e4d153a
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 @@ -1607,6 +1607,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 e4d153a

Please sign in to comment.