| 100 | } |
| 101 | |
| 102 | TfLiteStatus SquareEval(TfLiteContext* context, TfLiteNode* node) { |
| 103 | return EvalNumeric(context, node, [](float f) { return f * f; }); |
| 104 | } |
| 105 | |
| 106 | TfLiteStatus LogicalNotEval(TfLiteContext* context, TfLiteNode* node) { |
| 107 | return EvalLogical(context, node, [](bool v) { return !v; }); |
nothing calls this directly
no test coverage detected