@@ -381,25 +381,12 @@ UR_DLLEXPORT ur_result_t UR_APICALL urGetEnqueueExpProcAddrTable(
381
381
return result;
382
382
}
383
383
384
- pDdiTable->pfnCooperativeKernelLaunchExp = nullptr ;
385
384
pDdiTable->pfnTimestampRecordingExp = nullptr ;
386
385
pDdiTable->pfnNativeCommandExp = nullptr ;
387
386
388
387
return UR_RESULT_SUCCESS;
389
388
}
390
389
391
- UR_DLLEXPORT ur_result_t UR_APICALL urGetKernelExpProcAddrTable (
392
- ur_api_version_t version, ur_kernel_exp_dditable_t *pDdiTable) {
393
- auto result = validateProcInputs (version, pDdiTable);
394
- if (UR_RESULT_SUCCESS != result) {
395
- return result;
396
- }
397
-
398
- pDdiTable->pfnSuggestMaxCooperativeGroupCountExp = nullptr ;
399
-
400
- return UR_RESULT_SUCCESS;
401
- }
402
-
403
390
UR_DLLEXPORT ur_result_t UR_APICALL urGetProgramExpProcAddrTable (
404
391
ur_api_version_t version, ur_program_exp_dditable_t *pDdiTable) {
405
392
auto result = validateProcInputs (version, pDdiTable);
@@ -424,7 +411,6 @@ UR_DLLEXPORT ur_result_t UR_APICALL urAllAddrTable(ur_api_version_t version,
424
411
urGetEnqueueExpProcAddrTable (version, &pDdiTable->EnqueueExp );
425
412
urGetEventProcAddrTable (version, &pDdiTable->Event );
426
413
urGetKernelProcAddrTable (version, &pDdiTable->Kernel );
427
- urGetKernelExpProcAddrTable (version, &pDdiTable->KernelExp );
428
414
urGetMemProcAddrTable (version, &pDdiTable->Mem );
429
415
urGetPhysicalMemProcAddrTable (version, &pDdiTable->PhysicalMem );
430
416
urGetPlatformProcAddrTable (version, &pDdiTable->Platform );
0 commit comments