forked from M-Labs/artiq
compiler.builtins: {fn→obj}_{serial,parallel}.
This commit is contained in:
parent
c660028abf
commit
143bae4bd3
|
@ -144,11 +144,11 @@ def fn_print():
|
|||
def fn_kernel():
|
||||
return types.TBuiltinFunction("kernel")
|
||||
|
||||
def fn_parallel():
|
||||
return types.TBuiltinFunction("parallel")
|
||||
def obj_parallel():
|
||||
return types.TBuiltin("parallel")
|
||||
|
||||
def fn_sequential():
|
||||
return types.TBuiltinFunction("sequential")
|
||||
def obj_sequential():
|
||||
return types.TBuiltin("sequential")
|
||||
|
||||
def fn_now():
|
||||
return types.TBuiltinFunction("now")
|
||||
|
|
|
@ -29,8 +29,8 @@ def globals():
|
|||
"kernel": builtins.fn_kernel(),
|
||||
|
||||
# ARTIQ context managers
|
||||
"parallel": builtins.fn_parallel(),
|
||||
"sequential": builtins.fn_sequential(),
|
||||
"parallel": builtins.obj_parallel(),
|
||||
"sequential": builtins.obj_sequential(),
|
||||
|
||||
# ARTIQ time management functions
|
||||
"now": builtins.fn_now(),
|
||||
|
|
Loading…
Reference in New Issue