| 84 | } |
| 85 | |
| 86 | TfLiteStatus CosEval(TfLiteContext* context, TfLiteNode* node) { |
| 87 | return EvalNumeric(context, node, std::cos); |
| 88 | } |
| 89 | |
| 90 | TfLiteStatus LogEval(TfLiteContext* context, TfLiteNode* node) { |
| 91 | return EvalNumeric(context, node, std::log); |
nothing calls this directly
no test coverage detected