Class TargetArchs
Gives information about what GPU archs this OpenCV GPU module was compiled for
public static class TargetArchs
- Inheritance
-
TargetArchs
- Inherited Members
Methods
BuildWith(GpuFeature)
Check if the GPU module is build with the specific feature set.
public static extern bool BuildWith(CudaDeviceInfo.GpuFeature featureSet)
Parameters
featureSet
CudaDeviceInfo.GpuFeatureThe feature set to be checked.
Returns
- bool
True if the GPU module is build with the specific feature set.
Has(int, int)
Check if the GPU module is targeted for the specific device version
public static extern bool Has(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for the specific device version.
HasBin(int, int)
Check if the GPU module is targeted for the specific BIN version
public static extern bool HasBin(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for the specific BIN version.
HasEqualOrGreater(int, int)
Check if the GPU module is targeted for equal or greater device version
public static extern bool HasEqualOrGreater(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for equal or greater device version.
HasEqualOrGreaterBin(int, int)
Check if the GPU module is targeted for equal or greater BIN version
public static extern bool HasEqualOrGreaterBin(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for equal or greater BIN version.
HasEqualOrGreaterPtx(int, int)
Check if the GPU module is targeted for equal or greater PTX version
public static extern bool HasEqualOrGreaterPtx(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for equal or greater PTX version.
HasEqualOrLessPtx(int, int)
Check if the GPU module is targeted for equal or less PTX version
public static extern bool HasEqualOrLessPtx(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for equal or less PTX version.
HasPtx(int, int)
Check if the GPU module is targeted for the specific PTX version
public static extern bool HasPtx(int major, int minor)
Parameters
Returns
- bool
True if the GPU module is targeted for the specific PTX version.