mirror of https://github.com/AlexeyAB/darknet.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
654 B
24 lines
654 B
#ifndef ROUTE_LAYER_H |
|
#define ROUTE_LAYER_H |
|
#include "network.h" |
|
#include "layer.h" |
|
|
|
typedef layer route_layer; |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
route_layer make_route_layer(int batch, int n, int *input_layers, int *input_size, int groups, int group_id); |
|
void forward_route_layer(const route_layer l, network_state state); |
|
void backward_route_layer(const route_layer l, network_state state); |
|
void resize_route_layer(route_layer *l, network *net); |
|
|
|
#ifdef GPU |
|
void forward_route_layer_gpu(const route_layer l, network_state state); |
|
void backward_route_layer_gpu(const route_layer l, network_state state); |
|
#endif |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
#endif
|
|
|