-
Notifications
You must be signed in to change notification settings - Fork 770
[SYCL][NFC] Avoid warnings in SYCLSpecConstMaterializer and program_manager #14770
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
steffenlarsen
merged 2 commits into
intel:sycl
from
steffenlarsen:steffen/fix_post_commit_25072024
Jul 25, 2024
Merged
[SYCL][NFC] Avoid warnings in SYCLSpecConstMaterializer and program_manager #14770
steffenlarsen
merged 2 commits into
intel:sycl
from
steffenlarsen:steffen/fix_post_commit_25072024
Jul 25, 2024
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
…anager This commit avoids the following warnings in post-commit testing: * SYCLSpecConstMaterializer had a loop purely for debug printing. If NDEBUG is defined, the loop variable is unused, which causes a warning. To address this, we mask the debug printing with ifndef NDEBUG. * In program_manager, debug printing now checks whether debug printing is enabled using if constexpr. This now means that getFormatStr is unused, which in turn causes a warning. This commit marks it as potentially unused to avoid this warning. Signed-off-by: Larsen, Steffen <[email protected]>
jchlanda
approved these changes
Jul 25, 2024
victor-eds
reviewed
Jul 25, 2024
Signed-off-by: Larsen, Steffen <[email protected]>
maarquitos14
approved these changes
Jul 25, 2024
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.
AMD failure appears to be an infrastructural issue. @intel/dpcpp-kernel-fusion-reviewers - Please have a look ASAP. |
I've seen the same failure in multiple open PRs: |
sommerlukas
approved these changes
Jul 25, 2024
hdelan
pushed a commit
to hdelan/llvm
that referenced
this pull request
Jul 26, 2024
…anager (intel#14770) This commit avoids the following warnings in post-commit testing: * SYCLSpecConstMaterializer had a loop purely for debug printing. If `NDEBUG` is defined, the loop variable is unused, which causes a warning. To address this, the use of `LLVM_DEBUG` is moved to outside the full debug printing body. * In program_manager, debug printing now checks whether debug printing is enabled using `if constexpr`. This now means that `getFormatStr` is unused, which in turn causes a warning. This commit marks it as potentially unused to avoid this warning. --------- Signed-off-by: Larsen, Steffen <[email protected]>
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.
This commit avoids the following warnings in post-commit testing:
NDEBUG
is defined, the loop variable is unused, which causes a warning. To address this, the use ofLLVM_DEBUG
is moved to outside the full debug printing body.if constexpr
. This now means thatgetFormatStr
is unused, which in turn causes a warning. This commit marks it as potentially unused to avoid this warning.