#include "shortcut_layer.h"#include "cuda.h"#include "blas.h"#include <stdio.h>#include <assert.h>
Go to the source code of this file.
Functions | |
| void | backward_shortcut_layer (const layer l, network_state state) |
| void | forward_shortcut_layer (const layer l, network_state state) |
| layer | make_shortcut_layer (int batch, int index, int w, int h, int c, int w2, int h2, int c2) |
| void backward_shortcut_layer | ( | const layer | l, |
| network_state | state | ||
| ) |
Definition at line 46 of file shortcut_layer.c.
| void forward_shortcut_layer | ( | const layer | l, |
| network_state | state | ||
| ) |
Definition at line 39 of file shortcut_layer.c.
| layer make_shortcut_layer | ( | int | batch, |
| int | index, | ||
| int | w, | ||
| int | h, | ||
| int | c, | ||
| int | w2, | ||
| int | h2, | ||
| int | c2 | ||
| ) |
Definition at line 7 of file shortcut_layer.c.