コード例 #1
0
ファイル: CL12.cs プロジェクト: uzbekdev1/Amplifier.NET
 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));
 }
コード例 #2
0
 public static extern ComputeErrorCode EnqueueMarker(
     CLCommandQueueHandle command_queue,
     out CLEventHandle new_event);
コード例 #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);
コード例 #4
0
 public static extern ComputeErrorCode ReleaseEvent(
     CLEventHandle @event);
コード例 #5
0
ファイル: CL11.cs プロジェクト: waqar41/Amplifier.NET
 public static extern ComputeErrorCode SetEventCallback(
     CLEventHandle @event,
     Int32 command_exec_callback_type,
     ComputeEventCallback pfn_notify,
     IntPtr user_data);
コード例 #6
0
ファイル: CL11.cs プロジェクト: waqar41/Amplifier.NET
 public static extern ComputeErrorCode SetUserEventStatus(
     CLEventHandle @event,
     Int32 execution_status);