Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions packages/aws-cdk-lib/aws-ec2/lib/instance-requirements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ export enum AcceleratorManufacturer {

/** Xilinx (e.g., VU9P FPGA). */
XILINX = 'xilinx',

/** Habana Labs(e.g, Gaudi accelerator). */
HABANA = 'habana',
}

/**
Expand Down Expand Up @@ -76,6 +79,21 @@ export enum AcceleratorName {

/** Xilinx VU9P FPGA. */
VU9P = 'vu9p',

/** NVIDIA A10G GPU. */
A10G = 'a10g',

/** NVIDIA H100 GPU. */
H100 = 'h100',

/** AWS Inferentia chips. */
INFERENTIA = 'inferentia',

/** NVIDIA GRID K520 GPU. */
K520 = 'k520',

/** NVIDIA T4G GPUs. */
T4G = 't4g',
}

/**
Expand Down
Loading