cublasStatust
cublasStatust is not a standard name in the cuBLAS API; the correct type used to report the result of cuBLAS function calls is cublasStatus_t. This enumeration allows cuBLAS functions to communicate success or various error conditions back to the caller in a uniform way.
The cublasStatus_t type defines several named values. The most common is CUBLAS_STATUS_SUCCESS, which indicates that a
Usage typically involves checking the return value of cuBLAS calls and handling errors accordingly. A common
In summary, cublasStatus_t is the cuBLAS mechanism for conveying the outcome of API calls, with a range