aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-10 14:22:50 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-10 14:22:50 -0700
commit65fe4a1ddd852c9c702ae008c3b880a20b84d8e9 (patch)
tree1363fee5e6af6a3902925981df4c02b0f85134cc /include
parenteaa498806479e30a6a825afaff63e2a1fe5702f9 (diff)
begun work on making level 2 strided
Diffstat (limited to 'include')
-rw-r--r--include/libmath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libmath.h b/include/libmath.h
index b148065..5a7dc4e 100644
--- a/include/libmath.h
+++ b/include/libmath.h
@@ -160,7 +160,7 @@ int blas·argmin(int len, double *x, int inc);
/* level 2 */
void blas·tpmv(blas·Flag f, int n, double *m, double *x);
-error blas·gemv(int nrow, int ncol, double a, double *m, double *x, double b, double *y) ;
+error blas·gemv(int nrow, int ncol, double a, double *m, int incm, double *x, int incx, double b, double *y, int incy) ;
void blas·tpsv(blas·Flag f, int n, double *m, double *x);
void blas·ger(int nrow, int ncol, double a, double *x, double *y, double *m);
void blas·her(int n, double a, double *x, double *m);