-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL] Add missing supported AMDGPU architectures to SYCL #15723
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
[SYCL] Add missing supported AMDGPU architectures to SYCL #15723
Conversation
5d7468d
to
0d4bebb
Compare
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.
Thanks!
@intel/llvm-reviewers-runtime gentle ping. Not a prio, just good to get in to support one of the new driver changes wrt allowed --offload-arch targets. Thanks! |
…supported-arch-docs
ping @intel/llvm-reviewers-runtime @sergey-semenov Could we get a review on this, we're still missing one approval, and it's a fairly small change so it should be quick to review. |
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.
@intel/llvm-gatekeepers this should be ready to merge |
The three added
gfx7
architectures were previously omitted from the list of supported ones for SYCL targeting AMDGPU.There is no rational for them to be excluded rather than a potential mistake when all the rest were added, so this PR adds them in.
All of these exactly match the LLVM AMDGPU support docs here: https://llvm.org/docs/AMDGPUUsage.html#processors.
This also makes reusing the current
OffloadArch
enum in clang Driver easier with no concern of whether we have to filter these out for SYCL.