File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -310,13 +310,17 @@ UR_DLLEXPORT ur_result_t UR_APICALL urGetUsmP2PExpProcAddrTable(
310310// TODO: Implement
311311UR_DLLEXPORT ur_result_t UR_APICALL urGetBindlessImagesExpProcAddrTable (
312312 ur_api_version_t , ur_bindless_images_exp_dditable_t *) {
313- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
313+ // This needs to return UR_RESULT_SUCCESS or else the platform can't be
314+ // initialized
315+ return UR_RESULT_SUCCESS;
314316}
315317
316318// TODO: Implement
317319UR_DLLEXPORT ur_result_t UR_APICALL
318320urGetUSMExpProcAddrTable (ur_api_version_t , ur_usm_exp_dditable_t *) {
319- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
321+ // This needs to return UR_RESULT_SUCCESS or else the platform can't be
322+ // initialized
323+ return UR_RESULT_SUCCESS;
320324}
321325
322326UR_DLLEXPORT ur_result_t UR_APICALL urGetVirtualMemProcAddrTable (
You can’t perform that action at this time.
0 commit comments