File tree Expand file tree Collapse file tree 5 files changed +150
-129
lines changed
source/adapters/level_zero Expand file tree Collapse file tree 5 files changed +150
-129
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ if (NOT DEFINED LEVEL_ZERO_LIBRARY OR NOT DEFINED LEVEL_ZERO_INCLUDE_DIR)
42
42
set (UR_LEVEL_ZERO_LOADER_REPO "https://github.com/oneapi-src/level-zero.git" )
43
43
endif ()
44
44
if (UR_LEVEL_ZERO_LOADER_TAG STREQUAL "" )
45
- set (UR_LEVEL_ZERO_LOADER_TAG v1.16.1 )
45
+ set (UR_LEVEL_ZERO_LOADER_TAG v1.17.0 )
46
46
endif ()
47
47
48
48
# Disable due to a bug https://github.com/oneapi-src/level-zero/issues/104
Original file line number Diff line number Diff line change @@ -229,6 +229,14 @@ template <> ze_structure_type_t getZeStructureType<ze_command_queue_desc_t>() {
229
229
template <> ze_structure_type_t getZeStructureType<ze_image_desc_t >() {
230
230
return ZE_STRUCTURE_TYPE_IMAGE_DESC;
231
231
}
232
+ template <>
233
+ ze_structure_type_t getZeStructureType<ze_image_bindless_exp_desc_t >() {
234
+ return ZE_STRUCTURE_TYPE_BINDLESS_IMAGE_EXP_DESC;
235
+ }
236
+ template <>
237
+ ze_structure_type_t getZeStructureType<ze_image_pitched_exp_desc_t >() {
238
+ return ZE_STRUCTURE_TYPE_PITCHED_IMAGE_EXP_DESC;
239
+ }
232
240
template <> ze_structure_type_t getZeStructureType<ze_module_desc_t >() {
233
241
return ZE_STRUCTURE_TYPE_MODULE_DESC;
234
242
}
You can’t perform that action at this time.
0 commit comments