-
Notifications
You must be signed in to change notification settings - Fork 787
[SYCL][NFCI] Move default optimization level configuration #7885
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Right now the front-end compiler modifies default optimization level in SYCL device compilation mode (upstream clang uses O0, whereas DPC++ uses O2). As some of CodeGen module patches landed to upstream, this difference causes conflicts and regresions when we pull changes from the upstream to the `sycl` branch. Current optimization level configuration is modeled after OpenCL compiler, which is a JIT compiler, so it doesn't use clang Driver. For DPC++ compiler it's more reasonable to make this type of changes in the driver to avoid significant divergence in LIT tests.
Fznamznon
reviewed
Jan 2, 2023
Fznamznon
reviewed
Jan 3, 2023
Fznamznon
approved these changes
Jan 3, 2023
smanna12
approved these changes
Jan 3, 2023
premanandrao
approved these changes
Jan 4, 2023
elizabethandrews
approved these changes
Jan 4, 2023
@intel/dpcpp-clang-driver-reviewers, could you take a look, please? |
mdtoguchi
reviewed
Jan 4, 2023
mdtoguchi
approved these changes
Jan 4, 2023
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 - LGTM
Pre-commit failure on AMDGPU is an issue in the test that will be fixed with intel/llvm-test-suite#1487. |
whitneywhtsang
added a commit
to whitneywhtsang/llvm
that referenced
this pull request
Jan 7, 2023
…ntel#7885)" This reverts commit 102e154.
whitneywhtsang
added a commit
to whitneywhtsang/llvm
that referenced
this pull request
Jan 13, 2023
…ation (intel#7885)"" This reverts commit 2c2a529.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Right now the front-end compiler modifies default optimization level in SYCL device compilation mode (upstream clang uses O0, whereas DPC++ uses O2). As some of CodeGen module patches landed to upstream, this difference causes conflicts and regresions when we pull changes from the upstream to the
sycl
branch.Current optimization level configuration is modeled after OpenCL compiler, which is a JIT compiler, so it doesn't use clang Driver. For DPC++ compiler it's more reasonable to make this type of changes in the driver to avoid significant divergence in LIT tests.