-
Notifications
You must be signed in to change notification settings - Fork 770
[SYCL][Bindless][Doc] Add support for cubemaps #12996
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
- Allocation and freeing of cubemapped images - Unsampled fetching and writing, and sampled reading - Device queries for cubemap support - Testing for both unsampled and sampled cubemap examples - Update the spec with cubemap support
Make sure to keep an eye on if [SYCL][Bindless] Add image_mem_handle to image_mem_handle devices copies. gets merged first. In the case that it does, |
Friendly ping @intel/dpcpp-tools-reviewers, @intel/unified-runtime-reviewers, @intel/llvm-reviewers-runtime, @intel/llvm-reviewers-cuda, @maarquitos14, and @jchlanda for reviews/approvals |
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.
DeviceConfigFile.td
changes LGTM
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 👍
UR TAG has also been updated
Ping @intel/llvm-gatekeepers can this be merged? |
Add cubemap support: - Allocation and freeing of cubemapped images - Unsampled fetching and writing, and sampled reading - Device queries for cubemap support - Testing for both unsampled and sampled cubemap examples - Update the spec with cubemap support Remove `const` and `&` qualifiers from spec and implementation for handle parameters in `write_xxx` functions. Corresponding UR PR: oneapi-src/unified-runtime#1433 --------- Co-authored-by: Przemek Malon <[email protected]> Resolved Conflicts in: - Due to not cherry-picking intel#12840 - sycl/include/sycl/detail/pi.h - Due to not cherry-picking intel#13181 - sycl/include/sycl/device_aspect_macros.hpp - sycl/include/sycl/info/aspects.def
Add cubemap support:
Remove
const
and&
qualifiers from spec and implementation for handle parameters inwrite_xxx
functions.Corresponding UR PR: oneapi-src/unified-runtime#1433