From 240517e5a4edab0e8934b2db3b45db5590f04258 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 16 Feb 2016 21:59:00 +0100 Subject: [PATCH] src/fmat.c: comment out asserts --- src/fmat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fmat.c b/src/fmat.c index 8dd3bdc8..0187928f 100644 --- a/src/fmat.c +++ b/src/fmat.c @@ -156,8 +156,10 @@ void fmat_copy(fmat_t *s, fmat_t *t) { void fmat_vecmul(fmat_t *s, fvec_t *scale, fvec_t *output) { uint_t k; +#if 0 assert(s->height == output->length); assert(s->length == scale->length); +#endif #if !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) uint_t j; fvec_zeros(output); -- 2.11.0