CUDA Runtime API (PDF) - CUDA Toolkit v5.5 (older) - Last updated May 11, 2013 - Send Feedback

2.24. Version Management

Functions

cudaError_t cudaDriverGetVersion ( int* driverVersion )
Returns the CUDA driver version.
cudaError_t cudaRuntimeGetVersion ( int* runtimeVersion )
Returns the CUDA Runtime version.

Functions

cudaError_t cudaDriverGetVersion ( int* driverVersion )

Returns the CUDA driver version. Returns in *driverVersion the version number of the installed CUDA driver. If no driver is installed, then 0 is returned as the driver version (via driverVersion). This function automatically returns cudaErrorInvalidValue if the driverVersion argument is NULL.

Note:

Note that this function may also return error codes from previous, asynchronous launches.

See also:

cudaRuntimeGetVersion

Parameters
driverVersion
- Returns the CUDA driver version.
cudaError_t cudaRuntimeGetVersion ( int* runtimeVersion )

Returns the CUDA Runtime version. Returns in *runtimeVersion the version number of the installed CUDA Runtime. This function automatically returns cudaErrorInvalidValue if the runtimeVersion argument is NULL.

See also:

cudaDriverGetVersion

Parameters
runtimeVersion
- Returns the CUDA Runtime version.

CUDA Runtime API (PDF) - CUDA Toolkit v5.5 (older) - Last updated May 11, 2013 - Send Feedback