| 1133 | } |
| 1134 | |
| 1135 | TfLiteRegistration* Register_LOGISTIC_REF() { |
| 1136 | static TfLiteRegistration r = { |
| 1137 | activations::Init, activations::Free, |
| 1138 | activations::SigmoidPrepare<activations::kReference>, |
| 1139 | activations::SigmoidEval<activations::kReference>}; |
| 1140 | return &r; |
| 1141 | } |
| 1142 | |
| 1143 | TfLiteRegistration* Register_LOGISTIC_GENERIC_OPT() { |
| 1144 | static TfLiteRegistration r = { |
no outgoing calls
no test coverage detected