TargetArchsHasEqualOrLessPtx Method |
http://www.emgu.com
Check if the GPU module is targeted for equal or less PTX version
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static bool HasEqualOrLessPtx(
int major,
int minor
)
Public Shared Function HasEqualOrLessPtx (
major As Integer,
minor As Integer
) As Boolean
public:
static bool HasEqualOrLessPtx(
int major,
int minor
)
static member HasEqualOrLessPtx :
major : int *
minor : int -> bool
Parameters
- major
- Type: SystemInt32
The major version - minor
- Type: SystemInt32
The minor version
Return Value
Type:
BooleanTrue if the GPU module is targeted for equal or less PTX version.
See Also