ColossalAI/colossalai/utils/timer.py

161 lines
4.2 KiB
Python
Raw Normal View History

2021-10-28 16:21:23 +00:00
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import time
2022-01-20 05:44:51 +00:00
from typing import Tuple
2021-10-28 16:21:23 +00:00
from .cuda import synchronize
class Timer:
2022-01-21 02:44:30 +00:00
"""A timer object which helps to log the execution times, and provides different tools to assess the times.
"""
2022-01-20 05:44:51 +00:00
2021-10-28 16:21:23 +00:00
def __init__(self):
self._started = False
self._start_time = time.time()
self._elapsed = 0
self._history = []
@property
def has_history(self):
return len(self._history) != 0
2022-03-04 01:35:23 +00:00
@property
def current_time(self) -> float:
synchronize()
return time.time()
2021-10-28 16:21:23 +00:00
def start(self):
2022-03-25 05:02:39 +00:00
"""Firstly synchronize cuda, reset the clock and then start the timer.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
self._elapsed = 0
synchronize()
self._start_time = time.time()
self._started = True
2022-03-04 01:35:23 +00:00
def lap(self):
"""lap time and return elapsed time
"""
return self.current_time - self._start_time
2021-10-28 16:21:23 +00:00
def stop(self, keep_in_history: bool = False):
2022-01-21 02:44:30 +00:00
"""Stop the timer and record the start-stop time interval.
2022-03-25 05:02:39 +00:00
Args:
keep_in_history (bool, optional): Whether does it record into history
each start-stop interval, defaults to False.
Returns:
int: Start-stop interval.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
synchronize()
end_time = time.time()
elapsed = end_time - self._start_time
if keep_in_history:
self._history.append(elapsed)
self._elapsed = elapsed
self._started = False
return elapsed
def get_history_mean(self):
2022-01-21 02:44:30 +00:00
"""Mean of all history start-stop time intervals.
2022-03-25 05:02:39 +00:00
Returns:
int: Mean of time intervals
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
return sum(self._history) / len(self._history)
def get_history_sum(self):
2022-01-21 02:44:30 +00:00
"""Add up all the start-stop time intervals.
2022-03-25 05:02:39 +00:00
Returns:
int: Sum of time intervals.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
return sum(self._history)
def get_elapsed_time(self):
2022-01-21 02:44:30 +00:00
"""Return the last start-stop time interval.
2022-03-25 05:02:39 +00:00
Returns:
int: The last time interval.
2022-01-21 02:44:30 +00:00
2022-03-25 05:02:39 +00:00
Note:
Use it only when timer is not in progress
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
assert not self._started, 'Timer is still in progress'
return self._elapsed
def reset(self):
2022-01-21 02:44:30 +00:00
"""Clear up the timer and its history
"""
2021-10-28 16:21:23 +00:00
self._history = []
self._started = False
self._elapsed = 0
class MultiTimer:
2022-03-25 05:02:39 +00:00
"""An object contains multiple timers.
2022-03-25 05:02:39 +00:00
Args:
on (bool, optional): Whether the timer is enabled. Default is True.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
def __init__(self, on: bool = True):
self._on = on
self._timers = dict()
def start(self, name: str):
2022-03-25 05:02:39 +00:00
"""Start namely one of the timers.
2022-01-21 02:44:30 +00:00
2022-03-25 05:02:39 +00:00
Args:
name (str): Timer's key.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
if self._on:
if name not in self._timers:
self._timers[name] = Timer()
return self._timers[name].start()
def stop(self, name: str, keep_in_history: bool):
2022-01-21 02:44:30 +00:00
"""Stop namely one of the timers.
2022-03-25 05:02:39 +00:00
Args:
name (str): Timer's key.
keep_in_history (bool): Whether does it record into history each start-stop interval.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
if self._on:
return self._timers[name].stop(keep_in_history)
else:
return None
def get_timer(self, name):
2022-01-21 02:44:30 +00:00
"""Get timer by its name (from multitimer)
2022-03-25 05:02:39 +00:00
Args:
name (str): Timer's key.
Returns:
:class:`colossalai.utils.Timer`: Timer with the name you give correctly.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
return self._timers[name]
def reset(self, name=None):
2022-01-21 02:44:30 +00:00
"""Reset timers.
2022-03-25 05:02:39 +00:00
Args:
name (str, optional): If name is designated, the named timer will be reset
and others will not, defaults to None.
2022-01-21 02:44:30 +00:00
"""
2021-10-28 16:21:23 +00:00
if self._on:
if name is not None:
self._timers[name].reset()
else:
for timer in self._timers:
timer.reset()
def is_on(self):
return self._on
def set_status(self, mode: bool):
self._on = mode
2022-01-20 05:44:51 +00:00
def __iter__(self) -> Tuple[str, Timer]:
2021-10-28 16:21:23 +00:00
for name, timer in self._timers.items():
2022-01-20 05:44:51 +00:00
yield name, timer