[maxpool2d] remove train methods
authorPaul Brossier <piem@piem.org>
Wed, 16 Jan 2019 22:51:22 +0000 (23:51 +0100)
committerPaul Brossier <piem@piem.org>
Wed, 29 Dec 2021 16:51:59 +0000 (11:51 -0500)
src/ai/maxpool2d.c
src/ai/maxpool2d.h

index 9e62857..cb25fec 100644 (file)
@@ -114,9 +114,3 @@ void aubio_maxpool2d_do(aubio_maxpool2d_t *c, aubio_tensor_t *input_tensor,
     }
   }
 }
-
-void aubio_maxpool2d_train(aubio_maxpool2d_t *c,
-    aubio_tensor_t *backprop)
-{
-  AUBIO_ASSERT(c && backprop);
-}
index fb00d93..5786bd0 100644 (file)
@@ -33,8 +33,6 @@ void aubio_maxpool2d_do(aubio_maxpool2d_t *t,
         aubio_tensor_t *input_tensor,
         aubio_tensor_t *activations);
 
-void aubio_maxpool2d_train(aubio_maxpool2d_t *t, aubio_tensor_t *input);
-
 uint_t aubio_maxpool2d_set_weights(aubio_maxpool2d_t *t,
         aubio_tensor_t *kernels);