-
Notifications
You must be signed in to change notification settings - Fork 798
[SYCL] Disable dead arg elimination for free function kernels #19776
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
Open
lbushi25
wants to merge
27
commits into
intel:sycl
Choose a base branch
from
lbushi25:disable_dead_arg_elimination_for_free_function_kernels
base: sycl
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
34a11ca
Provide supports for decomposable structs
lbushi25 edec2b4
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 c9680a2
Revert "Provide supports for decomposable structs"
lbushi25 b932fe6
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 6b6da56
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 ceaabfd
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 714839e
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 01b6936
Remove debugging artifacts from E2E test
lbushi25 dbc7f3e
Merge branch 'sycl' of https://github.com/lbushi25/llvm into sycl
lbushi25 3d3a618
Disable dear argument elimination for free function kernels
lbushi25 20bf581
Update DeadArgumentElimination.cpp
lbushi25 a95f22d
Update free_function_kernels.cpp
lbushi25 1060e14
Add test for dead argument elimination disabling for free function ke…
lbushi25 90422fb
Merge branch 'disable_dead_arg_elimination_for_free_function_kernels'…
lbushi25 2cb0ca7
Fix typo in RUN command
lbushi25 964e5af
Rename test and add an explnatory comment
lbushi25 6704b61
Refactor tests
lbushi25 e6740fd
Improve comments
lbushi25 4f76afe
Improve comments
lbushi25 54b372b
Update sycl-kernels-neg.ll
lbushi25 17b7eda
Run script on LIT test
lbushi25 dc92d56
Fix conflict
lbushi25 8723efe
Fix E2E failures
lbushi25 28569aa
Revert "Fix E2E failures"
lbushi25 01e13bc
Comment out failing test case
lbushi25 06bc971
Update llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
lbushi25 e83e510
Remove extra blank line
lbushi25 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
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.
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.
I'll leave review of this to @AlexeySachkov.
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.
Is it a regression from this patch, or is it something previously known?
Uh oh!
There was an error while loading. Please reload this page.
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.
I believe it's previously known. The failure described by the tracker has been happening since the test was created, it just wasn't caught by pre-commit since it only manifests with optimizations disabled.
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.
Ideally, such test should be disabled in a separate PR not to cause confusion, but I'm fine with the change since we do have a tracker to analyze the issue