-
Notifications
You must be signed in to change notification settings - Fork 758
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-PTX] Enable half for CUDA target. #2003
Merged
bader
merged 3 commits into
intel:sycl
from
codeplaysoftware:victor/spirv-ptx-enable-half
Jul 3, 2020
Merged
[SYCL-PTX] Enable half for CUDA target. #2003
bader
merged 3 commits into
intel:sycl
from
codeplaysoftware:victor/spirv-ptx-enable-half
Jul 3, 2020
Conversation
This file contains 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
bader
reviewed
Jun 29, 2020
15d9d19
to
26682f9
Compare
bader
previously approved these changes
Jun 29, 2020
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.
- libclc/generic/include/clc/float/definitions.h changes
Fznamznon
reviewed
Jun 29, 2020
This was referenced Jun 29, 2020
Fznamznon
previously approved these changes
Jul 2, 2020
@Naghasan, it looks like two SYCL tests should be updated.
|
This patch enables 16 bits float in the libclc. It also provides a better builtins binding (SPIRVBuiltins.td) for __fp16 (with native halfs) and _Float16. It will now depends on the programing mode enabled. Signed-off-by: Victor Lomuller <[email protected]>
Rather that using a bit filed to mark whether a QualType is directly accessed or produced by a function, the functionality now uses subclass. Signed-off-by: Victor Lomuller <[email protected]>
Signed-off-by: Victor Lomuller <[email protected]>
8347b85
to
8602d60
Compare
bader
approved these changes
Jul 3, 2020
alexbatashev
approved these changes
Jul 3, 2020
Fznamznon
approved these changes
Jul 3, 2020
kchusha
pushed a commit
to kchusha/llvm
that referenced
this pull request
May 10, 2023
Handle the case when we have `DebugInfoNone` for the Text argument which is usually expected to be `OpString`. Original commit: KhronosGroup/SPIRV-LLVM-Translator@bde3b51
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 patch enables 16 bits float in the libclc.
It also provides a better builtins binding (SPIRVBuiltins.td) for __fp16 (with native halfs) and _Float16.
It will now depends on the programing mode enabled.
Note: due to #1814, we have to disable a test as a work around.
Signed-off-by: Victor Lomuller [email protected]