2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 11:18:27 +08:00

devices/core: test inline transform first

This commit is contained in:
Sebastien Bourdeauducq 2014-06-16 21:33:59 +02:00
parent 7ec448cdc9
commit d63c3264d3

View File

@ -1,5 +1,5 @@
from artiq.compiler.transform import transform from artiq.compiler.inline import inline
class Core: class Core:
def run(self, k_function, *k_args, **k_kwargs): def run(self, k_function, k_args, k_kwargs):
transform(k_function, k_args, k_kwargs) inline(k_function, k_args, k_kwargs)