| 66 | } |
| 67 | |
| 68 | inline TfLiteStatus EvalNumeric(TfLiteContext* context, TfLiteNode* node, |
| 69 | float float_func(float)) { |
| 70 | return EvalImpl<float>(context, node, float_func, kTfLiteFloat32); |
| 71 | } |
| 72 | |
| 73 | inline TfLiteStatus EvalLogical(TfLiteContext* context, TfLiteNode* node, |
| 74 | bool bool_func(bool)) { |