forked from M-Labs/artiq
1
0
Fork 0
artiq/benchmarks/all.py

17 lines
315 B
Python
Raw Normal View History

2015-02-18 07:14:18 +08:00
from artiq import *
import pulse_rate, rtio_skew
_units = [pulse_rate.PulseRate, rtio_skew.RTIOSkew]
class AllBenchmarks(AutoDB):
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()