| 26 | |
| 27 | inline int NumDimensions(const TfLiteTensor* t) { return t->dims->size; } |
| 28 | inline int SizeOfDimension(const TfLiteTensor* t, int dim) { |
| 29 | return t->dims->data[dim]; |
| 30 | } |
| 31 | |
| 32 | inline const TfLiteTensor* GetInput(TfLiteContext* context, TfLiteNode* node, |
| 33 | int index) { |
no outgoing calls
no test coverage detected