99 problems

This commit is contained in:
Joseph Redmon
2014-12-18 15:46:45 -08:00
parent 19d3ae7267
commit f88baf4a3a
8 changed files with 34 additions and 13 deletions

View File

@ -8,8 +8,10 @@ typedef struct{
float probability;
float scale;
float *rand;
float *output;
#ifdef GPU
cl_mem rand_cl;
cl_mem output_cl;
#endif
} dropout_layer;