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
- Host: GitHub
- URL: https://github.com/ysh329/deep-learning-operator
- Owner: ysh329
- License: lgpl-3.0
- Created: 2019-04-05T05:03:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-27T16:44:32.000Z (about 7 years ago)
- Last Synced: 2025-02-09T04:12:57.634Z (over 1 year ago)
- Topics: deep-learning, deep-learning-models, deep-neural-network, operator, optimization-algorithms
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)