aboutsummaryrefslogtreecommitdiff
path: root/sys/libmath/blas.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-03 20:20:22 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-03 20:20:22 -0700
commit4b2ea2ca00eea7feea036b7642c0c1443b8f77a1 (patch)
tree5cdd635bd8240a6857258a056e3932e00966bfff /sys/libmath/blas.c
parent6b739739968a0cc9b4d9909d8f4ffec30f4461dd (diff)
removed buggy qsort header and implemented myself
Diffstat (limited to 'sys/libmath/blas.c')
-rw-r--r--sys/libmath/blas.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/libmath/blas.c b/sys/libmath/blas.c
index c2f7e6c..bbbe1c8 100644
--- a/sys/libmath/blas.c
+++ b/sys/libmath/blas.c
@@ -3,7 +3,6 @@
#include <vendor/blas/cblas.h>
#include <x86intrin.h>
-
#include <time.h>
// -----------------------------------------------------------------------
@@ -382,7 +381,6 @@ void
blas·gemm(int n1, int n2, int n3, double a, double *m1, double *m2, double b, double *m3)
{
int i, j, k, len;
- double prod;
// TODO: Is there anyway this computation can be integrated into the one below?
for (i = 0; i < n1; i++) {