-
Notifications
You must be signed in to change notification settings - Fork 802
[SYCL][Bindless] Add support for mipmap data types smaller than 32-bit #10856
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
Conversation
828527a to
6db0988
Compare
|
Friendly ping for @intel/llvm-reviewers-runtime and @intel/llvm-reviewers-cuda |
steffenlarsen
left a comment
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.
Just some minor comments. I think it looks good overall.
6db0988 to
8093bcb
Compare
8093bcb to
d2679fe
Compare
This commit adds support for data types smaller then 32-bit for mipmaps. The added types are short, short2, short4, ushort, ushort2, ushort4, char, char2, char4, uchar, uchar2, uchar4, half, half2, and half4. Mipmap tests have been modified to test all valid data types. `image.cl` has also been refactored to reduce code duplication.
d2679fe to
14fcf07
Compare
|
Thanks for the feedback Steffen. Would have responded much earlier but unfortunately I was on holiday when I got your feedback. |
|
@intel/llvm-gatekeepers |
This commit adds support for data types smaller then 32-bit for mipmaps.
The added types are short, short2, short4, ushort, ushort2, ushort4, char, char2, char4, uchar, uchar2, uchar4, half, half2, and half4. Mipmap tests have been modified to test all valid data types.
image.clhas also been refactored to reduce code duplication.