swh:1:snp:7438b129d9cacb54440879827822fdf5f107e828
Raw File
Tip revision: 83e2c28fc2487f75cb163baa48f18aa80e43c6f1 authored by Eric Lu on 31 August 2018, 14:38:54 UTC
Integrate treafficlight to readme
Tip revision: 83e2c28
benchmark_overhead_logging.py
#!/usr/bin/env python
import duckietown_utils as dtu
import sys


dtu.DuckietownConstants.show_timeit_benchmarks = True

with dtu.timeit_clock('empty 1'):
    with dtu.timeit_clock('empty 2'):
        with dtu.timeit_clock('empty 3'):
            with dtu.timeit_clock('empty 4'):
                with dtu.timeit_clock('empty 5'):
                    with dtu.timeit_clock('empty 6'):
                        with dtu.timeit_clock('empty 7'):
                            with dtu.timeit_clock('empty 8'):
                                with dtu.timeit_clock('empty 9'):
                                    pass
back to top