focal (3) cudaDriverGetVersion.3.gz

NAME
Version Management - Functions cudaError_t cudaDriverGetVersion (int *driverVersion) Returns the latest version of CUDA supported by the driver. __cudart_builtin__ cudaError_t cudaRuntimeGetVersion (int *runtimeVersion) Returns the CUDA Runtime version.
Function Documentation
cudaError_t cudaDriverGetVersion (int * driverVersion) Returns in *driverVersion the latest version of CUDA supported by the driver. The version is returned as (1000 major + 10 minor). For example, CUDA 9.2 would be represented by 9020. If no driver is installed, then 0 is returned as the driver version. This function automatically returns cudaErrorInvalidValue if driverVersion is NULL. Parameters: driverVersion - Returns the CUDA driver version. Returns: cudaSuccess, cudaErrorInvalidValue Note: Note that this function may also return error codes from previous, asynchronous launches. See also: cudaRuntimeGetVersion, cuDriverGetVersion __cudart_builtin__ cudaError_t cudaRuntimeGetVersion (int * runtimeVersion) Returns in *runtimeVersion the version number of the current CUDA Runtime instance. The version is returned as (1000 major + 10 minor). For example, CUDA 9.2 would be represented by 9020. This function automatically returns cudaErrorInvalidValue if the runtimeVersion argument is NULL. Parameters: runtimeVersion - Returns the CUDA Runtime version. Returns: cudaSuccess, cudaErrorInvalidValue See also: cudaDriverGetVersion, cuDriverGetVersion
Author
Generated automatically by Doxygen from the source code.