-
Notifications
You must be signed in to change notification settings - Fork 755
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
[SPIR-V] W/A for builtin vars translation #7632
Conversation
/summary:run |
/summary:run |
The translator was crashing in case if builin GV was accessed via GEP without AS cast due to incorrect assumption. This W/A is exclusive for intel/llvm Signed-off-by: Sidorov, Dmitry <[email protected]>
Signed-off-by: Sidorov, Dmitry <[email protected]>
Need to add 51a49d2 as well |
Signed-off-by: Sidorov, Dmitry <[email protected]>
1fb9fec
to
1d302c7
Compare
@asudarsa please take a look. This issue affects pulldown. |
Proper testing is done in #7637 |
@asudarsa friendly ping |
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. Thanks. Minor nit to add link to issue as part of the code comment.
@intel/llvm-gatekeepers please merge |
The translator was crashing in case if builin GV was accessed via GEP without AS cast due to incorrect assumption. The W/A replaced GEP with ExtractElementInst.
This W/A is exclusive for intel/llvm . Proper fix is done in SPIR-V consumer, but it will take take time to have the drivers be updated in CI.
Signed-off-by: Sidorov, Dmitry [email protected]