From e8228710e7eb896a4f8aa478e362676456dac6db Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 5 Nov 2021 17:37:01 +0800 Subject: [PATCH] min_artiq: remove unnecessary definitions --- nac3artiq/min_artiq.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/nac3artiq/min_artiq.py b/nac3artiq/min_artiq.py index 18355dcf..a41a4f16 100644 --- a/nac3artiq/min_artiq.py +++ b/nac3artiq/min_artiq.py @@ -51,10 +51,6 @@ def portable(function): return function -def get_defined_class(method): - return vars(sys.modules[method.__module__])[method.__qualname__.split('.')[0]] - - ms = 1e-3 us = 1e-6 ns = 1e-9 @@ -83,14 +79,6 @@ def rtio_input_timestamp(timeout_mu: int64, channel: int32) -> int64: def rtio_input_data(channel: int32) -> int32: raise NotImplementedError("syscall not simulated") -def at_mu(_): - raise NotImplementedError("at_mu not simulated") - -def now_mu() -> int32: - raise NotImplementedError("now_mu not simulated") - -def delay_mu(_): - raise NotImplementedError("delay_mu not simulated") @kernel class Core: