1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| #ifndef DETECTION_LAYER_H
| #define DETECTION_LAYER_H
|
| typedef struct {
| int batch;
| int h,w,c;
| int n;
| int size;
| int stride;
|
| float *filters;
| float *filter_updates;
| float *filter_momentum;
|
| float *biases;
| float *bias_updates;
| float *bias_momentum;
|
| float *col_image;
| float *delta;
| float *output;
|
| #ifdef GPU
| cl_mem filters_cl;
| cl_mem filter_updates_cl;
| cl_mem filter_momentum_cl;
|
| cl_mem biases_cl;
| cl_mem bias_updates_cl;
| cl_mem bias_momentum_cl;
|
| cl_mem col_image_cl;
| cl_mem delta_cl;
| cl_mem output_cl;
| #endif
|
| ACTIVATION activation;
| } convolutional_layer;
|
| #endif
|
|