70 NoTranspose=0, Transpose=1, ConjugateTranspose=2
78 UpperTriangle=0, LowerTriangle=1
86 UnitTriangular=0, NotUnitTriangular=1
95 NL_HOST_MEMORY, NL_DEVICE_MEMORY
107 typedef void* (*FUNPTR_malloc)(
170 NLBlas_t blas,
int n,
const double *x,
int incx,
double *y,
int incy
183 NLBlas_t blas,
int n,
double a,
double *x,
int incx
201 int n,
const double *x,
int incx,
const double *y,
int incy
214 NLBlas_t blas,
int n,
const double *x,
int incx
232 double a,
const double *x,
int incx,
double *y,
int incy
246 const double* x,
const double* y,
double* z
287 const double *A,
int ldA,
const double *x,
int incx,
288 double beta,
double *y,
int incy
450#define NL_NEW_VECTOR(blas, memtype, dim) \
451 (double*)blas->Malloc(blas,memtype,(size_t)(dim)*sizeof(double))
460#define NL_DELETE_VECTOR(blas, memtype, dim, ptr) \
461 blas->Free(blas,memtype,(size_t)(dim)*sizeof(double),ptr)
uint64_t NLulong
A 8-bytes unsigned integer.
unsigned char NLboolean
A truth value (NL_TRUE or NL_FALSE).
void(* FUNPTR_dscal)(NLBlas_t blas, int n, double a, double *x, int incx)
Scales a vector.
MatrixTriangle
Specifies which triangular part of a matrix should be used.
MatrixTranspose
Specifies whether matrix should be transposed.
NLAPI void NLAPIENTRY nlBlasResetStats(NLBlas_t blas)
Resets the statistics associated with a BLAS context.
void(* FUNPTR_memcpy)(NLBlas_t blas, void *to, NLmemoryType to_type, void *from, NLmemoryType from_type, size_t size)
Copies a bloc of memory.
void(* FUNPTR_daxpy)(NLBlas_t blas, int n, double a, const double *x, int incx, double *y, int incy)
Computes a linear combination of two vectors.
MatrixUnitTriangular
Specifies which triangular part of a matrix should be used.
void *(* FUNPTR_malloc)(NLBlas_t blas, NLmemoryType type, size_t size)
Allocates memory in host or in device.
NLAPI NLulong NLAPIENTRY nlBlasMaxUsedRam(NLBlas_t blas, NLmemoryType type)
Gets the high mark of used amount of memory computed since creation of the BLAS abstaction layer or s...
struct NLBlas * NLBlas_t
A handle to a BLAS abstraction layer.
void(* FUNPTR_dtpsv)(NLBlas_t blas, MatrixTriangle uplo, MatrixTranspose trans, MatrixUnitTriangular diag, int n, const double *AP, double *x, int incx)
Solves a linear system.
NLAPI NLulong NLAPIENTRY nlBlasUsedRam(NLBlas_t blas, NLmemoryType type)
Gets the currently used amount of memory computed since creation of the BLAS abstaction layer or sinc...
NLAPI void NLAPIENTRY nlBlasShowStats(NLBlas_t blas)
Displays the statistics associated with a BLAS context.
void(* FUNPTR_dcopy)(NLBlas_t blas, int n, const double *x, int incx, double *y, int incy)
Copies a vector.
double(* FUNPTR_dnrm2)(NLBlas_t blas, int n, const double *x, int incx)
Computes the norm of a vector.
void(* FUNPTR_reset_stats)(NLBlas_t blas)
Resets the statistics associated with a BLAS context.
void(* FUNPTR_free)(NLBlas_t blas, NLmemoryType type, size_t size, void *ptr)
Frees memory from host or from device.
NLmemoryType
Specifies on which type of memory a function should be applied.
NLAPI NLboolean NLAPIENTRY nlBlasHasUnifiedMemory(NLBlas_t blas)
Tests whether BLAS device uses the same address space as the CPU.
NLAPI NLBlas_t NLAPIENTRY nlHostBlas(void)
Gets a pointer to the BLAS abstraction layer for BLAS operation on the host CPU.
double(* FUNPTR_ddot)(NLBlas_t blas, int n, const double *x, int incx, const double *y, int incy)
Computes the dot product between two vectors.
NLAPI double NLAPIENTRY nlBlasGFlops(NLBlas_t blas)
Gets the number of floating point operations per seconds computed since creation of the BLAS abstacti...
void(* FUNPTR_show_stats)(NLBlas_t blas)
Displays the statistics associated with a BLAS context.
void(* FUNPTR_dgemv)(NLBlas_t blas, MatrixTranspose trans, int m, int n, double alpha, const double *A, int ldA, const double *x, int incx, double beta, double *y, int incy)
Computes a matrix-vector product.
void(* FUNPTR_memset)(NLBlas_t blas, void *to, NLmemoryType to_type, int c, size_t size)
Sets a bloc of memory.
void(* FUNPTR_dmul)(NLBlas_t blas, int n, const double *x, const double *y, double *z)
Component-wise multiplication.
Some macros and functions used internally by OpenNL.