| 230 | } |
| 231 | |
| 232 | TfLiteStatus PrepareAny(TfLiteContext* context, TfLiteNode* node) { |
| 233 | TF_LITE_ENSURE_EQ(context, NumInputs(node), 2); |
| 234 | const TfLiteTensor* input = GetInput(context, node, 0); |
| 235 | TF_LITE_ENSURE_EQ(context, input->type, kTfLiteBool); |
| 236 | return PrepareSimple(context, node); |
| 237 | } |
| 238 | |
| 239 | TfLiteStatus PrepareMeanOrSum(TfLiteContext* context, TfLiteNode* node) { |
| 240 | TF_LITE_ENSURE_OK(context, PrepareSimple(context, node)); |
nothing calls this directly
no test coverage detected