@@ -294,124 +294,6 @@ urPhysicalMemRelease(ur_physical_mem_handle_t hPhysicalMem) {
294
294
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
295
295
}
296
296
297
- ur_result_t UR_APICALL
298
- urProgramCreateWithIL (ur_context_handle_t hContext, const void *pIL,
299
- size_t length, const ur_program_properties_t *pProperties,
300
- ur_program_handle_t *phProgram) {
301
- logger::error (" {} function not implemented!" , __FUNCTION__);
302
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
303
- }
304
-
305
- ur_result_t UR_APICALL urProgramCreateWithBinary (
306
- ur_context_handle_t hContext, ur_device_handle_t hDevice, size_t size,
307
- const uint8_t *pBinary, const ur_program_properties_t *pProperties,
308
- ur_program_handle_t *phProgram) {
309
- logger::error (" {} function not implemented!" , __FUNCTION__);
310
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
311
- }
312
-
313
- ur_result_t UR_APICALL urProgramBuild (ur_context_handle_t hContext,
314
- ur_program_handle_t hProgram,
315
- const char *pOptions) {
316
- logger::error (" {} function not implemented!" , __FUNCTION__);
317
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
318
- }
319
-
320
- ur_result_t UR_APICALL urProgramCompile (ur_context_handle_t hContext,
321
- ur_program_handle_t hProgram,
322
- const char *pOptions) {
323
- logger::error (" {} function not implemented!" , __FUNCTION__);
324
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
325
- }
326
-
327
- ur_result_t UR_APICALL urProgramLink (ur_context_handle_t hContext,
328
- uint32_t count,
329
- const ur_program_handle_t *phPrograms,
330
- const char *pOptions,
331
- ur_program_handle_t *phProgram) {
332
- logger::error (" {} function not implemented!" , __FUNCTION__);
333
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
334
- }
335
-
336
- ur_result_t UR_APICALL urProgramRetain (ur_program_handle_t hProgram) {
337
- logger::error (" {} function not implemented!" , __FUNCTION__);
338
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
339
- }
340
-
341
- ur_result_t UR_APICALL urProgramRelease (ur_program_handle_t hProgram) {
342
- logger::error (" {} function not implemented!" , __FUNCTION__);
343
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
344
- }
345
-
346
- ur_result_t UR_APICALL urProgramGetFunctionPointer (ur_device_handle_t hDevice,
347
- ur_program_handle_t hProgram,
348
- const char *pFunctionName,
349
- void **ppFunctionPointer) {
350
- logger::error (" {} function not implemented!" , __FUNCTION__);
351
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
352
- }
353
-
354
- ur_result_t UR_APICALL urProgramGetGlobalVariablePointer (
355
- ur_device_handle_t hDevice, ur_program_handle_t hProgram,
356
- const char *pGlobalVariableName, size_t *pGlobalVariableSizeRet,
357
- void **ppGlobalVariablePointerRet) {
358
- logger::error (" {} function not implemented!" , __FUNCTION__);
359
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
360
- }
361
-
362
- ur_result_t UR_APICALL urProgramGetInfo (ur_program_handle_t hProgram,
363
- ur_program_info_t propName,
364
- size_t propSize, void *pPropValue,
365
- size_t *pPropSizeRet) {
366
- logger::error (" {} function not implemented!" , __FUNCTION__);
367
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
368
- }
369
-
370
- ur_result_t UR_APICALL urProgramGetBuildInfo (ur_program_handle_t hProgram,
371
- ur_device_handle_t hDevice,
372
- ur_program_build_info_t propName,
373
- size_t propSize, void *pPropValue,
374
- size_t *pPropSizeRet) {
375
- logger::error (" {} function not implemented!" , __FUNCTION__);
376
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
377
- }
378
-
379
- ur_result_t UR_APICALL urProgramSetSpecializationConstants (
380
- ur_program_handle_t hProgram, uint32_t count,
381
- const ur_specialization_constant_info_t *pSpecConstants) {
382
- logger::error (" {} function not implemented!" , __FUNCTION__);
383
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
384
- }
385
-
386
- ur_result_t UR_APICALL urProgramGetNativeHandle (
387
- ur_program_handle_t hProgram, ur_native_handle_t *phNativeProgram) {
388
- logger::error (" {} function not implemented!" , __FUNCTION__);
389
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
390
- }
391
-
392
- ur_result_t UR_APICALL urProgramCreateWithNativeHandle (
393
- ur_native_handle_t hNativeProgram, ur_context_handle_t hContext,
394
- const ur_program_native_properties_t *pProperties,
395
- ur_program_handle_t *phProgram) {
396
- logger::error (" {} function not implemented!" , __FUNCTION__);
397
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
398
- }
399
-
400
- ur_result_t UR_APICALL urKernelCreate (ur_program_handle_t hProgram,
401
- const char *pKernelName,
402
- ur_kernel_handle_t *phKernel) {
403
- logger::error (" {} function not implemented!" , __FUNCTION__);
404
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
405
- }
406
-
407
- ur_result_t UR_APICALL urKernelSetArgValue (
408
- ur_kernel_handle_t hKernel, uint32_t argIndex, size_t argSize,
409
- const ur_kernel_arg_value_properties_t *pProperties,
410
- const void *pArgValue) {
411
- logger::error (" {} function not implemented!" , __FUNCTION__);
412
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
413
- }
414
-
415
297
ur_result_t UR_APICALL urKernelSetArgLocal (
416
298
ur_kernel_handle_t hKernel, uint32_t argIndex, size_t argSize,
417
299
const ur_kernel_arg_local_properties_t *pProperties) {
@@ -444,16 +326,6 @@ urKernelGetSubGroupInfo(ur_kernel_handle_t hKernel, ur_device_handle_t hDevice,
444
326
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
445
327
}
446
328
447
- ur_result_t UR_APICALL urKernelRetain (ur_kernel_handle_t hKernel) {
448
- logger::error (" {} function not implemented!" , __FUNCTION__);
449
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
450
- }
451
-
452
- ur_result_t UR_APICALL urKernelRelease (ur_kernel_handle_t hKernel) {
453
- logger::error (" {} function not implemented!" , __FUNCTION__);
454
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
455
- }
456
-
457
329
ur_result_t UR_APICALL
458
330
urKernelSetArgPointer (ur_kernel_handle_t hKernel, uint32_t argIndex,
459
331
const ur_kernel_arg_pointer_properties_t *pProperties,
@@ -888,33 +760,6 @@ ur_result_t UR_APICALL urKernelSuggestMaxCooperativeGroupCountExp(
888
760
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
889
761
}
890
762
891
- ur_result_t UR_APICALL urProgramBuildExp (ur_program_handle_t hProgram,
892
- uint32_t numDevices,
893
- ur_device_handle_t *phDevices,
894
- const char *pOptions) {
895
- logger::error (" {} function not implemented!" , __FUNCTION__);
896
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
897
- }
898
-
899
- ur_result_t UR_APICALL urProgramCompileExp (ur_program_handle_t hProgram,
900
- uint32_t numDevices,
901
- ur_device_handle_t *phDevices,
902
- const char *pOptions) {
903
- logger::error (" {} function not implemented!" , __FUNCTION__);
904
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
905
- }
906
-
907
- ur_result_t UR_APICALL urProgramLinkExp (ur_context_handle_t hContext,
908
- uint32_t numDevices,
909
- ur_device_handle_t *phDevices,
910
- uint32_t count,
911
- const ur_program_handle_t *phPrograms,
912
- const char *pOptions,
913
- ur_program_handle_t *phProgram) {
914
- logger::error (" {} function not implemented!" , __FUNCTION__);
915
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
916
- }
917
-
918
763
ur_result_t UR_APICALL urUSMImportExp (ur_context_handle_t hContext, void *pMem,
919
764
size_t size) {
920
765
logger::error (" {} function not implemented!" , __FUNCTION__);
0 commit comments