Mitch Richling: Example BLAS/LAPACK Programs
Author: | Mitch Richling |
Updated: | 2023-11-15 |
Table of Contents
1. Introduction
You will find several simple examples of programs to get you started with the BLAS and LAPACK APIs commonly used for scientific programming tasks.
Get it all on github: https://github.com/richmit/ex-blas-lapack/
2. BLAS
blas1C.c
&blas1F.f
- Simple examples of some of the level 1 BLAS functions
blas2C.c
&blas2F.f
- Simple examples of some of the level 2 BLAS functions.
blas2bC.c
- This is the same as
blas2C.c
, but uses Fortran-style column major order. blas3C.c
&blas3F.f
- Simple examples of some of the level 3 BLAS functions (with row/column order options in the CBLAS).