CUBLAS Library Version

I want to confirm the cublas version that i am using.
I used cublasGetVersion() function and it returns version = 5000.

What this 5000 represents? Is it version 5.0

Thank you for alerting us to the omission of the version number encoding from the documentation of the cublasGetVersion() function.

The CUBLAS version number returned by cublasGetVersion() is encoded as a decimal integer computed as

major version number * 1000 + minor version number * 10

For example, 4010 corresponds to version 4.1, 4020 corresponds to version 4.2, and 5000 corresponds to version 5.0.