artiq/benchmarks/all.py

18 lines
387 B
Python
Raw Normal View History

2015-02-18 07:14:18 +08:00
from artiq import *
2015-02-19 00:57:00 +08:00
import pulse_rate, rtio_skew, rpc_timing
2015-02-18 07:14:18 +08:00
2015-02-19 00:57:00 +08:00
_units = [pulse_rate.PulseRate, rtio_skew.RTIOSkew, rpc_timing.RPCTiming]
2015-02-18 07:14:18 +08:00
class AllBenchmarks(AutoDB):
__artiq_unit__ = "All benchmarks"
2015-02-18 07:14:18 +08:00
def build(self):
self.se = []
for unit in _units:
self.se.append(unit(self.dbh))
def run(self):
for se in self.se:
se.run()