| 42 | return batch * chw + n * hw * (coords + classes + 1) + entry * hw + loc; |
| 43 | } |
| 44 | static inline float logistic_activate(float x) |
| 45 | { |
| 46 | return 1. / (1. + exp(-x)); |
| 47 | } |
| 48 | |
| 49 | void logit_activate_array(float* x, const int n) |
| 50 | { |
no outgoing calls
no test coverage detected