-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[ROCm] Fix subprocess error #6587
Conversation
Fixes microsoft#6585 Use shell=True for subprocess.check_output() in case of ROCm commands. Do not use shlex.split() since command string has wildcard expansion. Signed-off-by: Jagadish Krishnamoorthy <jagadish.krishnamoorthy@amd.com>
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.
Lgtm
There are bunch of nv jobs with failed status. I am not able to view the logs. |
Hi @jagadish-amd - sorry, the runners crashed while running your jobs before, and need to be recovered. I'm trying to fix that and if we can't get it fixed quickly we can force merge this |
Thanks @loadams ! |
@loadams Can we merge this PR now? |
Fixes #6585
Use shell=True for subprocess.check_output() in case of ROCm commands. Do not use shlex.split() since command string has wildcard expansion.