From cd2bdec09030edf7da79ecdeb38d908c106850b3 Mon Sep 17 00:00:00 2001 From: AlexeyAB <alexeyab84@gmail.com> Date: Fri, 23 Feb 2018 12:05:31 +0000 Subject: [PATCH] Updated to CUDA 9.1. And fixed no_gpu dependecies. --- src/convolutional_layer.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/convolutional_layer.h b/src/convolutional_layer.h index 970aa10..da98dce 100644 --- a/src/convolutional_layer.h +++ b/src/convolutional_layer.h @@ -20,7 +20,7 @@ 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); +void cudnn_convolutional_setup(layer *l, int cudnn_preference); #endif #endif -- Gitblit v1.10.0