Update docker build workflows for gfx942 ROCm 7.0. (#9794)

Co-authored-by: Hubert Lu <Hubert.Lu@amd.com>
This commit is contained in:
Sai Enduri
2025-09-01 00:37:12 -07:00
committed by GitHub
parent 065e523d7b
commit 4750cddf68
2 changed files with 6 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ jobs:
environment: 'prod'
strategy:
matrix:
gpu_arch: ['gfx942', 'gfx950']
gpu_arch: ['gfx942', 'gfx942-rocm700', 'gfx950']
build_type: ['all', 'srt']
steps:
- name: Checkout repository
@@ -41,6 +41,8 @@ jobs:
if [ "${{ matrix.gpu_arch }}" = "gfx942" ]; then
rocm_tag="rocm630-mi30x"
elif [ "${{ matrix.gpu_arch }}" = "gfx942-rocm700" ]; then
rocm_tag="rocm700-mi30x"
elif [ "${{ matrix.gpu_arch }}" = "gfx950" ]; then
rocm_tag="rocm700-mi35x"
else

View File

@@ -14,7 +14,7 @@ jobs:
environment: 'prod'
strategy:
matrix:
gpu_arch: ['gfx942', 'gfx950']
gpu_arch: ['gfx942', 'gfx942-rocm700', 'gfx950']
build_type: ['all', 'srt']
steps:
- name: Checkout repository
@@ -32,6 +32,8 @@ jobs:
if [ "${{ matrix.gpu_arch }}" = "gfx942" ]; then
rocm_tag="rocm630-mi30x"
elif [ "${{ matrix.gpu_arch }}" = "gfx942-rocm700" ]; then
rocm_tag="rocm700-mi30x"
elif [ "${{ matrix.gpu_arch }}" = "gfx950" ]; then
rocm_tag="rocm700-mi35x"
else