Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update PkgCI test_amd to use MI300x conductor cluster #19517

Merged
merged 21 commits into from
Jan 13, 2025
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
11 changes: 10 additions & 1 deletion .github/workflows/pkgci_test_amd_mi300.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ on:

jobs:
test_mi300:
runs-on: nodai-amdgpu-mi300-x86-64
runs-on: linux-mi300-gpu-1
ScottTodd marked this conversation as resolved.
Show resolved Hide resolved
container:
image: rocm/dev-ubuntu-22.04:6.3
options: --user root --device=/dev/kfd --device=/dev/dri --ipc=host --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This had a failure after merge:

Error response from daemon: error gathering device information while adding custom device "/dev/kfd": no such file or directory
  Error: failed to start containers: 4bec79a3d99b9a5f5195ceb3ae3bf4ebb508b078b46d1de1d9b0366f0be182[41](https://github.com/iree-org/iree/actions/runs/12751728442/job/35540191551#step:2:44)

https://github.com/iree-org/iree/actions/runs/12751728442/job/35540191551

We can retry the job if you think that's a flake. Otherwise, want to revert for now?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A retry succeeded 🤔

env:
PACKAGE_DOWNLOAD_DIR: ${{ github.workspace }}/.packages
BUILD_DIR: build-tests
Expand All @@ -32,10 +35,16 @@ jobs:
IREE_HIP_ENABLE: 1
IREE_HIP_TEST_TARGET_CHIP: "gfx942"
steps:
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build clang lld git
- name: Check out repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: false
- name: "Mark git safe.directory"
run: git config --global --add safe.directory '*'
- name: Check out runtime submodules
run: ./build_tools/scripts/git/update_runtime_submodules.sh
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
Expand Down
Loading