mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-08 16:43:19 +08:00
9 lines
314 B
Python
9 lines
314 B
Python
# RUN: %python -m artiq.compiler.testbench.signature %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
|
|
# CHECK-L: f: (a:numpy.int32, b:numpy.int32, c:numpy.int32, d:numpy.int32, e:numpy.int32)->NoneType delay(s->mu(a * b // c + d - 10 / e) mu)
|
|
def f(a, b, c, d, e):
|
|
delay(a * b // c + d - 10 / e)
|
|
|
|
f(1,2,3,4,5)
|