| 108 | } |
| 109 | |
| 110 | void TimerMap::print_impl(std::ostream& os, |
| 111 | unsigned const width, |
| 112 | unsigned indent) const |
| 113 | { |
| 114 | if (this->timer().samples()) |
| 115 | print_timer(os, this->key(), this->timer(), width, indent++); |
| 116 | for (auto const& t : m_subscopes) |
| 117 | t.print_impl(os, width, indent); |
| 118 | } |
| 119 | |
| 120 | } // namespace lbann |
no test coverage detected