| 88 | } |
| 89 | |
| 90 | TfLiteStatus LogEval(TfLiteContext* context, TfLiteNode* node) { |
| 91 | return EvalNumeric(context, node, std::log); |
| 92 | } |
| 93 | |
| 94 | TfLiteStatus SqrtEval(TfLiteContext* context, TfLiteNode* node) { |
| 95 | return EvalNumeric(context, node, std::sqrt); |
nothing calls this directly
no test coverage detected