@@ -49,46 +49,13 @@ ur_result_t urMemImageCreate(ur_context_handle_t hContext, ur_mem_flags_t flags,
4949 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
5050}
5151
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-
7852ur_result_t urMemGetNativeHandle (ur_mem_handle_t hMem,
7953 ur_device_handle_t hDevice,
8054 ur_native_handle_t *phNativeMem) {
8155 logger::error (" {} function not implemented!" , __FUNCTION__);
8256 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
8357}
8458
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-
9259ur_result_t urMemImageCreateWithNativeHandle (
9360 ur_native_handle_t hNativeMem, ur_context_handle_t hContext,
9461 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) {
217184 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
218185}
219186
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-
228187ur_result_t urKernelGetInfo (ur_kernel_handle_t hKernel,
229188 ur_kernel_info_t propName, size_t propSize,
230189 void *pPropValue, size_t *pPropSizeRet) {
231190 logger::error (" {} function not implemented!" , __FUNCTION__);
232191 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
233192}
234193
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-
262194ur_result_t
263195urKernelSetArgSampler (ur_kernel_handle_t hKernel, uint32_t argIndex,
264196 const ur_kernel_arg_sampler_properties_t *pProperties,
@@ -267,14 +199,6 @@ urKernelSetArgSampler(ur_kernel_handle_t hKernel, uint32_t argIndex,
267199 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
268200}
269201
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-
278202ur_result_t urKernelSetSpecializationConstants (
279203 ur_kernel_handle_t hKernel, uint32_t count,
280204 const ur_specialization_constant_info_t *pSpecConstants) {
@@ -308,13 +232,6 @@ ur_result_t urKernelGetSuggestedLocalWorkSize(ur_kernel_handle_t hKernel,
308232 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
309233}
310234
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-
318235ur_result_t urEventGetProfilingInfo (ur_event_handle_t hEvent,
319236 ur_profiling_info_t propName,
320237 size_t propSize, void *pPropValue,
@@ -323,12 +240,6 @@ ur_result_t urEventGetProfilingInfo(ur_event_handle_t hEvent,
323240 return UR_RESULT_ERROR_UNSUPPORTED_FEATURE;
324241}
325242
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-
332243ur_result_t urEventGetNativeHandle (ur_event_handle_t hEvent,
333244 ur_native_handle_t *phNativeEvent) {
334245 logger::error (" {} function not implemented!" , __FUNCTION__);
0 commit comments