-
Notifications
You must be signed in to change notification settings - Fork 251
Temporarily disable the test on mi355 #1437
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,16 +42,16 @@ jobs: | |||||
| pr_title="${{ github.event.pull_request.title }}" | ||||||
| if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | ||||||
| echo "It's main branch, running tests on MI325 and MI35X..." | ||||||
| echo 'standard_runners=["aiter-1gpu-runner","aiter-mi355-1gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-8gpu-runner","aiter-mi355-8gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'standard_runners=["aiter-1gpu-runner"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-8gpu-runner"]' >> "$GITHUB_OUTPUT" | ||||||
| elif echo "$pr_title" | grep -qi "mi35x"; then | ||||||
| echo "PR title contains 'MI35X', running tests on MI325 and MI35X..." | ||||||
|
||||||
| echo "PR title contains 'MI35X', running tests on MI325 and MI35X..." | |
| echo "PR title contains 'MI35X', but running tests on MI325 only..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The echo message claims "running tests on MI325 and MI35X..." but the updated runner configuration only includes MI325 runners (
aiter-1gpu-runner). This creates misleading log output. Consider updating the message to reflect that only MI325 tests are running, e.g., "It's main branch, running tests on MI325 only..."