Nadeen Udantha
2018-05-18 ae9fb2abbd8e2b7e079b56bf1cf39754d7c091ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ACTIVATION_LAYER_H
#define ACTIVATION_LAYER_H
 
#include "activations.h"
#include "layer.h"
#include "network.h"
 
layer make_activation_layer(int batch, int inputs, ACTIVATION activation);
 
void forward_activation_layer(layer l, network_state state);
void backward_activation_layer(layer l, network_state state);
 
#ifdef GPU
void forward_activation_layer_gpu(layer l, network_state state);
void backward_activation_layer_gpu(layer l, network_state state);
#endif
 
#endif