[docs]classsync_timer:"""Synchronized timer to count the inference time of `nn.Module.forward` or else. :class:`sync_timer` can be used as a context manager or a decorator. Example as context manager: .. code-block:: python with timer('name'): run() Example as decorator: .. code-block:: python @timer('name') def run(): pass Args: name (str, optional): name of the timer. Defaults to None. flag_env (str, optional): environment variable to check if logging is enabled. Defaults to "TIMER". logger_func (Callable, optional): function to log the result. Defaults to ``print``. Note: Set environment variable ``$flag_env`` to ``1`` to enable logging! default is ``TIMER=1``. """