コード例 #1
0
ファイル: CudaDeviceInfo.cs プロジェクト: nurerkn/emgucv
 /// <summary>
 /// Indicates if the device has the specific feature
 /// </summary>
 /// <param name="feature">The device feature</param>
 /// <returns>True if the feature is supported</returns>
 public bool Supports(GpuFeature feature)
 {
     return(CudaInvoke.cudaDeviceInfoSupports(_ptr, feature));
 }
コード例 #2
0
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
    return CudaInvoke.cudaDeviceInfoSupports(_ptr, feature);
 }
コード例 #3
0
 private static extern bool gpuDeviceInfoSupports(IntPtr device, GpuFeature feature);
コード例 #4
0
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
     return gpuDeviceInfoSupports(_ptr, feature);
 }
コード例 #5
0
ファイル: GpuDeviceInfo.cs プロジェクト: ssor/csharpDemos
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
     return(GpuInvoke.gpuDeviceInfoSupports(_ptr, feature));
 }
コード例 #6
0
ファイル: GpuDevice.cs プロジェクト: kittawee/Final-Project
 private static extern bool gpuDeviceInfoSupports(IntPtr device, GpuFeature feature);