From d63c3264d34a44ae8dc86ae157ec7965c7393207 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 16 Jun 2014 21:33:59 +0200 Subject: [PATCH] devices/core: test inline transform first --- artiq/devices/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/artiq/devices/core.py b/artiq/devices/core.py index 9916f8431..111692162 100644 --- a/artiq/devices/core.py +++ b/artiq/devices/core.py @@ -1,5 +1,5 @@ -from artiq.compiler.transform import transform +from artiq.compiler.inline import inline class Core: - def run(self, k_function, *k_args, **k_kwargs): - transform(k_function, k_args, k_kwargs) + def run(self, k_function, k_args, k_kwargs): + inline(k_function, k_args, k_kwargs)