81{
82 struct Stat
83 {
85 uint64_t count = 0;
86 uint64_t max = 0;
87 uint64_t min = std::numeric_limits<uint64_t>::max();
88
89 void accumulate(uint64_t val)
90 {
92 count++;
93 max = std::max(max, val);
94 min = std::min(min, val);
95 }
96 };
97
100
101 auto &exec_data =
root[
"Execution_Data"] = Json::Value{Json::objectValue};
102
103
104 {
105 std::unordered_map<std::string, Stat> mem_stats;
106 for (const auto &recorder : recorders)
107 {
108 for (const auto &evt : recorder->counter_events())
109 {
110 auto &mem_stat = mem_stats[evt.name];
111 uint64_t val = std::stoull(evt.values.at("value"));
112 mem_stat.accumulate(val);
113 }
114 }
115
116 auto &mem = exec_data["memory"] = Json::Value{Json::objectValue};
117 for (const auto &[key, val] : mem_stats)
118 {
119 mem[key]["Avg_Size"] = val.sum / val.count;
120 mem[key]["Max_Size"] = val.max;
121 mem[key]["Min_Size"] = val.min;
122 mem[key]["Runtime"] = "NA";
123 }
124 }
125
126
127 {
128
129
130
131
132
133 std::unordered_map<std::string, std::unordered_map<std::string, Stat>> stats;
134 std::unordered_map<std::string, std::unordered_map<std::string, uint64_t>> begin_timestamps;
135 for (const auto &recorder : recorders)
136 {
137 for (const auto &evt : recorder->duration_events())
138 {
139 std::string evt_name = getLabel(*evt);
140 std::string evt_tid = getBackend(*evt);
141
142 auto &stat = stats[evt_tid][evt_name];
143 auto &begin_ts = begin_timestamps[evt_tid][evt_name];
144 uint64_t timestamp = std::stoull(evt->ts);
145 if (evt->ph == "B")
146 {
147 if (begin_ts != 0)
148 throw std::runtime_error{"Invalid Data"};
149 begin_ts = timestamp;
150 }
151 else if (evt->ph == "E")
152 {
153 if (begin_ts == 0 || timestamp < begin_ts)
154 throw std::runtime_error{"Invalid Data"};
155 stat.accumulate(timestamp - begin_ts);
156 begin_ts = 0;
157 }
158 else
159 throw std::runtime_error{"Invalid Data - invalid value for \"ph\" : \"" + evt->ph + "\""};
160 }
161 }
162
163 for (const auto &kv : begin_timestamps)
164 for (const auto &kv2 : kv.second)
165 if (kv2.second != 0)
166 throw
std::runtime_error{
"Invalid Data - B and E pair does not match."};
167
168 for (const auto &[tid, stat_map] : stats)
169 {
170 auto &json_tid = exec_data[tid] = Json::Value{Json::objectValue};
171 for (const auto &[name, val] : stat_map)
172 {
173 json_tid[name]["Avg_Time"] = val.sum / val.count;
174 json_tid[name]["Max_Time"] = val.max;
175 json_tid[name]["Min_Time"] = val.min;
176 json_tid[name]["Runtime"] = tid;
177 }
178 }
179 }
180
182}
#define SNPE_JSON_SCHEMA_VERSION
Version of SNPE format In version 1.
Op * root(Op *)
Return the root Op from a given Op node.