| 24 | } |
| 25 | |
| 26 | void PrintTfLiteIntVector(const TfLiteIntArray* v) { |
| 27 | if (!v) { |
| 28 | printf(" (null)\n"); |
| 29 | return; |
| 30 | } |
| 31 | for (int k = 0; k < v->size; k++) { |
| 32 | printf(" %d", v->data[k]); |
| 33 | } |
| 34 | printf("\n"); |
| 35 | } |
| 36 | |
| 37 | const char* TensorTypeName(TfLiteType type) { |
| 38 | switch (type) { |
no outgoing calls
no test coverage detected