Skip to content

Commit 4d0c552

Browse files
authored
[Bindless][Proposal] Add overload with sycl::queue to standalone functions (#11151)
Add the missing `sycl::queue` overload variants to the standalone functions in the proposal.
1 parent 023b9af commit 4d0c552

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sycl/doc/extensions/experimental/sycl_ext_oneapi_bindless_images.asciidoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,20 +388,30 @@ namespace sycl::ext::oneapi {
388388
sycl::range<3> get_image_range(const image_mem_handle memHandle,
389389
const sycl::device &syclDevice,
390390
const sycl::context &syclContext);
391+
sycl::range<3> get_image_range(const image_mem_handle memHandle,
392+
const sycl::queue &syclQueue);
391393

392394
sycl::image_channel_type
393395
get_image_channel_type(const image_mem_handle memHandle,
394396
const sycl::device &syclDevice,
395397
const sycl::context &syclContext);
398+
sycl::image_channel_type
399+
get_image_channel_type(const image_mem_handle memHandle,
400+
const sycl::queue &syclQueue);
396401

397402
unsigned int get_image_num_channels(const image_mem_handle memHandle,
398403
const sycl::device &syclDevice,
399404
const sycl::context &syclContext);
405+
unsigned int get_image_num_channels(const image_mem_handle memHandle,
406+
const sycl::queue &syclQueue);
400407

401408
image_mem_handle get_mip_level_mem_handle(const image_mem_handle mipMemHandle,
402409
unsigned int level,
403410
const sycl::device &syclDevice,
404411
const sycl::context &syclContext);
412+
image_mem_handle get_mip_level_mem_handle(const image_mem_handle mipMemHandle,
413+
unsigned int level,
414+
const sycl::queue &syclQueue);
405415
}
406416
```
407417

@@ -1964,4 +1974,5 @@ These features still need to be handled:
19641974
|4.3|2023-09-08| - Clarify how normalized image formats are read
19651975
- Remove support for packed normalized image formats
19661976
(`unorm_short_555`, `unorm_short_565`, `unorm_int_101010`)
1977+
|4.4|2023-09-12| - Added overload with `sycl::queue` to standalone functions
19671978
|======================

0 commit comments

Comments
 (0)