| 80 | } |
| 81 | |
| 82 | TfLiteStatus SinEval(TfLiteContext* context, TfLiteNode* node) { |
| 83 | return EvalNumeric(context, node, std::sin); |
| 84 | } |
| 85 | |
| 86 | TfLiteStatus CosEval(TfLiteContext* context, TfLiteNode* node) { |
| 87 | return EvalNumeric(context, node, std::cos); |
nothing calls this directly
no test coverage detected