https://github.com/dmaivel/glblas
A software library containing BLAS functions written in OpenGL fragment shaders
https://github.com/dmaivel/glblas
blas blas-kernels blas-libraries blas-library linear-algebra matrix-multiplication
Last synced: 3 months ago
JSON representation
A software library containing BLAS functions written in OpenGL fragment shaders
- Host: GitHub
- URL: https://github.com/dmaivel/glblas
- Owner: dmaivel
- License: mit
- Created: 2024-05-05T18:14:15.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-28T00:08:12.000Z (about 1 year ago)
- Last Synced: 2025-03-29T19:04:03.953Z (4 months ago)
- Topics: blas, blas-kernels, blas-libraries, blas-library, linear-algebra, matrix-multiplication
- Language: C
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# glBLAS 
A software library containing BLAS functions written in OpenGL fragment shaders.
Write-up @ https://dmaivel.com/posts/outperform-cublas-with-opengl/
## Getting started
The following libraries are required for building `glBLAS`:
- libepoxy
- EGL```bash
git clone https://github.com/dmaivel/glBLAS.git
cd glBLAS
make
```### Usage
For use in projects, simply include `glblas.c` and `glblas.h`, and link with `epoxy` & `m`.
## Kernels
- Level 1
- sswap
- sscal
- scopy
- saxpy
- sdot
- sasum
- Level 3
- sgemm