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(
310
310
// TODO: Implement
311
311
UR_DLLEXPORT ur_result_t UR_APICALL urGetBindlessImagesExpProcAddrTable (
312
312
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;
314
316
}
315
317
316
318
// TODO: Implement
317
319
UR_DLLEXPORT ur_result_t UR_APICALL
318
320
urGetUSMExpProcAddrTable (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;
320
324
}
321
325
322
326
UR_DLLEXPORT ur_result_t UR_APICALL urGetVirtualMemProcAddrTable (
You can’t perform that action at this time.
0 commit comments