| 40 | }; |
| 41 | |
| 42 | TfLiteStatus UseDynamicOutputTensors(TfLiteContext* context, TfLiteNode* node) { |
| 43 | for (int i = 0; i < NumOutputs(node); ++i) { |
| 44 | SetTensorToDynamic(GetOutput(context, node, i)); |
| 45 | } |
| 46 | return kTfLiteOk; |
| 47 | } |
| 48 | |
| 49 | template <typename T> |
| 50 | void GetSizeSplitsVector(const TfLiteTensor* size_splits, |
no test coverage detected