forked from M-Labs/artiq
lit-test: add interleaving/pure_impure_tie.
This commit is contained in:
parent
32fe4a8a0c
commit
e53f26dba0
|
@ -0,0 +1,14 @@
|
|||
# RUN: %python -m artiq.compiler.testbench.jit %s >%t
|
||||
# RUN: OutputCheck %s --file-to-check=%t
|
||||
|
||||
def f():
|
||||
delay_mu(2)
|
||||
|
||||
def g():
|
||||
with parallel:
|
||||
f()
|
||||
delay_mu(2)
|
||||
print(now_mu())
|
||||
|
||||
# CHECK-L: 2
|
||||
g()
|
Loading…
Reference in New Issue