From 6b739739968a0cc9b4d9909d8f4ffec30f4461dd Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Fri, 1 May 2020 16:26:24 -0700 Subject: moved to static build with musl and integrated cscopes into dev tools --- sys/libmath/blas.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/libmath/blas.c') diff --git a/sys/libmath/blas.c b/sys/libmath/blas.c index a672101..c2f7e6c 100644 --- a/sys/libmath/blas.c +++ b/sys/libmath/blas.c @@ -1,6 +1,6 @@ #include #include -#include +#include #include @@ -64,6 +64,7 @@ blas·scalevec(int len, double *x, double a) * Daxpy * y = ax + y */ + static void @@ -416,7 +417,7 @@ main() double *x, *y, *m[3]; double res[2], tprof[2]; - openblas_set_num_threads(1); + // openblas_set_num_threads(1); x = malloc(sizeof(*x)*NCOL); y = malloc(sizeof(*x)*NCOL); -- cgit v1.2.1