Skip to content

Commit 88d5f59

Browse files
authored
Update PkgCI test_amd to use MI300x conductor cluster (#19517)
We want to migrate the workflows use MI300 and do not require cache support to migrate to our conductor cluster. A new runner with one GPU has been created - label: linux-mi300-gpu-1 - namespace: arc-iree-gpu - gitconfig url: https://github.com/iree-org/iree This PR is to update the run label. --------- Signed-off-by: Jodie Su <Jodie.Su@amd.com>
1 parent ae50c5e commit 88d5f59

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/pkgci_test_amd_mi300.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ on:
1919

2020
jobs:
2121
test_mi300:
22-
runs-on: nodai-amdgpu-mi300-x86-64
22+
runs-on: linux-mi300-gpu-1
23+
container:
24+
image: rocm/dev-ubuntu-22.04:6.3
25+
options: --user root --device=/dev/kfd --device=/dev/dri --ipc=host --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
2326
env:
2427
PACKAGE_DOWNLOAD_DIR: ${{ github.workspace }}/.packages
2528
BUILD_DIR: build-tests
@@ -32,10 +35,16 @@ jobs:
3235
IREE_HIP_ENABLE: 1
3336
IREE_HIP_TEST_TARGET_CHIP: "gfx942"
3437
steps:
38+
- name: "Install dependencies"
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y cmake ninja-build clang lld git
3542
- name: Check out repository
3643
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3744
with:
3845
submodules: false
46+
- name: "Mark git safe.directory"
47+
run: git config --global --add safe.directory '*'
3948
- name: Check out runtime submodules
4049
run: ./build_tools/scripts/git/update_runtime_submodules.sh
4150
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0

0 commit comments

Comments
 (0)