@@ -49,46 +49,13 @@ ur_result_t urMemImageCreate(ur_context_handle_t hContext, ur_mem_flags_t flags,
49
49
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
50
50
}
51
51
52
- ur_result_t urMemBufferCreate (ur_context_handle_t hContext,
53
- ur_mem_flags_t flags, size_t size,
54
- const ur_buffer_properties_t *pProperties,
55
- ur_mem_handle_t *phBuffer) {
56
- logger::error (" {} function not implemented!" , __FUNCTION__);
57
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
58
- }
59
-
60
- ur_result_t urMemRetain (ur_mem_handle_t hMem) {
61
- logger::error (" {} function not implemented!" , __FUNCTION__);
62
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
63
- }
64
-
65
- ur_result_t urMemRelease (ur_mem_handle_t hMem) {
66
- logger::error (" {} function not implemented!" , __FUNCTION__);
67
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
68
- }
69
-
70
- ur_result_t urMemBufferPartition (ur_mem_handle_t hBuffer, ur_mem_flags_t flags,
71
- ur_buffer_create_type_t bufferCreateType,
72
- const ur_buffer_region_t *pRegion,
73
- ur_mem_handle_t *phMem) {
74
- logger::error (" {} function not implemented!" , __FUNCTION__);
75
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
76
- }
77
-
78
52
ur_result_t urMemGetNativeHandle (ur_mem_handle_t hMem,
79
53
ur_device_handle_t hDevice,
80
54
ur_native_handle_t *phNativeMem) {
81
55
logger::error (" {} function not implemented!" , __FUNCTION__);
82
56
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
83
57
}
84
58
85
- ur_result_t urMemBufferCreateWithNativeHandle (
86
- ur_native_handle_t hNativeMem, ur_context_handle_t hContext,
87
- const ur_mem_native_properties_t *pProperties, ur_mem_handle_t *phMem) {
88
- logger::error (" {} function not implemented!" , __FUNCTION__);
89
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
90
- }
91
-
92
59
ur_result_t urMemImageCreateWithNativeHandle (
93
60
ur_native_handle_t hNativeMem, ur_context_handle_t hContext,
94
61
const ur_image_format_t *pImageFormat, const ur_image_desc_t *pImageDesc,
@@ -217,48 +184,13 @@ ur_result_t urPhysicalMemRelease(ur_physical_mem_handle_t hPhysicalMem) {
217
184
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
218
185
}
219
186
220
- ur_result_t
221
- urKernelSetArgLocal (ur_kernel_handle_t hKernel, uint32_t argIndex,
222
- size_t argSize,
223
- const ur_kernel_arg_local_properties_t *pProperties) {
224
- logger::error (" {} function not implemented!" , __FUNCTION__);
225
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
226
- }
227
-
228
187
ur_result_t urKernelGetInfo (ur_kernel_handle_t hKernel,
229
188
ur_kernel_info_t propName, size_t propSize,
230
189
void *pPropValue, size_t *pPropSizeRet) {
231
190
logger::error (" {} function not implemented!" , __FUNCTION__);
232
191
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
233
192
}
234
193
235
- ur_result_t urKernelGetGroupInfo (ur_kernel_handle_t hKernel,
236
- ur_device_handle_t hDevice,
237
- ur_kernel_group_info_t propName,
238
- size_t propSize, void *pPropValue,
239
- size_t *pPropSizeRet) {
240
- logger::error (" {} function not implemented!" , __FUNCTION__);
241
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
242
- }
243
-
244
- ur_result_t urKernelGetSubGroupInfo (ur_kernel_handle_t hKernel,
245
- ur_device_handle_t hDevice,
246
- ur_kernel_sub_group_info_t propName,
247
- size_t propSize, void *pPropValue,
248
- size_t *pPropSizeRet) {
249
- logger::error (" {} function not implemented!" , __FUNCTION__);
250
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
251
- }
252
-
253
- ur_result_t
254
- urKernelSetExecInfo (ur_kernel_handle_t hKernel, ur_kernel_exec_info_t propName,
255
- size_t propSize,
256
- const ur_kernel_exec_info_properties_t *pProperties,
257
- const void *pPropValue) {
258
- logger::error (" {} function not implemented!" , __FUNCTION__);
259
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
260
- }
261
-
262
194
ur_result_t
263
195
urKernelSetArgSampler (ur_kernel_handle_t hKernel, uint32_t argIndex,
264
196
const ur_kernel_arg_sampler_properties_t *pProperties,
@@ -267,14 +199,6 @@ urKernelSetArgSampler(ur_kernel_handle_t hKernel, uint32_t argIndex,
267
199
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
268
200
}
269
201
270
- ur_result_t
271
- urKernelSetArgMemObj (ur_kernel_handle_t hKernel, uint32_t argIndex,
272
- const ur_kernel_arg_mem_obj_properties_t *pProperties,
273
- ur_mem_handle_t hArgValue) {
274
- logger::error (" {} function not implemented!" , __FUNCTION__);
275
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
276
- }
277
-
278
202
ur_result_t urKernelSetSpecializationConstants (
279
203
ur_kernel_handle_t hKernel, uint32_t count,
280
204
const ur_specialization_constant_info_t *pSpecConstants) {
@@ -308,13 +232,6 @@ ur_result_t urKernelGetSuggestedLocalWorkSize(ur_kernel_handle_t hKernel,
308
232
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
309
233
}
310
234
311
- ur_result_t urEventGetInfo (ur_event_handle_t hEvent, ur_event_info_t propName,
312
- size_t propSize, void *pPropValue,
313
- size_t *pPropSizeRet) {
314
- logger::error (" {} function not implemented!" , __FUNCTION__);
315
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
316
- }
317
-
318
235
ur_result_t urEventGetProfilingInfo (ur_event_handle_t hEvent,
319
236
ur_profiling_info_t propName,
320
237
size_t propSize, void *pPropValue,
@@ -323,12 +240,6 @@ ur_result_t urEventGetProfilingInfo(ur_event_handle_t hEvent,
323
240
return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
324
241
}
325
242
326
- ur_result_t urEventWait (uint32_t numEvents,
327
- const ur_event_handle_t *phEventWaitList) {
328
- logger::error (" {} function not implemented!" , __FUNCTION__);
329
- return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
330
- }
331
-
332
243
ur_result_t urEventGetNativeHandle (ur_event_handle_t hEvent,
333
244
ur_native_handle_t *phNativeEvent) {
334
245
logger::error (" {} function not implemented!" , __FUNCTION__);
0 commit comments