darknet  v3
batchnorm_layer.h
Go to the documentation of this file.
1 #ifndef BATCHNORM_LAYER_H
2 #define BATCHNORM_LAYER_H
3 
4 #include "image.h"
5 #include "layer.h"
6 #include "network.h"
7 
8 layer make_batchnorm_layer(int batch, int w, int h, int c);
11 
12 #ifdef GPU
13 void forward_batchnorm_layer_gpu(layer l, network net);
14 void backward_batchnorm_layer_gpu(layer l, network net);
15 void pull_batchnorm_layer(layer l);
16 void push_batchnorm_layer(layer l);
17 #endif
18 
19 #endif
void backward_batchnorm_layer(layer l, network net)
void forward_batchnorm_layer(layer l, network net)
layer make_batchnorm_layer(int batch, int w, int h, int c)
Definition: darknet.h:119