-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-7d3dac44dc.log
1013 lines (1012 loc) · 66 KB
/
1.6.0-DEV-7d3dac44dc.log
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
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Julia Version 1.6.0-DEV.1148
Commit 7d3dac44dc (2020-10-06 21:26 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed FastClosures ──── v0.3.2
Installed TimerOutputs ──── v0.5.6
Installed LinearOperators ─ v1.1.0
Installed MatrixEquations ─ v1.2.0
Updating `~/.julia/environments/v1.6/Project.toml`
[99c1a7ee] + MatrixEquations v1.2.0
Updating `~/.julia/environments/v1.6/Manifest.toml`
[9aa1b823] + FastClosures v0.3.2
[5c8ed15e] + LinearOperators v1.1.0
[99c1a7ee] + MatrixEquations v1.2.0
[a759f4b9] + TimerOutputs v0.5.6
[2a0f44e3] + Base64
[b77e0a4c] + InteractiveUtils
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[de0858da] + Printf
[9a3f8284] + Random
[9e88b42a] + Serialization
[2f01184e] + SparseArrays
[8dfed614] + Test
[4ec0a83e] + Unicode
Testing MatrixEquations
Status `/tmp/jl_24RAGZ/Project.toml`
[5c8ed15e] LinearOperators v1.1.0
[99c1a7ee] MatrixEquations v1.2.0
[37e2e46d] LinearAlgebra
[9a3f8284] Random
[8dfed614] Test
Status `/tmp/jl_24RAGZ/Manifest.toml`
[9aa1b823] FastClosures v0.3.2
[5c8ed15e] LinearOperators v1.1.0
[99c1a7ee] MatrixEquations v1.2.0
[a759f4b9] TimerOutputs v0.5.6
[2a0f44e3] Base64
[b77e0a4c] InteractiveUtils
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[de0858da] Printf
[9a3f8284] Random
[9e88b42a] Serialization
[2f01184e] SparseArrays
[8dfed614] Test
[4ec0a83e] Unicode
Testing Running tests...
0.000000 seconds
0.000000 seconds
1.025970 seconds (746.68 k allocations: 42.616 MiB, 3.70% gc time, 99.88% compilation time)
0.241944 seconds (402.85 k allocations: 22.514 MiB, 99.98% compilation time)
0.276106 seconds (377.61 k allocations: 20.849 MiB, 99.98% compilation time)
0.021302 seconds (9.44 k allocations: 568.699 KiB, 98.84% compilation time)
0.000188 seconds (366 allocations: 33.297 KiB)
0.023558 seconds (10.40 k allocations: 610.545 KiB, 99.00% compilation time)
0.114340 seconds (100.83 k allocations: 5.911 MiB, 99.80% compilation time)
0.022553 seconds (10.06 k allocations: 597.315 KiB, 98.95% compilation time)
0.022414 seconds (10.56 k allocations: 635.158 KiB, 98.85% compilation time)
0.022938 seconds (10.98 k allocations: 659.164 KiB, 98.92% compilation time)
0.989227 seconds (699.67 k allocations: 40.341 MiB, 3.15% gc time, 99.96% compilation time)
0.276258 seconds (402.62 k allocations: 22.044 MiB, 10.63% gc time, 99.98% compilation time)
0.225123 seconds (392.03 k allocations: 21.502 MiB, 99.98% compilation time)
0.019710 seconds (9.44 k allocations: 557.621 KiB, 99.00% compilation time)
9.245033 seconds (11.06 M allocations: 522.657 MiB, 4.59% gc time, 99.98% compilation time)
0.024892 seconds (10.40 k allocations: 601.904 KiB, 99.10% compilation time)
0.102066 seconds (99.76 k allocations: 5.807 MiB, 99.78% compilation time)
0.022978 seconds (10.06 k allocations: 585.425 KiB, 99.03% compilation time)
0.018239 seconds (9.38 k allocations: 540.721 KiB, 98.84% compilation time)
0.021248 seconds (10.98 k allocations: 648.414 KiB, 98.85% compilation time)
0.000000 seconds
0.000000 seconds
0.759530 seconds (417.77 k allocations: 23.467 MiB, 99.94% compilation time)
0.120982 seconds (221.95 k allocations: 12.546 MiB, 99.80% compilation time)
0.009849 seconds (1.27 k allocations: 100.889 KiB, 97.45% compilation time)
0.011035 seconds (2.98 k allocations: 214.803 KiB, 97.86% compilation time)
0.013682 seconds (6.18 k allocations: 314.097 KiB, 99.63% compilation time)
0.152684 seconds (221.60 k allocations: 12.179 MiB, 99.96% compilation time)
0.295594 seconds (475.73 k allocations: 26.922 MiB, 6.86% gc time, 99.87% compilation time)
0.016571 seconds (3.85 k allocations: 271.244 KiB, 98.50% compilation time)
0.008937 seconds (2.39 k allocations: 170.744 KiB, 97.36% compilation time)
0.028050 seconds (14.61 k allocations: 862.118 KiB, 98.77% compilation time)
0.031624 seconds (16.43 k allocations: 967.462 KiB, 98.94% compilation time)
0.000310 seconds (400 allocations: 40.281 KiB)
0.028243 seconds (15.79 k allocations: 944.421 KiB, 98.72% compilation time)
0.291758 seconds (442.26 k allocations: 25.085 MiB, 99.87% compilation time)
0.030416 seconds (15.11 k allocations: 878.462 KiB, 98.83% compilation time)
0.030042 seconds (16.93 k allocations: 984.415 KiB, 98.84% compilation time)
0.024000 seconds (15.03 k allocations: 901.020 KiB, 98.62% compilation time)
0.030246 seconds (18.80 k allocations: 1.101 MiB, 98.79% compilation time)
0.032347 seconds (15.25 k allocations: 890.340 KiB, 98.93% compilation time)
0.032951 seconds (17.09 k allocations: 1000.246 KiB, 98.97% compilation time)
0.000242 seconds (27 allocations: 34.312 KiB)
0.030306 seconds (20.80 k allocations: 1.218 MiB, 98.86% compilation time)
0.029070 seconds (15.94 k allocations: 927.022 KiB, 98.86% compilation time)
0.030916 seconds (17.75 k allocations: 1.007 MiB, 98.83% compilation time)
0.740196 seconds (428.02 k allocations: 24.026 MiB, 2.56% gc time, 99.94% compilation time)
0.112491 seconds (221.49 k allocations: 12.431 MiB, 99.80% compilation time)
0.009469 seconds (1.27 k allocations: 88.998 KiB, 97.77% compilation time)
0.010673 seconds (2.97 k allocations: 201.850 KiB, 98.08% compilation time)
0.013022 seconds (6.17 k allocations: 311.550 KiB, 99.60% compilation time)
0.115120 seconds (228.51 k allocations: 12.317 MiB, 99.96% compilation time)
0.284909 seconds (464.32 k allocations: 26.159 MiB, 99.90% compilation time)
0.010687 seconds (3.84 k allocations: 260.822 KiB, 97.86% compilation time)
0.009831 seconds (2.39 k allocations: 158.525 KiB, 97.79% compilation time)
0.046477 seconds (14.60 k allocations: 844.884 KiB, 39.54% gc time, 99.38% compilation time)
0.029358 seconds (16.43 k allocations: 950.634 KiB, 98.96% compilation time)
11.938648 seconds (15.36 M allocations: 648.954 MiB, 5.39% gc time, 100.00% compilation time)
0.025865 seconds (15.79 k allocations: 927.593 KiB, 98.79% compilation time)
0.276461 seconds (442.88 k allocations: 25.095 MiB, 99.88% compilation time)
0.028590 seconds (14.98 k allocations: 858.103 KiB, 98.79% compilation time)
0.029346 seconds (16.80 k allocations: 963.681 KiB, 98.84% compilation time)
0.024619 seconds (15.03 k allocations: 884.801 KiB, 98.81% compilation time)
0.029862 seconds (18.80 k allocations: 1.085 MiB, 99.00% compilation time)
0.031144 seconds (15.24 k allocations: 872.746 KiB, 99.05% compilation time)
0.029631 seconds (17.09 k allocations: 982.559 KiB, 98.93% compilation time)
0.000178 seconds (27 allocations: 17.516 KiB)
0.031765 seconds (20.80 k allocations: 1.202 MiB, 99.01% compilation time)
0.029068 seconds (15.94 k allocations: 909.382 KiB, 98.88% compilation time)
0.030381 seconds (17.75 k allocations: 1014.163 KiB, 98.91% compilation time)
0.003383 seconds (20 allocations: 1.453 KiB, 99.36% compilation time)
0.023735 seconds (9.11 k allocations: 538.532 KiB, 99.82% compilation time)
0.006557 seconds (62 allocations: 3.719 KiB, 99.65% compilation time)
0.003386 seconds (394 allocations: 25.453 KiB, 95.61% compilation time)
0.006810 seconds (436 allocations: 27.719 KiB, 97.89% compilation time)
0.024440 seconds (9.39 k allocations: 561.613 KiB, 99.43% compilation time)
0.003185 seconds (929 allocations: 62.280 KiB, 95.84% compilation time)
0.000140 seconds (375 allocations: 24.234 KiB)
0.003761 seconds (586 allocations: 41.046 KiB, 99.15% compilation time)
0.007091 seconds (60 allocations: 3.453 KiB, 99.80% compilation time)
0.000090 seconds (346 allocations: 21.281 KiB)
0.006847 seconds (404 allocations: 24.703 KiB, 98.46% compilation time)
0.002995 seconds (20 allocations: 1.375 KiB, 99.37% compilation time)
0.024420 seconds (9.11 k allocations: 538.642 KiB, 99.83% compilation time)
0.006614 seconds (62 allocations: 3.641 KiB, 99.68% compilation time)
0.003382 seconds (519 allocations: 27.484 KiB, 96.12% compilation time)
0.006681 seconds (561 allocations: 29.750 KiB, 97.90% compilation time)
0.026965 seconds (9.53 k allocations: 565.035 KiB, 99.43% compilation time)
0.003089 seconds (1.06 k allocations: 64.780 KiB, 96.14% compilation time)
0.000097 seconds (500 allocations: 26.266 KiB)
0.002897 seconds (582 allocations: 40.687 KiB, 98.63% compilation time)
0.006096 seconds (60 allocations: 3.453 KiB, 99.80% compilation time)
0.000098 seconds (478 allocations: 24.141 KiB)
0.006082 seconds (536 allocations: 27.562 KiB, 97.83% compilation time)
0.000000 seconds
0.000000 seconds
0.325253 seconds (126.25 k allocations: 7.001 MiB, 99.93% compilation time)
0.011436 seconds (11.35 k allocations: 674.419 KiB, 99.49% compilation time)
0.116729 seconds (226.27 k allocations: 12.845 MiB, 99.97% compilation time)
0.022309 seconds (9.43 k allocations: 568.480 KiB, 98.75% compilation time)
0.000193 seconds (280 allocations: 26.547 KiB)
0.032901 seconds (10.31 k allocations: 603.654 KiB, 99.36% compilation time)
0.023897 seconds (9.31 k allocations: 548.061 KiB, 98.99% compilation time)
0.022058 seconds (10.06 k allocations: 597.362 KiB, 98.93% compilation time)
0.018171 seconds (9.37 k allocations: 552.018 KiB, 98.78% compilation time)
0.021849 seconds (10.98 k allocations: 660.430 KiB, 98.88% compilation time)
0.285922 seconds (129.87 k allocations: 7.132 MiB, 99.93% compilation time)
0.010733 seconds (3.83 k allocations: 197.091 KiB, 99.54% compilation time)
0.123378 seconds (235.89 k allocations: 13.194 MiB, 99.96% compilation time)
0.021094 seconds (9.43 k allocations: 557.480 KiB, 98.91% compilation time)
2.782674 seconds (5.85 M allocations: 251.754 MiB, 4.67% gc time, 99.99% compilation time)
0.022088 seconds (10.31 k allocations: 597.545 KiB, 98.92% compilation time)
0.041578 seconds (9.31 k allocations: 536.170 KiB, 54.12% gc time, 99.50% compilation time)
0.021348 seconds (10.06 k allocations: 585.472 KiB, 98.96% compilation time)
0.017771 seconds (9.37 k allocations: 539.939 KiB, 98.77% compilation time)
0.021210 seconds (10.98 k allocations: 647.930 KiB, 99.01% compilation time)
0.000000 seconds
0.405383 seconds (163.39 k allocations: 8.745 MiB, 99.92% compilation time)
0.013834 seconds (6.74 k allocations: 439.126 KiB, 98.19% compilation time)
0.011336 seconds (2.42 k allocations: 154.195 KiB, 97.93% compilation time)
0.021246 seconds (4.82 k allocations: 274.097 KiB, 98.92% compilation time)
0.010569 seconds (2.84 k allocations: 175.741 KiB, 97.74% compilation time)
0.022533 seconds (8.38 k allocations: 463.682 KiB, 99.78% compilation time)
0.012815 seconds (7.62 k allocations: 375.441 KiB, 99.61% compilation time)
0.032767 seconds (21.21 k allocations: 1.265 MiB, 98.93% compilation time)
0.015364 seconds (5.14 k allocations: 302.808 KiB, 98.34% compilation time)
0.015133 seconds (5.66 k allocations: 328.970 KiB, 98.42% compilation time)
0.030187 seconds (14.60 k allocations: 861.603 KiB, 98.90% compilation time)
0.029771 seconds (16.43 k allocations: 967.431 KiB, 98.88% compilation time)
0.000283 seconds (286 allocations: 30.812 KiB)
0.031081 seconds (21.48 k allocations: 1.266 MiB, 98.81% compilation time)
0.029852 seconds (14.90 k allocations: 860.743 KiB, 98.78% compilation time)
0.031244 seconds (16.73 k allocations: 967.353 KiB, 98.93% compilation time)
0.027719 seconds (14.29 k allocations: 853.691 KiB, 98.75% compilation time)
0.048613 seconds (18.80 k allocations: 1.101 MiB, 99.27% compilation time)
0.037508 seconds (15.25 k allocations: 890.230 KiB, 98.96% compilation time)
0.032988 seconds (17.08 k allocations: 999.324 KiB, 98.95% compilation time)
0.025913 seconds (15.04 k allocations: 895.921 KiB, 98.64% compilation time)
0.043118 seconds (20.80 k allocations: 1.218 MiB, 99.15% compilation time)
0.031185 seconds (15.93 k allocations: 925.960 KiB, 98.86% compilation time)
0.041085 seconds (17.75 k allocations: 1.007 MiB, 99.17% compilation time)
0.457709 seconds (167.18 k allocations: 8.898 MiB, 6.49% gc time, 99.93% compilation time)
0.013671 seconds (4.58 k allocations: 283.970 KiB, 98.46% compilation time)
0.010573 seconds (2.42 k allocations: 141.414 KiB, 97.97% compilation time)
0.019359 seconds (4.82 k allocations: 261.112 KiB, 98.83% compilation time)
0.011399 seconds (2.84 k allocations: 162.960 KiB, 97.93% compilation time)
0.012408 seconds (5.51 k allocations: 279.259 KiB, 99.44% compilation time)
0.012337 seconds (7.62 k allocations: 374.457 KiB, 99.59% compilation time)
0.033919 seconds (21.21 k allocations: 1.249 MiB, 99.07% compilation time)
0.015274 seconds (5.14 k allocations: 289.636 KiB, 98.18% compilation time)
0.015383 seconds (5.66 k allocations: 315.798 KiB, 98.39% compilation time)
0.027301 seconds (14.60 k allocations: 847.478 KiB, 98.89% compilation time)
0.028043 seconds (16.43 k allocations: 950.634 KiB, 98.87% compilation time)
9.051815 seconds (11.75 M allocations: 481.944 MiB, 10.61% gc time, 100.00% compilation time)
0.032447 seconds (21.51 k allocations: 1.255 MiB, 98.95% compilation time)
0.030432 seconds (14.86 k allocations: 850.853 KiB, 98.91% compilation time)
0.035583 seconds (16.69 k allocations: 956.478 KiB, 99.07% compilation time)
0.025055 seconds (14.29 k allocations: 837.785 KiB, 98.83% compilation time)
0.032637 seconds (18.80 k allocations: 1.085 MiB, 99.09% compilation time)
0.030331 seconds (15.25 k allocations: 873.277 KiB, 99.04% compilation time)
0.031407 seconds (17.08 k allocations: 981.637 KiB, 99.04% compilation time)
0.027272 seconds (15.04 k allocations: 879.265 KiB, 98.83% compilation time)
0.034737 seconds (20.80 k allocations: 1.201 MiB, 99.09% compilation time)
0.033231 seconds (15.94 k allocations: 908.929 KiB, 98.97% compilation time)
0.033619 seconds (17.75 k allocations: 1013.679 KiB, 99.13% compilation time)
0.004033 seconds (846 allocations: 55.577 KiB, 96.00% compilation time)
0.006820 seconds (320 allocations: 17.984 KiB, 98.20% compilation time)
0.003447 seconds (20 allocations: 1.453 KiB, 99.44% compilation time)
0.026153 seconds (9.10 k allocations: 537.610 KiB, 99.79% compilation time)
0.006904 seconds (62 allocations: 3.719 KiB, 99.68% compilation time)
0.003838 seconds (280 allocations: 15.984 KiB, 96.08% compilation time)
0.007134 seconds (322 allocations: 18.250 KiB, 98.03% compilation time)
0.004084 seconds (881 allocations: 54.327 KiB, 96.63% compilation time)
0.007301 seconds (359 allocations: 17.094 KiB, 98.40% compilation time)
0.003832 seconds (20 allocations: 1.375 KiB, 99.49% compilation time)
0.026606 seconds (9.10 k allocations: 537.720 KiB, 99.84% compilation time)
0.007325 seconds (62 allocations: 3.641 KiB, 99.74% compilation time)
0.003659 seconds (319 allocations: 15.016 KiB, 96.83% compilation time)
0.006920 seconds (361 allocations: 17.281 KiB, 98.05% compilation time)
0.033045 seconds (6 allocations: 3.823 MiB)
0.098003 seconds (5 allocations: 3.815 MiB)
0.212963 seconds (9 allocations: 5.730 MiB, 42.34% gc time)
0.088622 seconds (5 allocations: 3.815 MiB)
0.073555 seconds (10 allocations: 7.638 MiB)
0.175166 seconds (5 allocations: 3.815 MiB)
0.197075 seconds (38.48 k allocations: 11.736 MiB, 77.66% compilation time)
0.027081 seconds (5 allocations: 3.815 MiB)
0.224126 seconds (61.78 k allocations: 6.533 MiB, 99.07% compilation time)
0.002049 seconds (4 allocations: 2.863 MiB)
0.001086 seconds (4 allocations: 2.863 MiB)
0.002356 seconds (4 allocations: 2.863 MiB)
1.567991 seconds (1.08 M allocations: 60.892 MiB, 27.98% gc time, 100.00% compilation time)
0.521494 seconds (331.36 k allocations: 18.262 MiB, 24.23% gc time, 93.14% compilation time)
0.889607 seconds (791.20 k allocations: 48.050 MiB, 2.42% gc time, 99.61% compilation time)
0.228275 seconds (97.31 k allocations: 6.307 MiB, 88.68% compilation time)
0.093384 seconds (83.46 k allocations: 5.372 MiB, 74.27% compilation time)
0.217854 seconds (82.49 k allocations: 5.283 MiB, 13.71% gc time, 79.39% compilation time)
0.151980 seconds (81.69 k allocations: 5.233 MiB, 85.75% compilation time)
0.393221 seconds (352.71 k allocations: 21.328 MiB, 98.95% compilation time)
0.708729 seconds (751.83 k allocations: 44.610 MiB, 3.49% gc time, 93.13% compilation time)
1.134717 seconds (1.11 M allocations: 61.522 MiB, 1.97% gc time, 95.79% compilation time)
0.424930 seconds (377.56 k allocations: 21.655 MiB, 6.27% gc time, 88.28% compilation time)
0.087405 seconds (81.75 k allocations: 5.449 MiB, 83.82% compilation time)
0.112853 seconds (48.88 k allocations: 3.048 MiB, 18.11% gc time, 91.26% compilation time)
3.583803 seconds (3.66 M allocations: 204.461 MiB, 3.27% gc time, 96.87% compilation time)
0.400468 seconds (334.23 k allocations: 18.449 MiB, 87.69% compilation time)
0.706633 seconds (581.77 k allocations: 34.464 MiB, 3.67% gc time, 94.60% compilation time)
0.244781 seconds (117.59 k allocations: 7.347 MiB, 96.30% compilation time)
0.671552 seconds (374.74 k allocations: 22.611 MiB, 5.40% gc time, 79.09% compilation time)
0.895769 seconds (926.77 k allocations: 55.682 MiB, 2.93% gc time, 99.19% compilation time)
2.456039 seconds (2.72 M allocations: 152.752 MiB, 2.04% gc time, 98.24% compilation time)
0.282660 seconds (122.52 k allocations: 8.108 MiB, 14.27% gc time, 81.42% compilation time)
0.149170 seconds (55.14 k allocations: 4.070 MiB, 83.89% compilation time)
0.219116 seconds (3.93 k allocations: 491.360 KiB, 6.10% compilation time)
0.613460 seconds (542.02 k allocations: 30.263 MiB, 87.40% compilation time)
0.654938 seconds (509.10 k allocations: 28.223 MiB, 8.23% gc time, 90.25% compilation time)
0.862355 seconds (853.59 k allocations: 47.322 MiB, 2.11% gc time, 95.20% compilation time)
0.571513 seconds (488.13 k allocations: 26.963 MiB, 12.20% gc time, 96.01% compilation time)
4.377793 seconds (3.92 M allocations: 213.199 MiB, 2.92% gc time, 92.33% compilation time)
0.267883 seconds (424 allocations: 664.984 KiB, 3.89% compilation time)
0.861771 seconds (622.89 k allocations: 33.675 MiB, 96.83% compilation time)
0.505929 seconds (459.14 k allocations: 25.377 MiB, 88.21% compilation time)
0.221421 seconds (45.35 k allocations: 3.461 MiB, 31.71% gc time, 71.32% compilation time)
0.474403 seconds (330.26 k allocations: 18.847 MiB, 88.06% compilation time)
0.123226 seconds (45.34 k allocations: 3.459 MiB, 28.25% compilation time)
0.791102 seconds (605.88 k allocations: 32.638 MiB, 6.35% gc time, 97.92% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
1.527355 seconds (1.71 M allocations: 97.643 MiB, 3.48% gc time, 99.85% compilation time)
0.587382 seconds (214.01 k allocations: 12.473 MiB, 3.65% gc time, 43.42% compilation time)
0.414315 seconds (45.43 k allocations: 3.737 MiB, 17.50% compilation time)
0.509307 seconds (194.63 k allocations: 11.278 MiB, 63.64% compilation time)
0.292642 seconds (44.67 k allocations: 3.698 MiB, 29.78% compilation time)
0.780491 seconds (214.58 k allocations: 12.491 MiB, 56.27% compilation time)
2.387863 seconds (1.46 M allocations: 84.028 MiB, 3.73% gc time, 80.85% compilation time)
0.684773 seconds (199.63 k allocations: 11.872 MiB, 34.36% compilation time)
0.240841 seconds (41.64 k allocations: 3.501 MiB, 20.65% compilation time)
0.470890 seconds (194.64 k allocations: 11.281 MiB, 84.47% compilation time)
0.436348 seconds (44.74 k allocations: 3.701 MiB, 23.21% compilation time)
0.463829 seconds (198.03 k allocations: 11.482 MiB, 29.57% gc time, 85.67% compilation time)
2.284025 seconds (2.11 M allocations: 126.601 MiB, 3.10% gc time, 93.79% compilation time)
0.960928 seconds (764.26 k allocations: 51.408 MiB, 5.18% gc time, 84.91% compilation time)
0.354110 seconds (64.56 k allocations: 11.165 MiB, 33.69% compilation time)
0.322938 seconds (15.03 k allocations: 7.825 MiB, 5.52% gc time, 6.80% compilation time)
0.187099 seconds (60.11 k allocations: 10.937 MiB, 18.44% compilation time)
2.091954 seconds (1.96 M allocations: 123.776 MiB, 3.49% gc time, 94.08% compilation time)
0.495782 seconds (15.25 k allocations: 14.355 MiB, 2.04% compilation time)
0.512236 seconds (349.17 k allocations: 26.228 MiB, 12.02% gc time, 87.71% compilation time)
0.907084 seconds (424.80 k allocations: 29.740 MiB, 10.65% gc time, 51.45% compilation time)
0.298293 seconds (59.34 k allocations: 10.933 MiB, 34.48% compilation time)
0.990215 seconds (359.80 k allocations: 26.113 MiB, 1.79% gc time, 58.67% compilation time)
0.342293 seconds (63.30 k allocations: 11.134 MiB, 29.46% compilation time)
1.546595 seconds (392.55 k allocations: 33.907 MiB, 4.93% gc time, 40.89% compilation time)
0.705391 seconds (155.54 k allocations: 22.562 MiB, 41.91% compilation time)
1.376870 seconds (204.62 k allocations: 23.244 MiB, 1.86% gc time, 29.43% compilation time)
1.107630 seconds (345.56 k allocations: 25.347 MiB, 50.14% compilation time)
0.000318 seconds (55 allocations: 12.141 KiB)
0.000187 seconds (55 allocations: 12.141 KiB)
0.000238 seconds (74 allocations: 12.766 KiB)
0.000132 seconds (78 allocations: 12.828 KiB)
0.000110 seconds (78 allocations: 12.828 KiB)
0.000125 seconds (74 allocations: 12.766 KiB)
0.000253 seconds (74 allocations: 12.766 KiB)
0.000167 seconds (73 allocations: 12.750 KiB)
0.000133 seconds (65 allocations: 12.422 KiB)
0.000233 seconds (42 allocations: 18.812 KiB)
0.000212 seconds (52 allocations: 19.094 KiB)
0.000163 seconds (43 allocations: 19.297 KiB)
0.000188 seconds (44 allocations: 19.781 KiB)
0.000507 seconds (92 allocations: 20.672 KiB)
0.000326 seconds (92 allocations: 20.672 KiB)
0.000345 seconds (135 allocations: 22.234 KiB)
0.000296 seconds (135 allocations: 22.234 KiB)
0.000369 seconds (139 allocations: 22.297 KiB)
0.000303 seconds (171 allocations: 22.000 KiB)
1.202816 seconds (1.19 M allocations: 66.594 MiB, 5.79% gc time, 99.97% compilation time)
0.149781 seconds (105.97 k allocations: 6.562 MiB, 99.38% compilation time)
0.021959 seconds (54.47 k allocations: 3.717 MiB, 98.54% compilation time)
0.014183 seconds (3.78 k allocations: 215.284 KiB, 97.77% compilation time)
0.504397 seconds (537.49 k allocations: 29.750 MiB, 4.32% gc time, 99.94% compilation time)
0.437118 seconds (491.12 k allocations: 26.957 MiB, 4.40% gc time, 99.93% compilation time)
0.701328 seconds (845.20 k allocations: 46.741 MiB, 99.95% compilation time)
0.400775 seconds (490.01 k allocations: 26.863 MiB, 99.91% compilation time)
0.000237 seconds (77 allocations: 25.094 KiB)
1.086571 seconds (1.31 M allocations: 72.619 MiB, 4.21% gc time, 99.96% compilation time)
0.651490 seconds (643.16 k allocations: 34.371 MiB, 3.50% gc time, 99.93% compilation time)
0.392498 seconds (458.89 k allocations: 25.077 MiB, 5.35% gc time, 99.92% compilation time)
0.017871 seconds (45.33 k allocations: 3.151 MiB, 98.28% compilation time)
0.276876 seconds (328.33 k allocations: 18.412 MiB, 13.20% gc time, 99.89% compilation time)
0.024973 seconds (45.33 k allocations: 3.150 MiB, 98.78% compilation time)
0.505924 seconds (559.20 k allocations: 29.971 MiB, 99.89% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
0.001566 seconds (352 allocations: 29.000 KiB)
0.282191 seconds (215.83 k allocations: 12.056 MiB, 96.90% compilation time)
0.018804 seconds (45.40 k allocations: 3.151 MiB, 90.34% compilation time)
0.265030 seconds (196.47 k allocations: 10.862 MiB, 97.99% compilation time)
0.033951 seconds (44.66 k allocations: 3.113 MiB, 96.35% compilation time)
0.310726 seconds (229.76 k allocations: 12.856 MiB, 99.75% compilation time)
0.418100 seconds (226.41 k allocations: 12.146 MiB, 7.94% gc time, 99.54% compilation time)
0.274958 seconds (198.39 k allocations: 10.664 MiB, 99.71% compilation time)
0.017420 seconds (41.62 k allocations: 2.917 MiB, 86.53% compilation time)
0.305379 seconds (196.49 k allocations: 10.869 MiB, 99.76% compilation time)
0.017631 seconds (44.71 k allocations: 3.115 MiB, 96.78% compilation time)
0.308312 seconds (199.78 k allocations: 11.074 MiB, 6.01% gc time, 93.22% compilation time)
1.020863 seconds (1.03 M allocations: 58.556 MiB, 2.13% gc time, 99.89% compilation time)
0.355257 seconds (368.23 k allocations: 20.431 MiB, 5.45% gc time, 99.69% compilation time)
0.026611 seconds (50.07 k allocations: 3.425 MiB, 97.13% compilation time)
0.006183 seconds (685 allocations: 96.094 KiB, 88.00% compilation time)
0.017007 seconds (45.76 k allocations: 3.204 MiB, 95.35% compilation time)
0.000702 seconds (573 allocations: 133.875 KiB)
0.715096 seconds (761.09 k allocations: 42.480 MiB, 2.74% gc time, 99.84% compilation time)
0.292187 seconds (366.44 k allocations: 20.332 MiB, 99.70% compilation time)
0.443473 seconds (437.12 k allocations: 23.698 MiB, 4.09% gc time, 99.76% compilation time)
0.022867 seconds (44.98 k allocations: 3.168 MiB, 68.24% compilation time)
0.477149 seconds (384.56 k allocations: 20.675 MiB, 99.77% compilation time)
0.042733 seconds (48.82 k allocations: 3.362 MiB, 98.12% compilation time)
0.534781 seconds (366.25 k allocations: 19.094 MiB, 3.70% gc time, 99.84% compilation time)
0.013941 seconds (11.12 k allocations: 771.596 KiB, 94.07% compilation time)
0.381302 seconds (189.21 k allocations: 8.873 MiB, 99.08% compilation time)
0.413361 seconds (368.47 k allocations: 19.822 MiB, 99.65% compilation time)
0.000000 seconds
0.328032 seconds (250.41 k allocations: 14.034 MiB, 74.00% compilation time)
0.021819 seconds (1.87 k allocations: 135.685 KiB, 59.69% compilation time)
0.010409 seconds (1.25 k allocations: 92.013 KiB, 70.68% compilation time)
0.012807 seconds (6.02 k allocations: 377.706 KiB, 99.52% compilation time)
0.045297 seconds (1.55 k allocations: 98.301 KiB, 99.88% compilation time)
0.001353 seconds (46 allocations: 201.719 KiB)
0.106150 seconds (14.91 k allocations: 933.937 KiB, 94.20% compilation time)
2.095319 seconds (406.60 k allocations: 33.932 MiB, 19.62% compilation time)
0.239991 seconds (96.73 k allocations: 6.132 MiB, 98.38% compilation time)
0.031626 seconds (13.79 k allocations: 983.524 KiB, 93.30% compilation time)
2.662544 seconds (556.13 k allocations: 52.788 MiB, 18.33% compilation time)
0.164521 seconds (44.71 k allocations: 2.979 MiB, 97.53% compilation time)
0.076247 seconds (48.16 k allocations: 2.944 MiB, 98.20% compilation time)
0.087411 seconds (47.26 k allocations: 2.902 MiB, 98.46% compilation time)
0.279402 seconds (45.86 k allocations: 3.024 MiB, 69.97% gc time, 98.61% compilation time)
0.066114 seconds (47.77 k allocations: 3.143 MiB, 94.12% compilation time)
0.121704 seconds (82.41 k allocations: 4.978 MiB, 97.92% compilation time)
1.129613 seconds (1.30 M allocations: 70.857 MiB, 96.67% compilation time)
0.488750 seconds (484.81 k allocations: 27.385 MiB, 92.10% compilation time)
0.100147 seconds (1.25 k allocations: 92.669 KiB, 7.56% compilation time)
0.308332 seconds (196.46 k allocations: 10.934 MiB, 99.98% compilation time)
0.010724 seconds (1.55 k allocations: 95.660 KiB, 99.45% compilation time)
0.123165 seconds (89.21 k allocations: 5.353 MiB, 98.00% compilation time)
0.031431 seconds (14.91 k allocations: 875.733 KiB, 97.53% compilation time)
4.584057 seconds (471.75 k allocations: 31.856 MiB, 4.74% gc time, 14.43% compilation time)
0.291555 seconds (102.35 k allocations: 6.292 MiB, 98.19% compilation time)
0.057681 seconds (13.79 k allocations: 872.274 KiB, 95.98% compilation time)
6.460047 seconds (1.85 M allocations: 111.054 MiB, 26.62% compilation time)
0.168046 seconds (44.71 k allocations: 2.778 MiB, 98.17% compilation time)
0.083592 seconds (48.16 k allocations: 2.848 MiB, 98.54% compilation time)
0.103415 seconds (50.59 k allocations: 3.033 MiB, 98.83% compilation time)
0.071057 seconds (45.86 k allocations: 2.834 MiB, 96.20% compilation time)
0.075368 seconds (47.77 k allocations: 2.951 MiB, 95.89% compilation time)
0.127111 seconds (87.41 k allocations: 5.058 MiB, 97.50% compilation time)
0.003648 seconds (22 allocations: 1.438 KiB, 96.32% compilation time)
0.009908 seconds (5.61 k allocations: 380.217 KiB, 98.42% compilation time)
0.009594 seconds (5.61 k allocations: 379.982 KiB, 98.22% compilation time)
0.006003 seconds (68 allocations: 3.969 KiB, 98.13% compilation time)
0.003138 seconds (633 allocations: 43.238 KiB, 93.18% compilation time)
0.007429 seconds (3.98 k allocations: 260.764 KiB, 97.24% compilation time)
0.007346 seconds (3.98 k allocations: 260.967 KiB, 97.66% compilation time)
0.005741 seconds (68 allocations: 3.969 KiB, 97.13% compilation time)
0.003641 seconds (631 allocations: 43.082 KiB, 95.89% compilation time)
0.009083 seconds (3.97 k allocations: 260.576 KiB, 98.22% compilation time)
0.009476 seconds (3.97 k allocations: 260.670 KiB, 98.21% compilation time)
0.007130 seconds (68 allocations: 3.969 KiB, 98.13% compilation time)
0.004162 seconds (631 allocations: 43.082 KiB, 93.92% compilation time)
0.009045 seconds (3.97 k allocations: 260.576 KiB, 97.40% compilation time)
0.008789 seconds (3.98 k allocations: 260.826 KiB, 97.90% compilation time)
0.007055 seconds (68 allocations: 3.969 KiB, 97.18% compilation time)
0.000000 seconds
0.000000 seconds
0.060037 seconds (1.02 k allocations: 90.451 KiB, 15.18% compilation time)
0.035667 seconds (2.44 k allocations: 181.779 KiB, 26.93% compilation time)
0.015774 seconds (766 allocations: 68.356 KiB, 63.14% compilation time)
0.019192 seconds (5.14 k allocations: 327.855 KiB, 99.48% compilation time)
0.028538 seconds (2.00 k allocations: 122.809 KiB, 99.75% compilation time)
0.001621 seconds (5.95 k allocations: 758.000 KiB)
0.082803 seconds (30.84 k allocations: 2.144 MiB, 97.90% compilation time)
0.062156 seconds (30.84 k allocations: 2.140 MiB, 97.21% compilation time)
0.111027 seconds (48.58 k allocations: 3.193 MiB, 98.52% compilation time)
0.676104 seconds (486.73 k allocations: 26.712 MiB, 99.54% compilation time)
0.066131 seconds (47.04 k allocations: 3.797 MiB, 95.22% compilation time)
0.036307 seconds (28.77 k allocations: 2.962 MiB, 90.87% compilation time)
0.061968 seconds (46.50 k allocations: 4.014 MiB, 94.57% compilation time)
4.452423 seconds (21.97 k allocations: 17.752 MiB, 1.05% compilation time)
0.000000 seconds
0.000000 seconds
0.307234 seconds (14.27 k allocations: 872.496 KiB, 42.51% compilation time)
0.222859 seconds (212.70 k allocations: 11.961 MiB, 94.35% compilation time)
0.012819 seconds (767 allocations: 68.435 KiB, 65.81% compilation time)
0.084370 seconds (2.01 k allocations: 114.624 KiB, 99.92% compilation time)
0.007098 seconds (2.00 k allocations: 120.121 KiB, 99.38% compilation time)
6.318698 seconds (6.68 M allocations: 256.859 MiB, 3.04% gc time, 99.98% compilation time)
0.054822 seconds (30.48 k allocations: 1.891 MiB, 97.40% compilation time)
0.046445 seconds (30.48 k allocations: 1.892 MiB, 96.79% compilation time)
0.065540 seconds (49.15 k allocations: 3.014 MiB, 97.89% compilation time)
0.737704 seconds (503.12 k allocations: 27.011 MiB, 5.49% gc time, 99.68% compilation time)
0.083380 seconds (47.55 k allocations: 3.371 MiB, 97.17% compilation time)
0.033063 seconds (28.77 k allocations: 2.378 MiB, 93.16% compilation time)
0.063752 seconds (47.44 k allocations: 3.498 MiB, 95.64% compilation time)
3.354080 seconds (21.96 k allocations: 9.503 MiB, 1.68% compilation time)
0.082163 seconds (6.57 k allocations: 691.441 KiB, 78.61% compilation time)
0.030204 seconds (9.91 k allocations: 910.717 KiB, 95.99% compilation time)
0.010960 seconds (9.91 k allocations: 906.982 KiB, 88.82% compilation time)
0.008666 seconds (5.99 k allocations: 651.875 KiB, 86.61% compilation time)
0.048487 seconds (5.80 k allocations: 1.190 MiB, 87.71% gc time, 9.14% compilation time)
0.018434 seconds (9.14 k allocations: 1.664 MiB, 93.11% compilation time)
0.014787 seconds (9.14 k allocations: 1.402 MiB, 92.37% compilation time)
0.008329 seconds (5.23 k allocations: 1.413 MiB, 84.82% compilation time)
0.004873 seconds (6.20 k allocations: 487.176 KiB, 80.42% compilation time)
0.017680 seconds (9.54 k allocations: 705.623 KiB, 95.01% compilation time)
0.013845 seconds (9.54 k allocations: 705.654 KiB, 93.44% compilation time)
0.012107 seconds (5.62 k allocations: 449.578 KiB, 93.01% compilation time)
0.004826 seconds (5.80 k allocations: 852.488 KiB, 74.22% compilation time)
0.009856 seconds (9.14 k allocations: 1.183 MiB, 88.76% compilation time)
0.010096 seconds (9.14 k allocations: 1.045 MiB, 88.50% compilation time)
0.008439 seconds (5.23 k allocations: 954.203 KiB, 86.45% compilation time)
0.006333 seconds (665 allocations: 45.670 KiB, 99.02% compilation time)
0.137278 seconds (200.68 k allocations: 11.189 MiB, 99.96% compilation time)
0.011237 seconds (1.21 k allocations: 73.465 KiB, 99.56% compilation time)
0.007023 seconds (660 allocations: 45.201 KiB, 99.25% compilation time)
0.156696 seconds (236.68 k allocations: 13.480 MiB, 99.97% compilation time)
0.000088 seconds (60 allocations: 6.172 KiB)
0.123291 seconds (100.91 k allocations: 5.863 MiB, 99.89% compilation time)
1.053122 seconds (556.91 k allocations: 27.041 MiB, 1.68% gc time, 99.99% compilation time)
0.028281 seconds (21.23 k allocations: 1.212 MiB, 99.56% compilation time)
0.058740 seconds (56.40 k allocations: 3.270 MiB, 99.77% compilation time)
0.063085 seconds (56.39 k allocations: 3.271 MiB, 99.77% compilation time)
0.000122 seconds (60 allocations: 6.172 KiB)
0.036280 seconds (29.21 k allocations: 1.679 MiB, 99.67% compilation time)
0.095379 seconds (67.89 k allocations: 4.036 MiB, 22.50% gc time, 99.75% compilation time)
0.069819 seconds (64.03 k allocations: 3.810 MiB, 99.72% compilation time)
0.075682 seconds (67.77 k allocations: 3.997 MiB, 99.77% compilation time)
0.000038 seconds (64 allocations: 6.234 KiB)
0.000017 seconds (68 allocations: 6.297 KiB)
0.000030 seconds (64 allocations: 6.234 KiB)
0.070695 seconds (69.39 k allocations: 4.086 MiB, 99.72% compilation time)
0.023074 seconds (10.04 k allocations: 578.440 KiB, 99.73% compilation time)
0.023274 seconds (10.03 k allocations: 576.815 KiB, 99.76% compilation time)
0.027077 seconds (11.20 k allocations: 661.697 KiB, 99.72% compilation time)
0.186047 seconds (130.04 k allocations: 7.204 MiB, 99.97% compilation time)
0.740486 seconds (629.12 k allocations: 34.608 MiB, 3.30% gc time, 99.99% compilation time)
0.171933 seconds (200.69 k allocations: 11.191 MiB, 99.96% compilation time)
0.010690 seconds (1.21 k allocations: 73.574 KiB, 99.58% compilation time)
0.012275 seconds (660 allocations: 45.186 KiB, 99.52% compilation time)
0.175347 seconds (230.29 k allocations: 13.021 MiB, 99.98% compilation time)
65.826386 seconds (36.85 M allocations: 1.379 GiB, 2.80% gc time, 100.00% compilation time)
2.651602 seconds (2.02 M allocations: 89.890 MiB, 99.98% compilation time)
1.207819 seconds (520.43 k allocations: 24.729 MiB, 14.25% gc time, 99.98% compilation time)
0.024620 seconds (8.86 k allocations: 503.958 KiB, 99.48% compilation time)
0.063933 seconds (56.40 k allocations: 3.269 MiB, 99.79% compilation time)
0.075750 seconds (56.39 k allocations: 3.268 MiB, 99.81% compilation time)
0.000070 seconds (57 allocations: 5.062 KiB)
0.039443 seconds (30.73 k allocations: 1.777 MiB, 99.67% compilation time)
0.097175 seconds (67.93 k allocations: 4.037 MiB, 99.79% compilation time)
0.068612 seconds (64.03 k allocations: 3.809 MiB, 99.74% compilation time)
0.069092 seconds (67.78 k allocations: 3.996 MiB, 99.78% compilation time)
0.000047 seconds (61 allocations: 5.125 KiB)
0.000022 seconds (65 allocations: 5.188 KiB)
0.000027 seconds (61 allocations: 5.125 KiB)
0.091709 seconds (69.45 k allocations: 4.089 MiB, 99.79% compilation time)
0.023891 seconds (10.03 k allocations: 576.815 KiB, 99.76% compilation time)
0.023773 seconds (10.03 k allocations: 576.706 KiB, 99.80% compilation time)
0.038961 seconds (11.20 k allocations: 662.510 KiB, 99.71% compilation time)
0.195221 seconds (133.20 k allocations: 7.405 MiB, 99.96% compilation time)
0.005123 seconds (773 allocations: 50.980 KiB, 98.31% compilation time)
0.010947 seconds (7.29 k allocations: 497.092 KiB, 99.27% compilation time)
0.010580 seconds (7.30 k allocations: 497.877 KiB, 99.28% compilation time)
0.008415 seconds (94 allocations: 5.984 KiB, 99.48% compilation time)
0.004107 seconds (764 allocations: 50.215 KiB, 98.09% compilation time)
0.009364 seconds (5.66 k allocations: 378.205 KiB, 99.22% compilation time)
0.009712 seconds (5.65 k allocations: 377.420 KiB, 99.30% compilation time)
0.007942 seconds (86 allocations: 5.547 KiB, 99.59% compilation time)
0.008025 seconds (766 allocations: 49.980 KiB, 99.14% compilation time)
0.010464 seconds (5.65 k allocations: 377.295 KiB, 99.30% compilation time)
0.010611 seconds (5.66 k allocations: 378.080 KiB, 99.24% compilation time)
0.008462 seconds (91 allocations: 5.562 KiB, 99.54% compilation time)
0.008760 seconds (761 allocations: 49.965 KiB, 99.29% compilation time)
0.009679 seconds (5.65 k allocations: 378.064 KiB, 99.33% compilation time)
0.010062 seconds (5.64 k allocations: 377.279 KiB, 99.30% compilation time)
0.007976 seconds (86 allocations: 5.547 KiB, 99.62% compilation time)
0.178724 seconds (123.60 k allocations: 7.043 MiB, 99.91% compilation time)
0.000070 seconds (52 allocations: 5.562 KiB)
0.149301 seconds (126.15 k allocations: 7.206 MiB, 99.33% compilation time)
0.000085 seconds (50 allocations: 6.359 KiB)
0.078198 seconds (38.90 k allocations: 2.153 MiB, 99.83% compilation time)
0.078554 seconds (41.42 k allocations: 2.257 MiB, 99.84% compilation time)
0.103057 seconds (55.24 k allocations: 3.082 MiB, 99.85% compilation time)
0.110740 seconds (73.60 k allocations: 4.143 MiB, 99.74% compilation time)
0.000020 seconds (29 allocations: 2.688 KiB)
0.087752 seconds (73.60 k allocations: 4.142 MiB, 99.91% compilation time)
0.000016 seconds (29 allocations: 3.312 KiB)
0.145384 seconds (126.64 k allocations: 7.210 MiB, 99.88% compilation time)
0.000080 seconds (52 allocations: 4.844 KiB)
0.142637 seconds (129.94 k allocations: 7.419 MiB, 99.87% compilation time)
0.000088 seconds (50 allocations: 5.062 KiB)
0.065852 seconds (38.90 k allocations: 2.150 MiB, 99.81% compilation time)
0.068066 seconds (41.42 k allocations: 2.255 MiB, 99.80% compilation time)
0.073425 seconds (55.24 k allocations: 3.080 MiB, 99.79% compilation time)
0.195883 seconds (204.65 k allocations: 11.826 MiB, 99.97% compilation time)
0.000018 seconds (29 allocations: 2.406 KiB)
0.278676 seconds (234.82 k allocations: 13.385 MiB, 99.98% compilation time)
0.000018 seconds (29 allocations: 2.688 KiB)
0.064066 seconds (41.22 k allocations: 2.231 MiB, 99.78% compilation time)
0.065434 seconds (37.99 k allocations: 2.130 MiB, 99.81% compilation time)
0.000031 seconds (63 allocations: 5.797 KiB)
0.062519 seconds (39.69 k allocations: 2.177 MiB, 99.79% compilation time)
0.104611 seconds (41.48 k allocations: 2.241 MiB, 99.87% compilation time)
0.101540 seconds (75.69 k allocations: 4.398 MiB, 99.87% compilation time)
0.007206 seconds (86 allocations: 8.266 KiB, 98.37% compilation time)
0.075414 seconds (40.11 k allocations: 2.198 MiB, 99.79% compilation time)
0.120093 seconds (80.43 k allocations: 4.654 MiB, 99.85% compilation time)
0.118455 seconds (82.66 k allocations: 4.555 MiB, 99.94% compilation time)
0.171747 seconds (41.21 k allocations: 2.228 MiB, 55.92% gc time, 99.93% compilation time)
0.065979 seconds (37.99 k allocations: 2.130 MiB, 99.81% compilation time)
0.000039 seconds (63 allocations: 5.094 KiB)
0.072690 seconds (40.83 k allocations: 2.258 MiB, 99.79% compilation time)
0.074793 seconds (41.48 k allocations: 2.238 MiB, 99.82% compilation time)
0.101050 seconds (75.69 k allocations: 4.393 MiB, 99.84% compilation time)
0.008487 seconds (2.90 k allocations: 200.107 KiB, 97.98% compilation time)
0.072195 seconds (41.25 k allocations: 2.277 MiB, 99.76% compilation time)
0.102788 seconds (81.17 k allocations: 4.702 MiB, 99.80% compilation time)
0.117980 seconds (84.86 k allocations: 4.687 MiB, 99.94% compilation time)
0.031269 seconds (1.05 k allocations: 64.761 KiB, 99.67% compilation time)
0.000037 seconds (17 allocations: 960 bytes)
0.030042 seconds (1.04 k allocations: 64.386 KiB, 99.62% compilation time)
0.000032 seconds (17 allocations: 960 bytes)
0.000024 seconds (17 allocations: 960 bytes)
0.000011 seconds (17 allocations: 960 bytes)
0.000012 seconds (17 allocations: 960 bytes)
0.000009 seconds (17 allocations: 960 bytes)
0.026180 seconds (9.99 k allocations: 593.906 KiB, 99.63% compilation time)
0.075711 seconds (42.61 k allocations: 2.318 MiB, 99.86% compilation time)
0.027120 seconds (10.46 k allocations: 612.473 KiB, 99.67% compilation time)
0.082133 seconds (47.76 k allocations: 2.605 MiB, 99.88% compilation time)
0.031299 seconds (1.05 k allocations: 64.526 KiB, 99.71% compilation time)
0.000030 seconds (17 allocations: 960 bytes)
0.028460 seconds (1.04 k allocations: 64.386 KiB, 99.70% compilation time)
0.000035 seconds (17 allocations: 960 bytes)
0.000026 seconds (17 allocations: 960 bytes)
0.000009 seconds (17 allocations: 960 bytes)
0.000010 seconds (17 allocations: 960 bytes)
0.000006 seconds (17 allocations: 960 bytes)
0.022958 seconds (9.99 k allocations: 593.344 KiB, 99.72% compilation time)
0.073414 seconds (41.28 k allocations: 2.236 MiB, 99.90% compilation time)
0.025065 seconds (10.46 k allocations: 612.410 KiB, 99.70% compilation time)
0.080539 seconds (47.77 k allocations: 2.605 MiB, 99.90% compilation time)
0.233632 seconds (18 allocations: 157.203 KiB)
0.611871 seconds (18 allocations: 312.609 KiB)
0.215870 seconds (14 allocations: 117.453 KiB)
0.835040 seconds (14 allocations: 233.328 KiB)
0.489515 seconds (24 allocations: 318.500 KiB)
1.148840 seconds (23 allocations: 635.438 KiB)
0.492735 seconds (20 allocations: 238.547 KiB)
0.007080 seconds (19 allocations: 475.578 KiB)
0.080749 seconds (16 allocations: 155.859 KiB)
0.883896 seconds (16 allocations: 309.984 KiB)
0.253925 seconds (19 allocations: 156.766 KiB)
0.897838 seconds (19 allocations: 311.781 KiB)
0.387619 seconds (19 allocations: 316.672 KiB)
1.379835 seconds (19 allocations: 631.844 KiB)
0.311679 seconds (20 allocations: 317.547 KiB)
1.200895 seconds (20 allocations: 633.609 KiB)
0.206556 seconds (30 allocations: 469.391 KiB)
0.001117 seconds (32 allocations: 470.359 KiB)
0.002152 seconds (30 allocations: 935.641 KiB)
0.001950 seconds (32 allocations: 937.391 KiB)
0.000846 seconds (36 allocations: 470.984 KiB)
0.000002 seconds
0.000000 seconds
4.414105 seconds (4.85 M allocations: 235.406 MiB, 3.58% gc time, 99.97% compilation time)
0.000690 seconds (310 allocations: 141.688 KiB)
0.000680 seconds (294 allocations: 138.562 KiB)
0.014549 seconds (4.41 k allocations: 398.892 KiB, 88.59% compilation time)
0.100565 seconds (89.36 k allocations: 5.516 MiB, 99.16% compilation time)
0.000722 seconds (291 allocations: 144.688 KiB)
1.992630 seconds (1.81 M allocations: 96.226 MiB, 3.83% gc time, 98.87% compilation time)
0.006556 seconds (519 allocations: 276.250 KiB)
0.004576 seconds (530 allocations: 279.891 KiB)
0.229782 seconds (89.11 k allocations: 5.641 MiB, 18.88% gc time, 99.13% compilation time)
0.002003 seconds (561 allocations: 303.672 KiB)
0.035550 seconds (4.73 k allocations: 566.099 KiB, 38.49% compilation time)
0.059807 seconds (41.59 k allocations: 2.613 MiB, 96.35% compilation time)
0.199608 seconds (43.19 k allocations: 2.777 MiB, 93.28% compilation time)
0.143960 seconds (41.58 k allocations: 2.625 MiB, 93.66% compilation time)
0.134276 seconds (43.19 k allocations: 2.789 MiB, 89.04% compilation time)
5.258676 seconds (5.36 M allocations: 263.524 MiB, 3.79% gc time, 99.98% compilation time)
0.000656 seconds (334 allocations: 84.938 KiB)
0.000630 seconds (313 allocations: 82.016 KiB)
0.013344 seconds (4.42 k allocations: 342.173 KiB, 94.80% compilation time)
0.160913 seconds (150.55 k allocations: 9.296 MiB, 99.54% compilation time)
0.000608 seconds (320 allocations: 86.109 KiB)
2.473200 seconds (2.39 M allocations: 127.478 MiB, 4.07% gc time, 99.91% compilation time)
0.011349 seconds (519 allocations: 158.406 KiB)
0.008416 seconds (534 allocations: 161.812 KiB)
0.334989 seconds (150.28 k allocations: 9.351 MiB, 43.33% gc time, 99.44% compilation time)
0.007945 seconds (568 allocations: 174.672 KiB)
0.027599 seconds (4.73 k allocations: 436.161 KiB, 80.61% compilation time)
0.208594 seconds (41.59 k allocations: 2.498 MiB, 86.03% compilation time)
0.237438 seconds (43.20 k allocations: 2.650 MiB, 97.39% compilation time)
0.171463 seconds (41.58 k allocations: 2.502 MiB, 87.53% compilation time)
0.184165 seconds (43.19 k allocations: 2.655 MiB, 95.79% compilation time)
0.000001 seconds
0.000000 seconds
78.031494 seconds (30.91 M allocations: 1.140 GiB, 1.62% gc time, 100.00% compilation time)
0.001947 seconds (4.95 k allocations: 507.203 KiB)
0.001999 seconds (4.93 k allocations: 504.000 KiB)
0.098165 seconds (56.84 k allocations: 3.553 MiB, 97.80% compilation time)
0.002051 seconds (4.96 k allocations: 528.141 KiB)
4.078590 seconds (3.15 M allocations: 147.292 MiB, 7.00% gc time, 99.21% compilation time)
0.009643 seconds (3.17 k allocations: 819.969 KiB)
0.028238 seconds (3.19 k allocations: 825.078 KiB)
0.223867 seconds (55.11 k allocations: 3.879 MiB, 16.66% gc time, 76.58% compilation time)
0.015916 seconds (3.25 k allocations: 871.469 KiB)
0.153465 seconds (54.02 k allocations: 3.754 MiB, 92.58% compilation time)
0.159882 seconds (57.83 k allocations: 4.047 MiB, 92.16% compilation time)
0.201253 seconds (53.31 k allocations: 3.701 MiB, 94.05% compilation time)
0.207557 seconds (56.72 k allocations: 3.976 MiB, 73.10% compilation time)
0.177316 seconds (84.77 k allocations: 4.940 MiB, 23.86% gc time, 74.62% compilation time)
0.001977 seconds (4.90 k allocations: 509.500 KiB)
0.001978 seconds (4.88 k allocations: 514.031 KiB)
0.119634 seconds (85.43 k allocations: 5.037 MiB, 98.22% compilation time)
0.001908 seconds (4.92 k allocations: 536.953 KiB)
0.137164 seconds (82.37 k allocations: 5.213 MiB, 84.10% compilation time)
0.008658 seconds (3.17 k allocations: 821.297 KiB)
0.043079 seconds (3.19 k allocations: 841.125 KiB)
0.349286 seconds (83.16 k allocations: 5.341 MiB, 98.14% compilation time)
0.011806 seconds (3.25 k allocations: 885.578 KiB)
0.203932 seconds (84.08 k allocations: 5.341 MiB, 95.78% compilation time)
0.227637 seconds (86.95 k allocations: 5.565 MiB, 96.87% compilation time)
0.269612 seconds (157.35 k allocations: 9.582 MiB, 97.36% compilation time)
0.171069 seconds (83.16 k allocations: 5.340 MiB, 97.47% compilation time)
11.020014 seconds (9.22 M allocations: 389.036 MiB, 2.54% gc time, 100.00% compilation time)
0.000248 seconds (263 allocations: 68.844 KiB)
0.015921 seconds (8.90 k allocations: 588.835 KiB, 97.55% compilation time)
0.058863 seconds (39.20 k allocations: 2.381 MiB, 99.33% compilation time)
0.000271 seconds (265 allocations: 69.172 KiB)
1.222541 seconds (599.87 k allocations: 29.424 MiB, 3.56% gc time, 99.94% compilation time)
0.187541 seconds (39.60 k allocations: 2.469 MiB, 99.64% compilation time)
0.056344 seconds (9.36 k allocations: 682.843 KiB, 98.79% compilation time)
0.014799 seconds (319 allocations: 50.438 KiB, 98.09% compilation time)
0.055229 seconds (12.20 k allocations: 767.767 KiB, 99.32% compilation time)
0.000211 seconds (258 allocations: 46.484 KiB)
0.009213 seconds (590 allocations: 115.484 KiB, 93.19% compilation time)
0.000575 seconds (500 allocations: 102.578 KiB)
0.120339 seconds (11.94 k allocations: 801.187 KiB, 99.47% compilation time)
72.808425 seconds (30.44 M allocations: 1.130 GiB, 1.94% gc time, 100.00% compilation time)
0.000999 seconds (4.89 k allocations: 429.531 KiB)
0.061454 seconds (51.81 k allocations: 3.230 MiB, 98.10% compilation time)
0.000997 seconds (4.93 k allocations: 446.781 KiB)
0.839375 seconds (596.49 k allocations: 30.260 MiB, 99.81% compilation time)
0.152062 seconds (49.97 k allocations: 3.481 MiB, 99.15% compilation time)
0.041861 seconds (4.98 k allocations: 420.688 KiB, 76.06% compilation time)
0.006467 seconds (4.92 k allocations: 417.172 KiB)
0.000906 seconds (4.88 k allocations: 407.156 KiB)
0.048789 seconds (3.21 k allocations: 642.203 KiB, 89.73% compilation time)
0.193221 seconds (3.14 k allocations: 638.688 KiB, 99.37% gc time)
0.000866 seconds (3.20 k allocations: 657.188 KiB)
10.145913 seconds (9.32 M allocations: 393.307 MiB, 2.04% gc time, 100.00% compilation time)
0.000308 seconds (263 allocations: 44.438 KiB)
0.014332 seconds (8.89 k allocations: 562.913 KiB, 97.80% compilation time)
0.064641 seconds (39.20 k allocations: 2.357 MiB, 99.49% compilation time)
0.000278 seconds (265 allocations: 44.469 KiB)
1.251427 seconds (664.92 k allocations: 32.579 MiB, 99.95% compilation time)
0.066989 seconds (39.60 k allocations: 2.415 MiB, 98.98% compilation time)
0.020494 seconds (9.36 k allocations: 626.108 KiB, 96.93% compilation time)
0.009556 seconds (318 allocations: 36.406 KiB, 96.76% compilation time)
0.124888 seconds (12.20 k allocations: 754.815 KiB, 99.71% compilation time)
0.000235 seconds (258 allocations: 32.953 KiB)
0.028613 seconds (589 allocations: 79.766 KiB, 97.97% compilation time)
0.000507 seconds (500 allocations: 70.516 KiB)
0.028206 seconds (11.94 k allocations: 765.955 KiB, 97.86% compilation time)
146.533993 seconds (59.65 M allocations: 2.187 GiB, 1.84% gc time, 100.00% compilation time)
0.000928 seconds (4.89 k allocations: 352.688 KiB)
0.071885 seconds (51.82 k allocations: 3.148 MiB, 98.44% compilation time)
0.000957 seconds (4.93 k allocations: 362.266 KiB)
4.901508 seconds (3.94 M allocations: 184.887 MiB, 2.99% gc time, 99.98% compilation time)
0.166951 seconds (49.97 k allocations: 3.266 MiB, 99.31% compilation time)
0.010345 seconds (4.98 k allocations: 350.547 KiB, 87.16% compilation time)
0.000929 seconds (4.92 k allocations: 347.031 KiB)
0.005075 seconds (4.89 k allocations: 341.188 KiB)
0.034150 seconds (3.21 k allocations: 457.281 KiB, 97.02% compilation time)
0.000990 seconds (3.14 k allocations: 453.766 KiB)
0.000866 seconds (3.20 k allocations: 465.359 KiB)
0.000007 seconds
0.000001 seconds
0.218670 seconds (212.39 k allocations: 13.226 MiB, 99.03% compilation time)
0.001291 seconds (4.46 k allocations: 544.453 KiB)
0.001506 seconds (3.57 k allocations: 401.312 KiB)
0.013468 seconds (7.69 k allocations: 661.548 KiB, 90.47% compilation time)
0.058513 seconds (45.66 k allocations: 2.840 MiB, 97.70% compilation time)
0.001144 seconds (3.63 k allocations: 414.406 KiB)
0.057212 seconds (42.60 k allocations: 2.861 MiB, 94.76% compilation time)
0.007126 seconds (1.85 k allocations: 546.094 KiB)
0.007939 seconds (1.86 k allocations: 550.031 KiB)
0.208194 seconds (43.38 k allocations: 2.976 MiB, 98.89% compilation time)
0.015221 seconds (1.93 k allocations: 583.719 KiB)
0.214640 seconds (44.93 k allocations: 3.067 MiB, 81.54% compilation time)
0.076581 seconds (43.29 k allocations: 2.908 MiB, 87.73% compilation time)
0.130624 seconds (44.93 k allocations: 3.081 MiB, 92.20% compilation time)
0.368343 seconds (367.09 k allocations: 21.858 MiB, 99.15% compilation time)
0.001391 seconds (4.43 k allocations: 439.672 KiB)
0.001102 seconds (3.68 k allocations: 319.234 KiB)
0.014480 seconds (7.81 k allocations: 580.220 KiB, 91.15% compilation time)
0.058993 seconds (45.74 k allocations: 2.756 MiB, 97.58% compilation time)
0.001134 seconds (3.71 k allocations: 326.312 KiB)
0.061120 seconds (42.61 k allocations: 2.670 MiB, 94.39% compilation time)
0.001678 seconds (1.85 k allocations: 350.781 KiB)
0.003545 seconds (1.87 k allocations: 354.219 KiB)
0.096161 seconds (43.38 k allocations: 2.770 MiB, 92.40% compilation time)
0.011962 seconds (1.93 k allocations: 372.500 KiB)
0.258165 seconds (44.94 k allocations: 2.861 MiB, 94.16% compilation time)
0.134720 seconds (43.29 k allocations: 2.709 MiB, 53.67% compilation time)
0.167998 seconds (44.94 k allocations: 2.870 MiB, 90.55% compilation time)
0.000001 seconds
0.000000 seconds
0.442851 seconds (219.06 k allocations: 13.085 MiB, 12.45% gc time, 99.31% compilation time)
0.001977 seconds (5.22 k allocations: 560.781 KiB)
0.065531 seconds (53.77 k allocations: 3.320 MiB, 96.82% compilation time)
0.002256 seconds (5.93 k allocations: 610.062 KiB)
0.001849 seconds (5.12 k allocations: 535.516 KiB)
0.168276 seconds (184.21 k allocations: 11.357 MiB, 97.36% compilation time)
0.006280 seconds (3.23 k allocations: 837.969 KiB)
0.004016 seconds (3.24 k allocations: 841.250 KiB)
0.172031 seconds (54.38 k allocations: 3.835 MiB, 92.82% compilation time)
0.007641 seconds (3.31 k allocations: 888.047 KiB)
0.171398 seconds (53.29 k allocations: 3.709 MiB, 93.50% compilation time)
0.151950 seconds (57.10 k allocations: 4.002 MiB, 93.08% compilation time)
0.243818 seconds (79.36 k allocations: 5.032 MiB, 96.66% compilation time)
0.123843 seconds (55.98 k allocations: 3.931 MiB, 96.12% compilation time)
0.369646 seconds (262.48 k allocations: 15.530 MiB, 99.05% compilation time)
0.001972 seconds (5.18 k allocations: 432.141 KiB)
0.081532 seconds (53.74 k allocations: 3.204 MiB, 97.56% compilation time)
0.002318 seconds (5.81 k allocations: 495.562 KiB)
0.001769 seconds (5.09 k allocations: 417.734 KiB)
0.220753 seconds (233.37 k allocations: 13.733 MiB, 97.49% compilation time)
0.004197 seconds (3.23 k allocations: 557.391 KiB)
0.007510 seconds (3.24 k allocations: 560.141 KiB)
0.187535 seconds (54.38 k allocations: 3.540 MiB, 95.29% compilation time)
0.020474 seconds (3.31 k allocations: 585.766 KiB)
0.252239 seconds (53.29 k allocations: 3.423 MiB, 95.74% compilation time)
0.227092 seconds (57.11 k allocations: 3.697 MiB, 94.84% compilation time)
0.291818 seconds (79.36 k allocations: 4.757 MiB, 97.72% compilation time)
0.151063 seconds (55.98 k allocations: 3.632 MiB, 97.67% compilation time)
0.023480 seconds (8.03 k allocations: 638.821 KiB, 96.06% compilation time)
0.001030 seconds (4.45 k allocations: 478.969 KiB)
0.000792 seconds (3.53 k allocations: 331.484 KiB)
0.028100 seconds (6.61 k allocations: 531.978 KiB, 96.92% compilation time)
0.000756 seconds (3.60 k allocations: 337.016 KiB)
0.043964 seconds (4.88 k allocations: 621.212 KiB, 66.64% compilation time)
0.000740 seconds (1.84 k allocations: 418.766 KiB)
0.043370 seconds (4.91 k allocations: 629.728 KiB, 98.10% compilation time)
0.016842 seconds (3.59 k allocations: 312.781 KiB, 94.93% compilation time)
0.000731 seconds (3.59 k allocations: 314.625 KiB)
0.009277 seconds (1.90 k allocations: 376.047 KiB, 92.14% compilation time)
0.000765 seconds (1.89 k allocations: 390.891 KiB)
0.023555 seconds (8.15 k allocations: 658.637 KiB, 94.89% compilation time)
0.004712 seconds (5.08 k allocations: 460.672 KiB)
0.015061 seconds (8.24 k allocations: 677.012 KiB, 91.78% compilation time)
0.001106 seconds (5.18 k allocations: 479.734 KiB)
0.087827 seconds (6.30 k allocations: 908.480 KiB, 75.73% compilation time)
0.073868 seconds (6.33 k allocations: 931.199 KiB, 98.34% compilation time)
0.008128 seconds (5.14 k allocations: 441.812 KiB, 84.99% compilation time)
0.001115 seconds (5.17 k allocations: 450.125 KiB)
0.008044 seconds (3.26 k allocations: 660.906 KiB, 85.15% compilation time)
0.001083 seconds (3.26 k allocations: 675.688 KiB)
0.010386 seconds (6.51 k allocations: 439.634 KiB, 92.45% compilation time)
0.001005 seconds (4.59 k allocations: 413.953 KiB)
0.000629 seconds (3.50 k allocations: 244.281 KiB)
0.015476 seconds (6.55 k allocations: 443.587 KiB, 94.69% compilation time)
0.000627 seconds (3.54 k allocations: 248.703 KiB)
0.009340 seconds (4.88 k allocations: 486.212 KiB, 92.41% compilation time)
0.000541 seconds (1.84 k allocations: 286.484 KiB)
0.012223 seconds (4.91 k allocations: 491.774 KiB, 94.35% compilation time)
0.037145 seconds (3.55 k allocations: 236.250 KiB, 97.69% compilation time)
0.000702 seconds (3.53 k allocations: 237.188 KiB)
0.008080 seconds (1.89 k allocations: 266.312 KiB, 92.74% compilation time)
0.000602 seconds (1.89 k allocations: 274.453 KiB)
0.016531 seconds (8.21 k allocations: 568.590 KiB, 92.84% compilation time)
0.000958 seconds (5.15 k allocations: 371.203 KiB)
0.011596 seconds (8.29 k allocations: 578.902 KiB, 89.35% compilation time)
0.001049 seconds (5.23 k allocations: 381.562 KiB)
0.039467 seconds (6.30 k allocations: 691.184 KiB, 97.21% compilation time)
0.048227 seconds (6.33 k allocations: 703.949 KiB, 97.37% compilation time)
0.008161 seconds (5.21 k allocations: 363.219 KiB, 86.80% compilation time)
0.000847 seconds (5.22 k allocations: 366.328 KiB)
0.008149 seconds (3.26 k allocations: 468.875 KiB, 87.60% compilation time)
0.001007 seconds (3.26 k allocations: 476.953 KiB)
0.000261 seconds (56 allocations: 26.984 KiB)
0.074404 seconds (42.21 k allocations: 2.425 MiB, 99.11% compilation time)
0.010652 seconds (443 allocations: 40.703 KiB, 97.52% compilation time)
0.037689 seconds (8.79 k allocations: 511.525 KiB, 99.36% compilation time)
0.071048 seconds (37.40 k allocations: 2.114 MiB, 99.08% compilation time)
0.030221 seconds (10.32 k allocations: 631.900 KiB, 98.00% compilation time)
0.000238 seconds (371 allocations: 36.125 KiB)
0.000029 seconds (9 allocations: 3.812 KiB)
0.007397 seconds (802 allocations: 65.160 KiB, 98.67% compilation time)
0.000028 seconds (9 allocations: 3.812 KiB)
0.000100 seconds (350 allocations: 23.750 KiB)
0.000057 seconds (350 allocations: 23.750 KiB)
0.027491 seconds (9.71 k allocations: 595.238 KiB, 97.91% compilation time)
0.010698 seconds (95 allocations: 33.188 KiB, 97.59% compilation time)
0.030212 seconds (10.32 k allocations: 628.369 KiB, 97.77% compilation time)
0.000220 seconds (23 allocations: 28.609 KiB)
0.000044 seconds (9 allocations: 7.375 KiB)
0.000011 seconds (5 allocations: 5.250 KiB)
0.000229 seconds (55 allocations: 26.969 KiB)
0.000018 seconds (9 allocations: 3.812 KiB)
0.000579 seconds (1.09 k allocations: 93.469 KiB)
0.088734 seconds (44.04 k allocations: 2.629 MiB, 98.93% compilation time)
0.000367 seconds (289 allocations: 35.609 KiB)
0.000272 seconds (31 allocations: 39.812 KiB)
0.034946 seconds (11.17 k allocations: 647.389 KiB, 98.28% compilation time)
0.080646 seconds (45.06 k allocations: 2.687 MiB, 98.83% compilation time)
0.027617 seconds (13.29 k allocations: 924.857 KiB, 96.76% compilation time)
0.000365 seconds (292 allocations: 36.516 KiB)
0.000315 seconds (34 allocations: 40.719 KiB)
0.000273 seconds (1.05 k allocations: 71.953 KiB)
0.031178 seconds (31.40 k allocations: 1.911 MiB, 98.90% compilation time)
0.000123 seconds (264 allocations: 19.219 KiB)
0.000108 seconds (264 allocations: 19.219 KiB)
0.000108 seconds (264 allocations: 19.219 KiB)
0.031215 seconds (12.28 k allocations: 860.604 KiB, 97.17% compilation time)
0.000331 seconds (30 allocations: 36.812 KiB)
0.030777 seconds (13.29 k allocations: 943.107 KiB, 97.25% compilation time)
0.000344 seconds (33 allocations: 38.609 KiB)
0.000314 seconds (1.63 k allocations: 228.281 KiB)
0.000018 seconds (6 allocations: 5.484 KiB)
0.000566 seconds (1.09 k allocations: 93.469 KiB)
0.000246 seconds (1.05 k allocations: 71.953 KiB)
0.000324 seconds (1.05 k allocations: 106.500 KiB)
0.038500 seconds (25.05 k allocations: 1.494 MiB, 98.57% compilation time)
0.000214 seconds (284 allocations: 29.359 KiB)
0.000274 seconds (1.04 k allocations: 107.391 KiB)
0.000220 seconds (285 allocations: 29.375 KiB)
0.000211 seconds (23 allocations: 29.844 KiB)
0.000186 seconds (1.01 k allocations: 92.109 KiB)
0.000166 seconds (1.01 k allocations: 93.016 KiB)
0.000073 seconds (264 allocations: 17.000 KiB)
0.000186 seconds (285 allocations: 29.375 KiB)
0.000060 seconds (264 allocations: 17.000 KiB)
0.000421 seconds (844 allocations: 144.562 KiB)
0.000151 seconds (22 allocations: 28.594 KiB)
0.000370 seconds (843 allocations: 157.203 KiB)
0.000119 seconds (23 allocations: 28.609 KiB)
0.000106 seconds (819 allocations: 118.609 KiB)
0.000010 seconds (5 allocations: 5.250 KiB)
0.000232 seconds (1.04 k allocations: 107.391 KiB)
0.000108 seconds (1.01 k allocations: 93.016 KiB)
0.000525 seconds (1.09 k allocations: 95.219 KiB)
0.000259 seconds (237 allocations: 31.672 KiB)
0.000853 seconds (1.09 k allocations: 95.219 KiB)
0.000174 seconds (240 allocations: 32.578 KiB)
0.000188 seconds (1.05 k allocations: 72.828 KiB)
0.000152 seconds (1.05 k allocations: 72.828 KiB)
0.000087 seconds (237 allocations: 31.672 KiB)
0.000095 seconds (31 allocations: 39.812 KiB)
0.000439 seconds (240 allocations: 32.578 KiB)
0.000163 seconds (240 allocations: 32.578 KiB)
0.000150 seconds (34 allocations: 40.719 KiB)
0.000747 seconds (1.67 k allocations: 271.906 KiB)
0.000255 seconds (30 allocations: 36.812 KiB)
0.000664 seconds (1.67 k allocations: 297.219 KiB)
0.000246 seconds (33 allocations: 38.609 KiB)
0.000272 seconds (1.63 k allocations: 230.047 KiB)
0.000019 seconds (6 allocations: 5.484 KiB)
0.000605 seconds (1.09 k allocations: 95.219 KiB)
0.000236 seconds (1.05 k allocations: 72.828 KiB)
0.000232 seconds (50 allocations: 19.250 KiB)
0.000014 seconds (8 allocations: 1.766 KiB)
0.000010 seconds (14 allocations: 2.156 KiB)
6.258383 seconds (6.75 M allocations: 259.700 MiB, 2.77% gc time, 100.00% compilation time)
6.329122 seconds (6.64 M allocations: 254.165 MiB, 3.10% gc time, 100.00% compilation time)
6.637917 seconds (6.68 M allocations: 255.579 MiB, 5.61% gc time, 100.00% compilation time)
0.000034 seconds (14 allocations: 2.156 KiB)
0.035939 seconds (30.90 k allocations: 1.813 MiB, 99.82% compilation time)
0.036845 seconds (31.47 k allocations: 1.846 MiB, 98.75% compilation time)
0.055575 seconds (42.48 k allocations: 2.528 MiB, 99.82% compilation time)
0.000029 seconds (14 allocations: 2.156 KiB)
0.034404 seconds (30.90 k allocations: 1.813 MiB, 99.81% compilation time)
0.293308 seconds (31.47 k allocations: 1.840 MiB, 76.36% gc time, 99.97% compilation time)
0.048116 seconds (42.48 k allocations: 2.527 MiB, 99.88% compilation time)
0.014813 seconds (5.84 k allocations: 357.329 KiB, 97.92% compilation time)
0.000036 seconds (8 allocations: 2.938 KiB)
0.021897 seconds (5.33 k allocations: 306.897 KiB, 98.86% compilation time)
0.021641 seconds (6.86 k allocations: 415.429 KiB, 98.13% compilation time)
0.000149 seconds (537 allocations: 55.656 KiB)
0.000074 seconds (513 allocations: 46.078 KiB)
0.000070 seconds (519 allocations: 46.469 KiB)
0.000091 seconds (524 allocations: 46.703 KiB)
0.000088 seconds (523 allocations: 46.859 KiB)
0.000076 seconds (519 allocations: 46.859 KiB)
0.000078 seconds (519 allocations: 46.859 KiB)
0.000076 seconds (524 allocations: 46.875 KiB)
0.000076 seconds (523 allocations: 46.688 KiB)
0.000079 seconds (519 allocations: 46.469 KiB)
0.000079 seconds (519 allocations: 46.859 KiB)
0.000074 seconds (524 allocations: 46.875 KiB)
0.000081 seconds (523 allocations: 46.688 KiB)
0.000077 seconds (519 allocations: 46.469 KiB)
0.000256 seconds (401 allocations: 67.500 KiB)
0.000071 seconds (383 allocations: 51.359 KiB)
0.000076 seconds (384 allocations: 57.469 KiB)
0.000185 seconds (539 allocations: 56.078 KiB)
0.000076 seconds (513 allocations: 46.469 KiB)
0.000109 seconds (513 allocations: 46.469 KiB)
0.000240 seconds (403 allocations: 73.156 KiB)
0.000077 seconds (383 allocations: 56.984 KiB)
0.000388 seconds (542 allocations: 50.609 KiB)
0.000120 seconds (508 allocations: 35.594 KiB)
0.000136 seconds (508 allocations: 35.594 KiB)
0.000109 seconds (515 allocations: 36.125 KiB)
65.363831 seconds (39.90 M allocations: 1.499 GiB, 2.58% gc time, 100.00% compilation time)
62.639098 seconds (37.82 M allocations: 1.410 GiB, 2.31% gc time, 100.00% compilation time)
59.320816 seconds (35.05 M allocations: 1.290 GiB, 3.22% gc time, 100.00% compilation time)
0.000190 seconds (515 allocations: 36.125 KiB)
0.000171 seconds (515 allocations: 36.125 KiB)
0.058906 seconds (32.02 k allocations: 1.931 MiB, 99.55% compilation time)
0.029481 seconds (31.74 k allocations: 1.918 MiB, 99.03% compilation time)
0.038161 seconds (48.55 k allocations: 2.982 MiB, 99.34% compilation time)
0.000197 seconds (515 allocations: 36.125 KiB)
0.031351 seconds (32.02 k allocations: 1.931 MiB, 99.39% compilation time)
0.030949 seconds (31.74 k allocations: 1.918 MiB, 99.21% compilation time)
0.035766 seconds (48.55 k allocations: 2.982 MiB, 99.33% compilation time)
0.017112 seconds (5.84 k allocations: 414.593 KiB, 95.30% compilation time)
0.000189 seconds (760 allocations: 99.984 KiB)
0.000184 seconds (761 allocations: 111.719 KiB)
0.017097 seconds (5.03 k allocations: 299.394 KiB, 97.32% compilation time)
0.000136 seconds (508 allocations: 35.594 KiB)
0.000123 seconds (508 allocations: 35.594 KiB)
0.000123 seconds (508 allocations: 35.594 KiB)
0.020020 seconds (6.82 k allocations: 482.065 KiB, 97.01% compilation time)
0.000177 seconds (760 allocations: 111.234 KiB)
0.000327 seconds (59 allocations: 23.000 KiB)