Skip to content

Commit f921640

Browse files
committed
add cuda test
Signed-off-by: sirutBuasai <sirutbuasai27@outlook.com>
1 parent a8bd93b commit f921640

File tree

5 files changed

+43
-1
lines changed

5 files changed

+43
-1
lines changed

docs/.nav.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ nav:
66
- Release Notes:
77
- releasenotes/index.md
88
- PyTorch: releasenotes/pytorch/index.md
9+
- Base: releasenotes/base/index.md
910
- Tutorials: tutorials
1011
- Reference:
1112
- reference/index.md

docs/src/data/base/12.8-gpu-ec2.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,16 @@ public_registry: true
1212
# Image tags (first tag is used in available_images.md)
1313
tags:
1414
- "12.8.1-gpu-py312-cu128-ubuntu24.04-ec2"
15+
16+
announcement:
17+
- "Introduced containers for Bse CUDA 12.8.1 for training which support EC2, ECS, and EKS"
18+
- "Starting with Base 12.8.1, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+
- "Added Python 3.12, Ubuntu 24.04 support"
20+
21+
packages:
22+
python: "3.12"
23+
cuda: "12.8.1"
24+
25+
optional:
26+
known_issues:
27+
- "Example known issue for demonstration purposes"

docs/src/data/base/12.9-gpu-ec2.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,16 @@ public_registry: true
1212
# Image tags (first tag is used in available_images.md)
1313
tags:
1414
- "12.9.1-gpu-py312-cu129-ubuntu22.04-ec2"
15+
16+
announcement:
17+
- "Introduced containers for Bse CUDA 12.9.0 for training which support EC2, ECS, and EKS"
18+
- "Starting with Base 12.9.0, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+
- "Added Python 3.12, Ubuntu 22.04 support"
20+
21+
packages:
22+
python: "3.12"
23+
cuda: "12.9.0"
24+
25+
optional:
26+
known_issues:
27+
- "Example known issue for demonstration purposes"

docs/src/data/base/13.0-gpu-ec2.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,16 @@ public_registry: true
1212
# Image tags (first tag is used in available_images.md)
1313
tags:
1414
- "13.0.0-gpu-py312-cu130-ubuntu22.04-ec2"
15+
16+
announcement:
17+
- "Introduced containers for Bse CUDA 13.0.0 for training which support EC2, ECS, and EKS"
18+
- "Starting with Base 13.0.0, we are removing Conda from the DLCs and installing all Python packages from PyPI"
19+
- "Added Python 3.12, Ubuntu 22.04 support"
20+
21+
packages:
22+
python: "3.12"
23+
cuda: "13.0.0"
24+
25+
optional:
26+
known_issues:
27+
- "Example known issue for demonstration purposes"

docs/src/generate.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def generate_release_notes(dry_run: bool = False) -> None:
146146
return
147147

148148
for framework_group in get_framework_order():
149-
group_images = images_by_group.get(framework_group)
149+
group_images = images_by_group.get(framework_group, [])
150150
if not group_images:
151151
continue
152152

@@ -182,6 +182,8 @@ def generate_support_policy(dry_run: bool = False) -> str:
182182

183183
for framework_group in get_framework_order():
184184
images = images_by_group.get(framework_group, [])
185+
if not images:
186+
continue
185187

186188
# Deduplicate by version, validating date consistency
187189
version_map: dict[str, ImageConfig] = {}

0 commit comments

Comments
 (0)