An open API service indexing awesome lists of open source software.

https://github.com/ysh329/deep-learning-operator

implementation, benchmark, optimization
https://github.com/ysh329/deep-learning-operator

deep-learning deep-learning-models deep-neural-network operator optimization-algorithms

Last synced: 8 months ago
JSON representation

implementation, benchmark, optimization

Awesome Lists containing this project

README

          

# operator

## BLAS

### gemv

- `y := alpha*A*x + beta*y`
- `y := alpha*A'*x + beta*y`
- `y := alpha*conjg(A')*x + beta*y` (not supported)

Reference: [BLAS and Sparse BLAS Routines | Intel® Math Kernel Library for C](https://software.intel.com/en-us/mkl-developer-reference-c-blas-and-sparse-blas-routines)