projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88e8f52
)
src/fmat.c: using blas, not atlas
author
Paul Brossier
<piem@piem.org>
Sat, 22 Sep 2018 13:39:43 +0000
(15:39 +0200)
committer
Paul Brossier
<piem@piem.org>
Sat, 22 Sep 2018 13:39:43 +0000
(15:39 +0200)
src/fmat.c
patch
|
blob
|
history
diff --git
a/src/fmat.c
b/src/fmat.c
index
307b073
..
9ed3290
100644
(file)
--- a/
src/fmat.c
+++ b/
src/fmat.c
@@
-169,7
+169,7
@@
void fmat_vecmul(const fmat_t *s, const fvec_t *scale, fvec_t *output) {
* s->data[k][j];
}
}
-#elif defined(HAVE_
AT
LAS)
+#elif defined(HAVE_
B
LAS)
for (k = 0; k < s->height; k++) {
output->data[k] = aubio_cblas_dot( s->length, scale->data, 1, s->data[k], 1);
}