Commit 8d6f2370 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 7f915595
...@@ -768,9 +768,10 @@ static void print_ins_perf(std::ostream& os, ...@@ -768,9 +768,10 @@ static void print_ins_perf(std::ostream& os,
// print throughput for pointwise instruction // print throughput for pointwise instruction
auto alias_num = ins->get_operator().output_alias({}); auto alias_num = ins->get_operator().output_alias({});
std::string thrpt; std::string thrpt;
if (alias_num != 0) if(alias_num != 0)
{ {
auto size = std::accumulate(inss.begin(), inss.end(), std::size_t{0}, [&](auto init, auto s) { auto size =
std::accumulate(inss.begin(), inss.end(), std::size_t{0}, [&](auto init, auto s) {
return init + s.bytes(); return init + s.bytes();
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment