#include "activation_layer.h"
#include "utils.h"
#include "cuda.h"
#include "blas.h"
#include "gemm.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Go to the source code of this file.
Functions | |
void | backward_activation_layer (layer l, network_state state) |
void | forward_activation_layer (layer l, network_state state) |
layer | make_activation_layer (int batch, int inputs, ACTIVATION activation) |
void backward_activation_layer | ( | layer | l, |
network_state | state | ||
) |
Definition at line 44 of file activation_layer.c.
void forward_activation_layer | ( | layer | l, |
network_state | state | ||
) |
Definition at line 38 of file activation_layer.c.
layer make_activation_layer | ( | int | batch, |
int | inputs, | ||
ACTIVATION | activation | ||
) |
Definition at line 12 of file activation_layer.c.