forked from M-Labs/artiq
devices/core: test inline transform first
This commit is contained in:
parent
7ec448cdc9
commit
d63c3264d3
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue