MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / PrintTfLiteIntVector

Function PrintTfLiteIntVector

tensorflow/lite/optional_debug_tools.cc:26–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26void 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
37const char* TensorTypeName(TfLiteType type) {
38 switch (type) {

Callers 1

PrintInterpreterStateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected