mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 19:06:55 +00:00
16 lines
239 B
Python
16 lines
239 B
Python
class TimingStats:
|
|
@classmethod
|
|
def aggregate(cls):
|
|
return {}
|
|
|
|
|
|
class TimingContext:
|
|
def __init__(self, *_, **__):
|
|
pass
|
|
|
|
def __enter__(self):
|
|
return self
|
|
|
|
def __exit__(self, *args):
|
|
pass
|