| 96 | } |
| 97 | |
| 98 | TfLiteStatus RsqrtEval(TfLiteContext* context, TfLiteNode* node) { |
| 99 | return EvalNumeric(context, node, [](float f) { return 1.f / std::sqrt(f); }); |
| 100 | } |
| 101 | |
| 102 | TfLiteStatus SquareEval(TfLiteContext* context, TfLiteNode* node) { |
| 103 | return EvalNumeric(context, node, [](float f) { return f * f; }); |
nothing calls this directly
no test coverage detected