-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcontrol_flow.jl
792 lines (650 loc) · 17.8 KB
/
control_flow.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
using Reactant, Test
using LinearAlgebra
using Reactant.ReactantCore
function condition1(x)
y = sum(x)
@trace if y > 0
z = y + 1
else
z = y - 1
end
return z
end
@testset "condition1" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(condition1(x_ra)) ≈ condition1(x)
x = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(condition1(x_ra)) ≈ condition1(x)
end
function condition1_missing_var(x)
y = sum(x)
@trace if y > 0
z = y + 1
p = -1
else
z = y - 1
end
return z
end
@testset "condition1_missing_var" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(condition1_missing_var(x_ra)) ≈ condition1_missing_var(x)
x = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(condition1_missing_var(x_ra)) ≈ condition1_missing_var(x)
end
@testset "return not supported" begin
@test_throws LoadError @eval @trace if x > 0
return 1
end
end
function condition2_nested_if(x, y)
x_sum = sum(x)
@trace if x_sum > 0
y_sum = sum(y)
if y_sum > 0
z = x_sum + y_sum
else
z = x_sum - y_sum
end
else
y_sum = sum(y)
z = x_sum - y_sum
end
return z
end
function condition2_if_else_if(x, y)
x_sum = sum(x)
y_sum = sum(y)
@trace if x_sum > 0 && y_sum > 0
z = x_sum + y_sum
elseif x_sum > 0
z = x_sum - y_sum
else
z = y_sum - x_sum
end
return z
end
@testset "condition2: multiple conditions" begin
x = rand(2, 10)
y = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition2_nested_if(x_ra, y_ra)) ≈ condition2_nested_if(x, y)
@test @jit(condition2_if_else_if(x_ra, y_ra)) ≈ condition2_if_else_if(x, y)
y = -rand(2, 10)
y_ra = Reactant.to_rarray(y)
@test @jit(condition2_nested_if(x_ra, y_ra)) ≈ condition2_nested_if(x, y)
@test @jit(condition2_if_else_if(x_ra, y_ra)) ≈ condition2_if_else_if(x, y)
x = -rand(2, 10)
y = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition2_nested_if(x_ra, y_ra)) ≈ condition2_nested_if(x, y)
@test @jit(condition2_if_else_if(x_ra, y_ra)) ≈ condition2_if_else_if(x, y)
end
function condition3_mixed_conditions(x, y)
x_sum = sum(x)
y_sum = sum(y)
@trace if x_sum > 0 && y_sum > 0
z = x_sum + y_sum
else
z = -(x_sum + y_sum)
end
return z
end
@testset "condition3: mixed conditions" begin
x = rand(2, 10)
y = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition3_mixed_conditions(x_ra, y_ra)) ≈ condition3_mixed_conditions(x, y)
x = -rand(2, 10)
y = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition3_mixed_conditions(x_ra, y_ra)) ≈ condition3_mixed_conditions(x, y)
x = rand(2, 10)
y = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition3_mixed_conditions(x_ra, y_ra)) ≈ condition3_mixed_conditions(x, y)
y = rand(2, 10)
z = -rand(2, 10)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition3_mixed_conditions(x_ra, y_ra)) ≈ condition3_mixed_conditions(x, y)
end
function condition4_mixed_conditions(x, y)
x_sum = sum(x)
y_sum = sum(y)
@trace if x_sum > 0 || y_sum > 0 && !(y_sum > 0)
z = x_sum + y_sum
p = 1
else
z = -(x_sum + y_sum)
p = -1
end
return z
end
@testset "condition4: mixed conditions" begin
x = rand(2, 10)
y = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition4_mixed_conditions(x_ra, y_ra)) ≈ condition4_mixed_conditions(x, y)
x = -rand(2, 10)
y = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition4_mixed_conditions(x_ra, y_ra)) ≈ condition4_mixed_conditions(x, y)
x = rand(2, 10)
y = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
@test @jit(condition4_mixed_conditions(x_ra, y_ra)) ≈ condition4_mixed_conditions(x, y)
y = rand(2, 10)
z = -rand(2, 10)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition4_mixed_conditions(x_ra, y_ra)) ≈ condition4_mixed_conditions(x, y)
end
function condition5_multiple_returns(x, y)
x_sum = sum(x)
y_sum = sum(y)
@trace if x_sum > 0
z = x_sum + y_sum
p = 1
else
z = -(x_sum + y_sum)
p = -1
end
return z, p
end
@testset "condition5: multiple returns" begin
x = rand(2, 10)
y = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
res_ra = @jit(condition5_multiple_returns(x_ra, y_ra))
res = condition5_multiple_returns(x, y)
@test res_ra[1] ≈ res[1]
@test res_ra[2] ≈ res[2]
end
function condition6_bareif_relu(x)
@trace if x < 0
x = 0.0
end
return x
end
@testset "condition6: bareif relu" begin
x = 2.0
x_ra = Reactant.to_rarray(x; track_numbers=Number)
res_ra = @jit(condition6_bareif_relu(x_ra))
res = condition6_bareif_relu(x)
@test res_ra ≈ res
x = -2.0
x_ra = Reactant.to_rarray(x; track_numbers=Number)
res_ra = @jit(condition6_bareif_relu(x_ra))
res = condition6_bareif_relu(x)
@test res_ra ≈ res
end
function condition7_bare_elseif(x)
@trace if x > 0
x = x + 1
elseif x < 0
x = x - 1
elseif x == 0
x = x
end
return x
end
@testset "condition7: bare elseif" begin
x = 2.0
x_ra = Reactant.to_rarray(x; track_numbers=Number)
res_ra = @jit(condition7_bare_elseif(x_ra))
res = condition7_bare_elseif(x)
@test res_ra ≈ res
x = -2.0
x_ra = Reactant.to_rarray(x; track_numbers=Number)
res_ra = @jit(condition7_bare_elseif(x_ra))
res = condition7_bare_elseif(x)
@test res_ra ≈ res
x = 0.0
x_ra = Reactant.to_rarray(x; track_numbers=Number)
res_ra = @jit(condition7_bare_elseif(x_ra))
res = condition7_bare_elseif(x)
@test res_ra ≈ res
end
function condition8_return_if(x)
@trace (y, z) = if sum(x) > 0
-1, 2.0
elseif sum(x) < 0
1, -2.0
else
0, 0.0
end
return y, z
end
@testset "condition8: return if" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition8_return_if(x_ra))
res = condition8_return_if(x)
@test res_ra[1] ≈ res[1]
@test res_ra[2] ≈ res[2]
x = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition8_return_if(x_ra))
res = condition8_return_if(x)
@test res_ra[1] ≈ res[1]
@test res_ra[2] ≈ res[2]
x = zeros(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition8_return_if(x_ra))
res = condition8_return_if(x)
@test res_ra[1] ≈ res[1]
@test res_ra[2] ≈ res[2]
end
function condition9_if_ends_with_nothing(x)
@trace if sum(x) > 0
y = 1.0
nothing
else
y = 2.0
end
return y
end
@testset "condition9: if ends with nothing" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition9_if_ends_with_nothing(x_ra))
res = condition9_if_ends_with_nothing(x)
@test res_ra ≈ res
x = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition9_if_ends_with_nothing(x_ra))
res = condition9_if_ends_with_nothing(x)
@test res_ra ≈ res
end
function condition9_if_ends_with_pathological_nothing(x)
@trace if sum(x) > 0
y = 1.0
nothing = 2.0
else
y = 2.0
nothing = 3.0
end
return y, nothing
end
@testset "condition9: if ends with pathological nothing" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition9_if_ends_with_pathological_nothing(x_ra))
res = condition9_if_ends_with_pathological_nothing(x)
@test res_ra[1] ≈ res[1]
@test res_ra[2] ≈ res[2]
end
function condition10_condition_with_setindex(x)
@trace if sum(x) > 0
x[:, 1] = -1.0
else
@allowscalar x[1, 1] = 1.0
end
return x
end
@testset "condition10: condition with setindex!" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition10_condition_with_setindex(x_ra))
@test @allowscalar(res_ra[1, 1]) == -1.0
@test @allowscalar(res_ra[2, 1]) == -1.0
@test @allowscalar(x_ra[1, 1]) == -1.0
@test @allowscalar(x_ra[2, 1]) == -1.0
x = -rand(2, 10)
x[2, 1] = 0.0
x_ra = Reactant.to_rarray(x)
res_ra = @jit(condition10_condition_with_setindex(x_ra))
@test @allowscalar(res_ra[1, 1]) == 1.0
@test @allowscalar(res_ra[2, 1]) == 0.0
@test @allowscalar(x_ra[1, 1]) == 1.0
@test @allowscalar(x_ra[2, 1]) == 0.0
end
function condition11_nested_ifff(x, y, z)
x_sum = sum(x)
@trace if x_sum > 0
y_sum = sum(y)
if y_sum > 0
if sum(z) > 0
z = x_sum + y_sum + sum(z)
else
z = x_sum + y_sum
end
else
z = x_sum - y_sum
end
else
y_sum = sum(y)
z = x_sum - y_sum
end
return z
end
@testset "condition11: nested if 3 levels deep" begin
x = rand(2, 10)
y = rand(2, 10)
z = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition11_nested_ifff(x_ra, y_ra, z_ra)) ≈ condition11_nested_ifff(x, y, z)
x = -rand(2, 10)
y = -rand(2, 10)
z = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition11_nested_ifff(x_ra, y_ra, z_ra)) ≈ condition11_nested_ifff(x, y, z)
end
function condition12_compile_test(x, y, z)
x_sum = sum(x)
@trace if x_sum > 0
y_sum = sum(y)
z = x_sum + y_sum + sum(z)
else
y_sum = sum(y)
z = x_sum - y_sum
end
return z
end
@testset "condition12: compile test" begin
x = rand(2, 10)
y = rand(2, 10)
z = rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition12_compile_test(x_ra, y_ra, z_ra)) ≈
condition12_compile_test(x, y, z)
x = -rand(2, 10)
y = -rand(2, 10)
z = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
y_ra = Reactant.to_rarray(y)
z_ra = Reactant.to_rarray(z)
@test @jit(condition12_compile_test(x_ra, y_ra, z_ra)) ≈
condition12_compile_test(x, y, z)
end
function condition_with_structure(x)
y = x .+ 1
@trace if sum(y) > 0
z = (; a=y, b=(y .- 1, y))
else
z = (; a=-y, b=(y, y .+ 1))
end
return z
end
@testset "condition with structure" begin
x = rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit condition_with_structure(x_ra)
res = condition_with_structure(x)
@test res_ra.a ≈ res.a
@test res_ra.b[1] ≈ res.b[1]
@test res_ra.b[2] ≈ res.b[2]
x = -rand(2, 10)
x_ra = Reactant.to_rarray(x)
res_ra = @jit condition_with_structure(x_ra)
res = condition_with_structure(x)
@test res_ra.a ≈ res.a
@test res_ra.b[1] ≈ res.b[1]
@test res_ra.b[2] ≈ res.b[2]
end
function for_with_step(x)
@trace for i in 10:3:22
@allowscalar x[i] = i * i
end
return x
end
@testset "for: for with step" begin
x = rand(1:100, 22)
x_ra = Reactant.to_rarray(x)
@test @jit(for_with_step(x_ra)) == for_with_step(x)
end
function nnorm(x, n)
@trace for i in 1:n
x = x * i ./ sum(x)
end
return x
end
@testset "for: induction" begin
x = randn(Float32, 10)
x_ra = Reactant.to_rarray(x)
n = 10
@test @jit(nnorm(x_ra, n)) ≈ nnorm(x, n)
end
function sinkhorn(μ, ν, C)
λ = eltype(C)(0.8)
K = @. exp(-C / λ)
u = fill!(similar(μ), one(eltype(μ)))
v = similar(ν)
@trace for _ in 1:10
v = ν ./ (K' * u)
u = μ ./ (K * v)
end
return Diagonal(u) * K * Diagonal(v)
end
@testset "for: sinkhorn" begin
Nμ = 10
Nν = 5
μ = ones(Float32, Nμ) ./ Nμ
ν = ones(Float32, Nν) ./ Nν
C = randn(Float32, Nμ, Nν)
μ_ra = Reactant.to_rarray(μ)
ν_ra = Reactant.to_rarray(ν)
C_ra = Reactant.to_rarray(C)
@test @jit(sinkhorn(μ_ra, ν_ra, C_ra)) ≈ sinkhorn(μ, ν, C)
end
@testset "for: forbidden syntax" begin
@test_throws "break" @eval function f_with_break()
@trace for i in 1:10
break
end
end
@test_throws "continue" @eval function f_with_continue()
@trace for i in 1:10
continue
end
end
@test_throws "return" @eval function f_with_return()
@trace for i in 1:10
return nothing
end
end
end
function cumsum!(x)
v = zero(eltype(x))
@trace for i in 1:length(x)
v += @allowscalar x[i]
@allowscalar x[i] = v
end
return x
end
@testset "for: mutation within loop" begin
x = rand(1:100, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(cumsum!(x_ra)) == cumsum!(x)
end
function for_ref_outer(x)
i = sum(x)
@trace for i in 1:length(x)
x .+= i
end
return x / i
end
@testset "for: outer reference" begin
x = randn(Float64, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(for_ref_outer(x_ra)) ≈ for_ref_outer(x)
end
function for_inner_scope(x)
@trace for i in 1:10
s = sum(x)
x = x / s
end
return x
end
@testset "for: inner scope" begin
x = randn(Float64, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(for_inner_scope(x_ra)) ≈ for_inner_scope(x)
end
function for_with_named_tuple(x)
st = (; x)
res = x
@trace for i in 1:10
res .= res .+ st.x
end
return res
end
@testset "for: named tuple" begin
x = randn(Float64, 10)
x_ra = Reactant.to_rarray(x)
@test @jit(for_with_named_tuple(x_ra)) ≈ for_with_named_tuple(x)
end
_call1(a, b) = a
function call1(a, b)
x = @trace _call1(a, b)
y = @trace _call1(a, b)
return @trace _call1(x, y)
end
function for_traced_bounds(start, stop)
x = zero(start)
@trace for i in start:stop
x += i
end
return x
end
@testset "for: traced bounds" begin
start = 1
stop = 4
start_re = ConcreteRNumber(start)
stop_re = ConcreteRNumber(stop)
@test @jit(for_traced_bounds(start_re, stop_re)) == for_traced_bounds(start, stop)
end
@testset "call: basic" begin
a = rand(2, 3)
b = rand(2, 3)
a_ra = Reactant.to_rarray(a)
b_ra = Reactant.to_rarray(b)
@test @jit(call1(a_ra, b_ra)) ≈ call1(a, b)
# check whether the func for _call1 was only generated once:
ir = @code_hlo optimize = false call1(a_ra, b_ra)
ops = [op for op in Reactant.MLIR.IR.OperationIterator(Reactant.MLIR.IR.body(ir))]
@test length(ops) == 2 # call1, _call1
# With different operand sizes, different functions need to be generated:
c = rand(4, 5)
c_ra = Reactant.to_rarray(c)
@test @jit(call1(a_ra, c_ra)) ≈ call1(a, c)
ir = @code_hlo optimize = false call1(a_ra, c_ra)
ops = [op for op in Reactant.MLIR.IR.OperationIterator(Reactant.MLIR.IR.body(ir))]
@test length(ops) == 3
end
_call2(a) = a + a
function call2(a)
return @trace _call2(a)
end
@testset "call: rnumber" begin
a = 10
a_rn = ConcreteRNumber(a)
@test @jit(call2(a_rn)) == call2(a)
end
function _call3(x::Int, y)
if x > 10
return y .+ y
else
return y .* y
end
end
function call3(y)
z = @trace _call3(1, y)
@trace _call3(1, z) # doesn't generate new function because y.shape == z.shape
@trace _call3(11, y) # new function because x changed.
end
@testset "call: caching for Julia operands" begin
y = rand(3)
y_ra = Reactant.to_rarray(y)
ir = @code_hlo optimize = false call3(y_ra)
ops = [op for op in Reactant.MLIR.IR.OperationIterator(Reactant.MLIR.IR.body(ir))]
@test length(ops) == 5 # call3, .+, .*, _call3 (2X)
end
struct Foo
x
end
struct Bar
x
end
_call4(foobar::Union{Foo,Bar}) = foobar.x
function call4(foo, foo2, bar)
@trace _call4(foo)
@trace _call4(foo2)
@trace _call4(bar)
end
@testset "call: Caching struct arguments" begin
a = rand(10)
b = rand(10)
foo = Foo(Reactant.to_rarray(a))
foo2 = Foo(Reactant.to_rarray(b))
bar = Foo(Bar(Reactant.to_rarray(b))) # typeof(foo) == typeof(bar), but these don't match!
ir = @code_hlo optimize = false call4(foo, foo2, bar)
ops = [op for op in Reactant.MLIR.IR.OperationIterator(Reactant.MLIR.IR.body(ir))]
@test length(ops) == 3 # call4, _call4 for {foo, foo2}, and _call4 for bar
end
function _call5!(a, b)
@allowscalar a[1] = zero(eltype(a))
return b
end
function call5!(a, b)
@trace _call5!(a, b)
return a
end
@testset "call: argument mutation" begin
a = ones(3)
b = ones(3)
a_ra = Reactant.to_rarray(a)
b_ra = Reactant.to_rarray(b)
@jit call5!(a_ra, b_ra)
call5!(a, b)
@test a_ra == a
end
mutable struct TestClock{I}
iteration::I
end
mutable struct TestSimulation{C,I,B}
clock::C
stop_iteration::I
running::B
end
function step!(sim)
@trace if sim.clock.iteration >= sim.stop_iteration
sim.running = false
else
sim.clock.iteration += 1 # time step
end
return sim
end
function simulate!(sim)
return ReactantCore.traced_while(sim -> sim.running, step!, (sim,))
end
@testset "simulation loop" begin
clock = TestClock(ConcreteRNumber(0))
simulation = TestSimulation(clock, ConcreteRNumber(3), ConcreteRNumber(true))
f! = @compile sync = true simulate!(simulation)
result = f!(simulation)
@test result == [3, 3, false]
@test simulation.running == false
@test simulation.clock.iteration == 3
@test simulation.stop_iteration == 3
end