imate
C++/CUDA Reference
|
#include <cublas_v2.h>
Go to the source code of this file.
Namespaces | |
cublas_interface | |
A collection of templates to wrapper cublas functions. | |
Functions | |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXgemv (cublasHandle_t handle, cublasOperation_t trans, int m, int n, const DataType *alpha, const DataType *A, int lda, const DataType *x, int incx, const DataType *beta, DataType *y, int incy) |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXcopy (cublasHandle_t handle, int n, const DataType *x, int incx, DataType *y, int incy) |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXaxpy (cublasHandle_t handle, int n, const DataType *alpha, const DataType *x, int incx, DataType *y, int incy) |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXdot (cublasHandle_t handle, int n, const DataType *x, int incx, const DataType *y, int incy, DataType *result) |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXnrm2 (cublasHandle_t handle, int n, const DataType *x, int incx, DataType *result) |
template<typename DataType > | |
cublasStatus_t | cublas_interface::cublasXscal (cublasHandle_t handle, int n, const DataType *alpha, DataType *x, int incx) |