Compiles for OpenCV 3.1

This commit is contained in:
Anup
2016-12-12 13:07:34 +05:30
parent f563db5624
commit f13954ac4c
29 changed files with 321 additions and 85 deletions

View File

@@ -10,8 +10,14 @@ void forward_batchnorm_layer(layer l, network_state state);
void backward_batchnorm_layer(layer l, network_state state);
#ifdef GPU
#ifdef __cplusplus
extern "C" {
#endif
void forward_batchnorm_layer_gpu(layer l, network_state state);
void backward_batchnorm_layer_gpu(layer l, network_state state);
#ifdef __cplusplus
}
#endif
void pull_batchnorm_layer(layer l);
void push_batchnorm_layer(layer l);
#endif