artiq/artiq/test/coredevice/portability.py

230 lines
6.2 KiB
Python
Raw Normal View History

from operator import itemgetter
from fractions import Fraction
2014-09-24 23:43:22 +08:00
from artiq.experiment import *
2014-09-24 23:43:22 +08:00
from artiq.sim import devices as sim_devices
from artiq.test.hardware_testbench import ExperimentCase
2014-09-24 23:43:22 +08:00
2015-07-14 04:08:20 +08:00
def _run_on_host(k_class, **arguments):
dmgr = dict()
dmgr["core"] = sim_devices.Core(dmgr)
k_inst = k_class(dmgr, **arguments)
2014-09-24 23:43:22 +08:00
k_inst.run()
return k_inst
2014-09-24 23:43:22 +08:00
2015-07-14 04:08:20 +08:00
class _Primes(EnvExperiment):
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
self.setattr_argument("output_list")
self.setattr_argument("maximum")
2014-09-24 23:43:22 +08:00
def _add_output(self, x):
self.output_list.append(x)
2014-09-24 23:43:22 +08:00
@kernel
def run(self):
for x in range(1, self.maximum):
2014-09-24 23:43:22 +08:00
d = 2
prime = True
while d*d <= x:
if x % d == 0:
prime = False
break
d += 1
if prime:
self._add_output(x)
2014-09-24 23:43:22 +08:00
2015-07-14 04:08:20 +08:00
class _Misc(EnvExperiment):
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
2015-07-14 04:08:20 +08:00
self.input = 84
self.al = [1, 2, 3, 4, 5]
2014-12-19 14:34:23 +08:00
self.list_copy_in = [2*Hz, 10*MHz]
self.half_input = 0
self.acc = 0
self.list_copy_out = []
@kernel
def run(self):
self.half_input = self.input//2
self.acc = 0
2014-12-18 11:13:50 +08:00
for i in range(len(self.al)):
self.acc += self.al[i]
2014-12-19 14:34:23 +08:00
self.list_copy_out = self.list_copy_in
2014-11-23 08:56:51 +08:00
2015-07-14 04:08:20 +08:00
class _PulseLogger(EnvExperiment):
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
self.setattr_argument("parent_test")
2015-10-04 00:18:21 +08:00
self.setattr_argument("name")
2014-09-24 23:43:22 +08:00
def _append(self, t, l, f):
if not hasattr(self.parent_test, "first_timestamp"):
self.parent_test.first_timestamp = t
self.parent_test.output_list.append(
(self.name, t-self.parent_test.first_timestamp, l, f))
2014-09-24 23:43:22 +08:00
2015-07-02 04:22:53 +08:00
def int_usec(self, mu):
return round(mu_to_seconds(mu, self.core)*1000000)
def on(self, t, f):
2015-07-02 04:22:53 +08:00
self._append(self.int_usec(t), True, f)
def off(self, t):
2015-07-02 04:22:53 +08:00
self._append(self.int_usec(t), False, 0)
2014-09-24 23:43:22 +08:00
@kernel
def pulse(self, f, duration):
2015-07-02 04:22:53 +08:00
self.on(now_mu(), f)
2014-09-24 23:43:22 +08:00
delay(duration)
2015-07-02 04:22:53 +08:00
self.off(now_mu())
2014-09-24 23:43:22 +08:00
2015-07-14 04:08:20 +08:00
class _Pulses(EnvExperiment):
2014-09-24 23:43:22 +08:00
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
self.setattr_argument("output_list")
2015-07-14 04:08:20 +08:00
2014-09-24 23:43:22 +08:00
for name in "a", "b", "c", "d":
2015-10-12 19:20:04 +08:00
pl = _PulseLogger(*self.managers(),
parent_test=self,
name=name)
2014-09-24 23:43:22 +08:00
setattr(self, name, pl)
@kernel
def run(self):
for i in range(3):
with parallel:
with sequential:
self.a.pulse(100+i, 20*us)
self.b.pulse(200+i, 20*us)
with sequential:
self.c.pulse(300+i, 10*us)
self.d.pulse(400+i, 20*us)
2014-09-26 23:45:09 +08:00
class _MyException(Exception):
pass
2015-07-14 04:08:20 +08:00
class _Exceptions(EnvExperiment):
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
self.setattr_argument("trace")
2014-09-26 23:45:09 +08:00
def _trace(self, i):
self.trace.append(i)
2014-09-26 23:45:09 +08:00
@kernel
def run(self):
for i in range(10):
self._trace(i)
2014-09-26 23:45:09 +08:00
if i == 4:
try:
self._trace(10)
2014-09-26 23:45:09 +08:00
try:
self._trace(11)
2014-09-26 23:45:09 +08:00
break
except:
pass
else:
self._trace(12)
2014-09-26 23:45:09 +08:00
try:
self._trace(13)
2014-09-26 23:45:09 +08:00
except:
pass
except _MyException:
self._trace(14)
2014-09-26 23:45:09 +08:00
for i in range(4):
try:
self._trace(100)
2014-09-26 23:45:09 +08:00
if i == 1:
raise _MyException()
2014-09-26 23:45:09 +08:00
elif i == 2:
raise IndexError()
except IndexError:
self._trace(101)
2014-09-26 23:45:09 +08:00
raise
except:
self._trace(102)
2014-09-26 23:45:09 +08:00
else:
self._trace(103)
2014-09-26 23:45:09 +08:00
finally:
self._trace(104)
2014-09-26 23:45:09 +08:00
2015-07-14 04:08:20 +08:00
class _RPCExceptions(EnvExperiment):
2014-12-20 21:33:22 +08:00
def build(self):
2015-10-04 00:18:21 +08:00
self.setattr_device("core")
self.setattr_argument("catch", PYONValue(False))
2015-07-14 04:08:20 +08:00
2014-12-20 21:33:22 +08:00
self.success = False
def exception_raiser(self):
raise _MyException
@kernel
def run(self):
if self.catch:
self.do_catch()
else:
self.do_not_catch()
2014-12-20 21:33:22 +08:00
@kernel
def do_not_catch(self):
self.exception_raiser()
@kernel
def do_catch(self):
2014-12-20 21:33:22 +08:00
try:
self.exception_raiser()
except _MyException:
self.success = True
class HostVsDeviceCase(ExperimentCase):
2014-09-24 23:43:22 +08:00
def test_primes(self):
l_device, l_host = [], []
self.execute(_Primes, maximum=100, output_list=l_device)
_run_on_host(_Primes, maximum=100, output_list=l_host)
2014-09-24 23:43:22 +08:00
self.assertEqual(l_device, l_host)
def test_misc(self):
for f in self.execute, _run_on_host:
uut = f(_Misc)
self.assertEqual(uut.half_input, 42)
self.assertEqual(uut.acc, sum(uut.al))
2014-12-19 14:34:23 +08:00
self.assertEqual(uut.list_copy_in, uut.list_copy_out)
2014-09-24 23:43:22 +08:00
def test_pulses(self):
l_device, l_host = [], []
self.execute(_Pulses, output_list=l_device)
_run_on_host(_Pulses, output_list=l_host)
l_host = sorted(l_host, key=itemgetter(1))
for channel in "a", "b", "c", "d":
c_device = [x for x in l_device if x[0] == channel]
c_host = [x for x in l_host if x[0] == channel]
self.assertEqual(c_device, c_host)
2014-09-26 23:45:09 +08:00
def test_exceptions(self):
t_device, t_host = [], []
with self.assertRaises(IndexError):
self.execute(_Exceptions, trace=t_device)
2014-09-26 23:45:09 +08:00
with self.assertRaises(IndexError):
_run_on_host(_Exceptions, trace=t_host)
self.assertEqual(t_device, t_host)
2014-09-24 23:43:22 +08:00
2014-12-20 21:33:22 +08:00
def test_rpc_exceptions(self):
for f in self.execute, _run_on_host:
2014-12-20 21:33:22 +08:00
with self.assertRaises(_MyException):
f(_RPCExceptions, catch=False)
uut = self.execute(_RPCExceptions, catch=True)
2014-12-20 21:33:22 +08:00
self.assertTrue(uut.success)