From 3b1b2ada065b434fea3954accf84d81d84e27945 Mon Sep 17 00:00:00 2001 From: Jack Hodgkiss Date: Wed, 17 Sep 2025 12:07:46 +0100 Subject: [PATCH] feat: add support for `A30` and `H100L` --- etc/kayobe/stackhpc-compute.yml | 12 ++++++++++++ .../notes/add-a30-h100l-a016f8ff0939eb37.yaml | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 releasenotes/notes/add-a30-h100l-a016f8ff0939eb37.yaml diff --git a/etc/kayobe/stackhpc-compute.yml b/etc/kayobe/stackhpc-compute.yml index 5e86b00302..71d7d5cc8d 100644 --- a/etc/kayobe/stackhpc-compute.yml +++ b/etc/kayobe/stackhpc-compute.yml @@ -101,3 +101,15 @@ stackhpc_gpu_data: vendor_id: "10de" product_id: "26b9" device_type: "type-PF" + # Nvidia A30 + a30: + resource_name: "{{ a30_resource_name | default('a30') }}" + vendor_id: "10de" + product_id: "20b7" + device_type: "type-PF" + # Nvidia H100L + h100l: + resource_name: "{{ h100l_resource_name | default('h100l') }}" + vendor_id: "10de" + product_id: "2321" + device_type: "type-PF" diff --git a/releasenotes/notes/add-a30-h100l-a016f8ff0939eb37.yaml b/releasenotes/notes/add-a30-h100l-a016f8ff0939eb37.yaml new file mode 100644 index 0000000000..38bed1a38e --- /dev/null +++ b/releasenotes/notes/add-a30-h100l-a016f8ff0939eb37.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + Add definitions for ``NVIDIA A30`` and ``NVIDIA H100L`` to the + ``stackhpc_gpu_data`` for easy deployment of such GPUs.