Esempio n. 1
0
 public new static ComputeErrorCode EnqueueMarker(
     CLCommandQueueHandle command_queue,
     out CLEventHandle new_event)
 {
     Debug.WriteLine("WARNING! clEnqueueMarker has been deprecated in OpenCL 1.2.");
     return(CL11.EnqueueMarker(command_queue, out new_event));
 }
Esempio n. 2
0
 public static extern ComputeErrorCode EnqueueMarker(
     CLCommandQueueHandle command_queue,
     out CLEventHandle new_event);
Esempio n. 3
0
 public static extern ComputeErrorCode GetEventProfilingInfo(
     CLEventHandle @event,
     ComputeCommandProfilingInfo param_name,
     IntPtr param_value_size,
     IntPtr param_value,
     out IntPtr param_value_size_ret);
Esempio n. 4
0
 public static extern ComputeErrorCode ReleaseEvent(
     CLEventHandle @event);
Esempio n. 5
0
 public static extern ComputeErrorCode SetEventCallback(
     CLEventHandle @event,
     Int32 command_exec_callback_type,
     ComputeEventCallback pfn_notify,
     IntPtr user_data);
Esempio n. 6
0
 public static extern ComputeErrorCode SetUserEventStatus(
     CLEventHandle @event,
     Int32 execution_status);