scikit-learn/sklearn/utils/bench.py

18 lines
370 B
Python
Raw Normal View History

"""
Helper functions for benchmarking
"""
2011-05-17 09:52:06 +08:00
def total_seconds(delta):
"""
helper function to emulate function total_seconds,
introduced in python2.7
2011-12-16 00:08:30 +08:00
http://docs.python.org/library/datetime.html\
#datetime.timedelta.total_seconds
"""
2011-05-17 09:52:06 +08:00
mu_sec = 1e-6 # number of seconds in one microseconds
return delta.seconds + delta.microseconds * mu_sec