2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-05 01:36:39 +08:00
artiq/benchmarks/all.py

17 lines
315 B
Python

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()