QMCPACK
AccelBLAS_OMPTarget.hpp File Reference
+ Include dependency graph for AccelBLAS_OMPTarget.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  BLASHandle< PlatformKind::OMPTARGET >
 

Namespaces

 qmcplusplus
 helper functions for EinsplineSetBuilder
 
 qmcplusplus::compute
 
 qmcplusplus::compute::BLAS
 

Functions

template<typename T >
void gemm (BLASHandle< PlatformKind::OMPTARGET > &handle, const char transa, const char transb, int m, int n, int k, const T &alpha, const T *A, int lda, const T *B, int ldb, const T &beta, T *C, int ldc)
 
template<typename T >
void gemm_batched (BLASHandle< PlatformKind::OMPTARGET > &handle, const char transa, const char transb, int m, int n, int k, const T &alpha, const T *const A[], int lda, const T *const B[], int ldb, const T &beta, T *const C[], int ldc, int batchCount)
 
template<typename T >
void gemv (BLASHandle< PlatformKind::OMPTARGET > &handle, const char trans, const int m, const int n, const T &alpha, const T *const A, const int lda, const T *const x, const int incx, const T &beta, T *const y, const int incy)
 
template<typename T >
void gemv_batched (BLASHandle< PlatformKind::OMPTARGET > &handle, const char trans, const int m, const int n, const T *alpha, const T *const A[], const int lda, const T *const x[], const int incx, const T *beta, T *const y[], const int incy, const int batch_count)
 
template<typename T >
void ger (BLASHandle< PlatformKind::OMPTARGET > &handle, const int m, const int n, const T &alpha, const T *const x, const int incx, const T *const y, const int incy, T *const A, const int lda)
 
template<typename T >
void ger_batched (BLASHandle< PlatformKind::OMPTARGET > &handle, const int m, const int n, const T *alpha, const T *const x[], const int incx, const T *const y[], const int incy, T *const A[], const int lda, const int batch_count)
 
template<typename T >
void copy_batched (BLASHandle< PlatformKind::OMPTARGET > &handle, const int n, const T *const x[], const int incx, T *const y[], const int incy, const int batch_count)