darknet  v3
upsample_layer.h
Go to the documentation of this file.
1 #ifndef UPSAMPLE_LAYER_H
2 #define UPSAMPLE_LAYER_H
3 #include "darknet.h"
4 
5 layer make_upsample_layer(int batch, int w, int h, int c, int stride);
8 void resize_upsample_layer(layer *l, int w, int h);
9 
10 #ifdef GPU
11 void forward_upsample_layer_gpu(const layer l, network net);
12 void backward_upsample_layer_gpu(const layer l, network net);
13 #endif
14 
15 #endif
void forward_upsample_layer(const layer l, network net)
layer make_upsample_layer(int batch, int w, int h, int c, int stride)
Definition: upsample_layer.c:7
void backward_upsample_layer(const layer l, network net)
void resize_upsample_layer(layer *l, int w, int h)
Definition: darknet.h:119