src/fmat.c: comment out asserts
authorPaul Brossier <piem@piem.org>
Tue, 16 Feb 2016 20:59:00 +0000 (21:59 +0100)
committerPaul Brossier <piem@piem.org>
Tue, 16 Feb 2016 20:59:00 +0000 (21:59 +0100)
src/fmat.c

index 8dd3bdc..0187928 100644 (file)
@@ -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);