[maxpool1d] do not call debug in _do
authorPaul Brossier <piem@piem.org>
Tue, 29 Jan 2019 02:08:48 +0000 (03:08 +0100)
committerPaul Brossier <piem@piem.org>
Tue, 29 Jan 2019 02:08:48 +0000 (03:08 +0100)
src/ai/maxpool1d.c

index 8e53c4b..beeee0e 100644 (file)
@@ -83,8 +83,6 @@ void aubio_maxpool1d_do(aubio_maxpool1d_t *c, aubio_tensor_t *input_tensor,
   uint_t i, j, a;
   AUBIO_ASSERT(c && input_tensor && output_tensor);
 
-  //aubio_maxpool1d_debug(c, input_tensor);
-
   for (j = 0; j < output_tensor->shape[1]; j++) {
     for (i = 0; i < output_tensor->shape[0]; i++) {
       uint_t stride_i = i * c->pool_size;