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

Function PrintIntVector

tensorflow/lite/optional_debug_tools.cc:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

PrintInterpreterStateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected