aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-09 15:01:34 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-09 15:01:34 -0700
commit3be8d6291c95bada9576963770bb9c988708ecda (patch)
treec4d486f72e15a404340710ad34c125f585f6a3b9 /include
parent672079795d607270638103dd93fa453645e5a38a (diff)
fix: indexing bug associated to columns in gemv function
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 ecce28e..b148065 100644
--- a/include/libmath.h
+++ b/include/libmath.h
@@ -160,8 +160,8 @@ int blas·argmin(int len, double *x, int inc);
/* level 2 */
void blas·tpmv(blas·Flag f, int n, double *m, double *x);
-void blas·tpsv(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) ;
+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);
void blas·syr(int nrow, int ncol, double a, double *x, double *m);