Ejemplo n.º 1
0
 def timed(msg):
     if self.rank == 0 and self.verbose >= 1:
         print(colorize(msg, color='magenta'))
         start_time = time.time()
         yield
         print(colorize("done in %.3f seconds" % (time.time() - start_time), color='magenta'))
     else:
         yield
 def timed(msg):
     if self.verbose >= 1:
         print(colorize(msg, color='magenta'))
         start_time = time.time()
         yield
         print(colorize("done in {:.3f} seconds".format((time.time() - start_time)),
                            color='magenta'))
     else:
         yield