From 9ed8d5d3e18028797fe8f8d0eb252dd5b98f9cbf Mon Sep 17 00:00:00 2001 From: Hoon Oh <2078254+hoonoh@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:19:54 +0900 Subject: [PATCH] fix: update constants (#961) --- src/constants/ec2-info.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/constants/ec2-info.ts b/src/constants/ec2-info.ts index 5aa318db..546f50f4 100644 --- a/src/constants/ec2-info.ts +++ b/src/constants/ec2-info.ts @@ -804,6 +804,7 @@ export const ec2Info: Record<_InstanceType | string, Ec2InstanceInfo> = { 'trn1.2xlarge': { vCpu: 8, memoryGiB: 32, architectures: ['x86_64'] }, 'trn1.32xlarge': { vCpu: 128, memoryGiB: 512, architectures: ['x86_64'] }, 'trn1n.32xlarge': { vCpu: 128, memoryGiB: 512, architectures: ['x86_64'] }, + 'trn2.48xlarge': { vCpu: 192, memoryGiB: 2048, architectures: ['x86_64'] }, 'u-12tb1.112xlarge': { vCpu: 448, memoryGiB: 12288, architectures: ['x86_64'] }, 'u-18tb1.112xlarge': { vCpu: 448, memoryGiB: 18432, architectures: ['x86_64'] }, 'u-24tb1.112xlarge': { vCpu: 448, memoryGiB: 24576, architectures: ['x86_64'] },