| 76 | } |
| 77 | |
| 78 | TfLiteStatus AbsEval(TfLiteContext* context, TfLiteNode* node) { |
| 79 | return EvalNumeric(context, node, std::abs); |
| 80 | } |
| 81 | |
| 82 | TfLiteStatus SinEval(TfLiteContext* context, TfLiteNode* node) { |
| 83 | return EvalNumeric(context, node, std::sin); |
nothing calls this directly
no test coverage detected