(self, exc_type, exc_val, exc_tb)
| 232 | self.t = time.time() |
| 233 | |
| 234 | def __exit__(self, exc_type, exc_val, exc_tb): |
| 235 | Timer.timer_map[self.name] += time.time() - self.t |
| 236 | if self.print_time: |
| 237 | print(self.name, Timer.timer_map[self.name]) |
| 238 | |
| 239 | |
| 240 | def print_arch(model, model_name='model'): |
nothing calls this directly
no outgoing calls
no test coverage detected