| 17 | namespace tflite { |
| 18 | |
| 19 | void PrintIntVector(const std::vector<int>& v) { |
| 20 | for (const auto& it : v) { |
| 21 | printf(" %d", it); |
| 22 | } |
| 23 | printf("\n"); |
| 24 | } |
| 25 | |
| 26 | void PrintTfLiteIntVector(const TfLiteIntArray* v) { |
| 27 | if (!v) { |
no outgoing calls
no test coverage detected