| 1102 | } |
| 1103 | |
| 1104 | TfLiteRegistration* Register_TANH_REF() { |
| 1105 | static TfLiteRegistration r = { |
| 1106 | activations::Init, activations::Free, |
| 1107 | activations::TanhPrepare<activations::kReference>, |
| 1108 | activations::TanhEval<activations::kReference>}; |
| 1109 | return &r; |
| 1110 | } |
| 1111 | |
| 1112 | TfLiteRegistration* Register_TANH_GENERIC_OPT() { |
| 1113 | static TfLiteRegistration r = { |
no outgoing calls
no test coverage detected