Skip to content

[SYCL][BINDLESS] Use correct handle type when creating images #18707

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

Merged
merged 1 commit into from
May 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sycl/source/detail/bindless_images.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ create_image(image_mem_handle memHandle, const image_descriptor &desc,
populate_ur_structs(desc, urDesc, urFormat);

// Call impl.
ur_exp_image_mem_native_handle_t urImageHandle = 0;
ur_exp_image_native_handle_t urImageHandle = 0;
Adapter
->call<sycl::errc::runtime,
sycl::detail::UrApiKind::urBindlessImagesUnsampledImageCreateExp>(
Expand Down Expand Up @@ -372,7 +372,7 @@ create_image(void *devPtr, size_t pitch, const bindless_image_sampler &sampler,
populate_ur_structs(desc, urDesc, urFormat, pitch);

// Call impl.
ur_exp_image_mem_native_handle_t urImageHandle = 0;
ur_exp_image_native_handle_t urImageHandle = 0;
Adapter->call<sycl::errc::runtime,
sycl::detail::UrApiKind::urBindlessImagesSampledImageCreateExp>(
urCtx, urDevice,
Expand Down
Loading