We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d56a4 commit 68ccc09Copy full SHA for 68ccc09
tests/components/input_encoders/test_phasorCell.py
@@ -26,11 +26,11 @@ def test_phasorCell1():
26
27
advance_process = (Process()
28
>> a.advance_state)
29
- ctx.wrap_and_add_command(advance_process.pure, name="run")
+ ctx.wrap_and_add_command(jit(advance_process.pure), name="run")
30
31
reset_process = (Process()
32
>> a.reset)
33
- ctx.wrap_and_add_command(reset_process.pure, name="reset")
+ ctx.wrap_and_add_command(jit(reset_process.pure), name="reset")
34
35
## set up non-compiled utility commands
36
@Context.dynamicCommand
0 commit comments