From 926e6ccca0687ad6adf4ef82ddd67f90df8e5afe Mon Sep 17 00:00:00 2001 From: Joseph Redmon <pjreddie@gmail.com> Date: Thu, 23 Jun 2016 05:29:57 +0000 Subject: [PATCH] other yool --- 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