-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Support specifying an execution provider in benchmark script #10453
Conversation
elif provider == 'rocm': | ||
execution_providers = ['ROCMExecutionProvider', 'CPUExecutionProvider'] | ||
elif provider == 'migraphx': | ||
execution_providers = ['MIGraphXExecutionProvider', 'CPUExecutionProvider'] |
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.
Falling back to ROCm EP and then CPU EP: ['MIGraphXExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider']
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.
Done.
elif provider == 'migraphx': | ||
execution_providers = ['MIGraphXExecutionProvider', 'CPUExecutionProvider'] | ||
elif provider == 'tensorrt': | ||
execution_providers = ['TensorrtExecutionProvider', 'CPUExecutionProvider'] |
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.
Similar here. Falling back to CUDA EP and then CPU EP.
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.
Done.
/azp run Windows CPU CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
…icrosoft#10453)" This reverts commit 239c6ad.
Description: Describe your changes.
Support specifying an execution provider in benchmark script.
Motivation and Context