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

Function ToString

tensorflow/lite/profiling/profile_summarizer.cc:50–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50std::string ToString(const std::vector<std::string>& str_vector) {
51 std::stringstream stream;
52 stream << "[";
53 bool first = true;
54 for (const auto& s : str_vector) {
55 if (!first) {
56 stream << ", ";
57 } else {
58 first = false;
59 }
60 stream << s;
61 }
62 stream << "]";
63 return stream.str();
64}
65
66OperatorDetails GetOperatorDetails(const tflite::Interpreter& interpreter,
67 int node_index) {

Callers 1

ProcessProfilesMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected