From ec3f4d63bcfbec904468aebed5ac74dd09b64c86 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 16 Jan 2019 23:18:13 +0100 Subject: [PATCH] [conv2d] fix debug string --- src/ai/conv2d.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ai/conv2d.c b/src/ai/conv2d.c index ef7d239e..29afbc75 100644 --- a/src/ai/conv2d.c +++ b/src/ai/conv2d.c @@ -199,8 +199,7 @@ void aubio_conv2d_debug(aubio_conv2d_t *c, aubio_tensor_t *input_tensor) c->output_shape[0], c->output_shape[1], c->output_shape[2]); tensor_str = aubio_tensor_get_shape_string(c->kernel); AUBIO_DBG(" (n_params=%d, kernel_shape=(%d, %d)," - " weigths=%s, stride (%d, %d), pad_start [%d, %d]" - " pad_end [%d, %d])\n", + " weigths=%s, stride (%d, %d), pad_start [%d, %d])\n", n_params, c->kernel_shape[0], c->kernel_shape[1], tensor_str, c->stride_shape[0], c->stride_shape[1], -- 2.11.0