|
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXgemv (cublasHandle_t handle, cublasOperation_t trans, int m, int n, const DataType *RESTRICT alpha, const DataType *RESTRICT A, int lda, const DataType *RESTRICT x, int incx, const DataType *RESTRICT beta, DataType *RESTRICT y, int incy) |
| |
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXcopy (cublasHandle_t handle, int n, const DataType *RESTRICT x, int incx, DataType *RESTRICT y, int incy) |
| |
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXaxpy (cublasHandle_t handle, int n, const DataType *RESTRICT alpha, const DataType *RESTRICT x, int incx, DataType *RESTRICT y, int incy) |
| |
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXdot (cublasHandle_t handle, int n, const DataType *RESTRICT x, int incx, const DataType *RESTRICT y, int incy, DataType *RESTRICT result) |
| |
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXnrm2 (cublasHandle_t handle, int n, const DataType *RESTRICT x, int incx, DataType *RESTRICT result) |
| |
| template<typename DataType > |
| cublasStatus_t | cublas_api::cublasXscal (cublasHandle_t handle, int n, const DataType *RESTRICT alpha, DataType *RESTRICT x, int incx) |
| |