aclrtGetVersion
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Description
Returns the version number of acl APIs. The version number is formatted as A.B.C, where A indicates incompatible changes, B indicates new APIs, and C indicates the patch version.
Prototype
aclError aclrtGetVersion(int32_t *majorVersion, int32_t *minorVersion, int32_t *patchVersion)
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
majorVersion |
Output |
Pointer to the major version number. The value starts from 1 and is incremented by 1 with each incompatible API change. |
minorVersion |
Output |
Pointer to the minor version number. The value starts from 0 and is incremented by 1 with each new API. |
patchVersion |
Output |
Pointer to the patch version number. The value starts from 0, indicating that this version has only fixed bugs. The value increases by 1 when majorVersion and minorVersion remain unchanged. When majorVersion and minorVersion increase, the value of patchVersion is 0. |
Returns
0 on success; else, failure. For details, see aclError.