File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -671,15 +671,15 @@ bool device_impl::has(aspect Aspect) const {
671671 ur_bool_t support = false ;
672672 bool call_successful =
673673 getAdapter ()->call_nocheck <UrApiKind::urDeviceGetInfo>(
674- MDevice, UR_DEVICE_INFO_BINDLESS_SAMPLE_1D_USM_EXP ,
674+ MDevice, UR_DEVICE_INFO_BINDLESS_SAMPLE_1D_USM_SUPPORT_EXP ,
675675 sizeof (ur_bool_t ), &support, nullptr ) == UR_RESULT_SUCCESS;
676676 return call_successful && support;
677677 }
678678 case aspect::ext_oneapi_bindless_images_sample_2d_usm: {
679679 ur_bool_t support = false ;
680680 bool call_successful =
681681 getAdapter ()->call_nocheck <UrApiKind::urDeviceGetInfo>(
682- MDevice, UR_DEVICE_INFO_BINDLESS_SAMPLE_2D_USM_EXP ,
682+ MDevice, UR_DEVICE_INFO_BINDLESS_SAMPLE_2D_USM_SUPPORT_EXP ,
683683 sizeof (ur_bool_t ), &support, nullptr ) == UR_RESULT_SUCCESS;
684684 return call_successful && support;
685685 }
You can’t perform that action at this time.
0 commit comments