Beispiel #1
0
 /// <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));
 }
Beispiel #2
0
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
    return CudaInvoke.cudaDeviceInfoSupports(_ptr, feature);
 }
 private static extern bool gpuDeviceInfoSupports(IntPtr device, GpuFeature feature);
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
     return gpuDeviceInfoSupports(_ptr, feature);
 }
Beispiel #5
0
 /// <summary>
 /// Indicates if the decive has the specific feature
 /// </summary>
 public bool Supports(GpuFeature feature)
 {
     return(GpuInvoke.gpuDeviceInfoSupports(_ptr, feature));
 }
Beispiel #6
0
 private static extern bool gpuDeviceInfoSupports(IntPtr device, GpuFeature feature);