From a19604bf5fed9ca1c708e96bfe4879144b33b90f Mon Sep 17 00:00:00 2001 From: Joseph Redmon <pjreddie@gmail.com> Date: Thu, 08 Sep 2016 05:52:11 +0000 Subject: [PATCH] ok back --- src/convolutional_layer.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/convolutional_layer.h b/src/convolutional_layer.h index 3d52b22..972b765 100644 --- a/src/convolutional_layer.h +++ b/src/convolutional_layer.h @@ -19,6 +19,9 @@ void add_bias_gpu(float *output, float *biases, int batch, int n, int size); void backward_bias_gpu(float *bias_updates, float *delta, int batch, int n, int size); +#ifdef CUDNN +void cudnn_convolutional_setup(layer *l); +#endif #endif convolutional_layer make_convolutional_layer(int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation, int batch_normalization, int binary, int xnor); -- Gitblit v1.10.0