-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-444aa87348.log
1020 lines (1019 loc) · 66.1 KB
/
1.6.0-DEV-444aa87348.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.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
JULIA_MAX_NUM_PRECOMPILE_FILES = 9223372036854775807
Resolving package versions...
Installed TimerOutputs ──── v0.5.6
Installed LinearOperators ─ v1.1.0
Installed FastClosures ──── v0.3.2
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
Precompiling project... (tip: to disable auto-precompilation set ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0)
[90m[32m ✓ [39mFastClosures[39m
[90m[32m ✓ [39mTimerOutputs[39m
[90m[32m ✓ [39mLinearOperators[39m
[32m ✓ [39mMatrixEquations
4 dependencies successfully precompiled
Testing MatrixEquations
Status `/tmp/jl_0Dv1W0/Project.toml`
[5c8ed15e] LinearOperators v1.1.0
[99c1a7ee] MatrixEquations v1.2.0
[37e2e46d] LinearAlgebra
[9a3f8284] Random
[8dfed614] Test
Status `/tmp/jl_0Dv1W0/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
0.648308 seconds (762.36 k allocations: 43.847 MiB, 2.81% gc time, 99.68% compilation time)
0.147090 seconds (390.32 k allocations: 21.817 MiB, 99.96% compilation time)
0.153482 seconds (363.37 k allocations: 20.037 MiB, 99.96% compilation time)
0.013631 seconds (9.61 k allocations: 584.543 KiB, 98.74% compilation time)
0.000135 seconds (366 allocations: 33.297 KiB)
0.015471 seconds (10.57 k allocations: 627.061 KiB, 98.83% compilation time)
0.071824 seconds (103.14 k allocations: 6.071 MiB, 99.70% compilation time)
0.014180 seconds (10.24 k allocations: 613.159 KiB, 98.79% compilation time)
0.011743 seconds (10.77 k allocations: 653.643 KiB, 98.47% compilation time)
0.015316 seconds (11.19 k allocations: 677.648 KiB, 98.75% compilation time)
0.644703 seconds (715.22 k allocations: 41.553 MiB, 3.99% gc time, 99.72% compilation time)
0.156648 seconds (387.30 k allocations: 21.215 MiB, 99.96% compilation time)
0.143230 seconds (377.46 k allocations: 20.713 MiB, 99.97% compilation time)
0.012800 seconds (9.61 k allocations: 573.465 KiB, 98.76% compilation time)
5.864262 seconds (11.05 M allocations: 528.422 MiB, 9.17% gc time, 99.97% compilation time)
0.017810 seconds (10.71 k allocations: 625.107 KiB, 98.98% compilation time)
0.064219 seconds (102.00 k allocations: 5.979 MiB, 99.74% compilation time)
0.016848 seconds (10.24 k allocations: 601.269 KiB, 99.00% compilation time)
0.011826 seconds (9.52 k allocations: 554.783 KiB, 98.72% compilation time)
0.014087 seconds (11.19 k allocations: 665.758 KiB, 98.82% compilation time)
0.000000 seconds
0.000000 seconds
0.470518 seconds (425.51 k allocations: 24.082 MiB, 99.94% compilation time)
0.111763 seconds (207.51 k allocations: 11.642 MiB, 17.43% gc time, 99.80% compilation time)
0.005552 seconds (1.31 k allocations: 103.420 KiB, 96.22% compilation time)
0.011491 seconds (3.08 k allocations: 222.021 KiB, 90.64% compilation time)
0.015247 seconds (6.21 k allocations: 316.503 KiB, 99.64% compilation time)
0.105640 seconds (205.44 k allocations: 11.250 MiB, 99.95% compilation time)
0.211982 seconds (477.56 k allocations: 26.981 MiB, 6.30% gc time, 99.89% compilation time)
0.006628 seconds (3.98 k allocations: 280.619 KiB, 97.42% compilation time)
0.005870 seconds (2.46 k allocations: 175.432 KiB, 96.68% compilation time)
0.026806 seconds (14.81 k allocations: 882.056 KiB, 98.80% compilation time)
0.018184 seconds (16.67 k allocations: 991.509 KiB, 98.74% compilation time)
0.000180 seconds (525 allocations: 49.156 KiB)
0.016321 seconds (16.03 k allocations: 968.858 KiB, 98.47% compilation time)
0.168582 seconds (444.04 k allocations: 25.115 MiB, 99.85% compilation time)
0.016220 seconds (15.07 k allocations: 882.040 KiB, 98.61% compilation time)
0.024216 seconds (16.93 k allocations: 992.103 KiB, 98.89% compilation time)
0.028979 seconds (15.27 k allocations: 924.801 KiB, 99.11% compilation time)
0.018088 seconds (19.14 k allocations: 1.132 MiB, 98.75% compilation time)
0.017557 seconds (15.46 k allocations: 910.809 KiB, 98.69% compilation time)
0.031915 seconds (17.33 k allocations: 1.000 MiB, 99.02% compilation time)
0.000228 seconds (27 allocations: 34.312 KiB)
0.022835 seconds (21.18 k allocations: 1.251 MiB, 98.83% compilation time)
0.018072 seconds (16.14 k allocations: 946.757 KiB, 98.80% compilation time)
0.018501 seconds (18.00 k allocations: 1.031 MiB, 98.87% compilation time)
0.541610 seconds (435.99 k allocations: 24.650 MiB, 80.61% compilation time)
0.130101 seconds (206.98 k allocations: 11.583 MiB, 29.66% gc time, 99.87% compilation time)
0.011940 seconds (1.31 k allocations: 91.529 KiB, 97.65% compilation time)
0.007547 seconds (3.07 k allocations: 211.193 KiB, 97.50% compilation time)
0.008600 seconds (6.20 k allocations: 313.956 KiB, 99.50% compilation time)
0.090821 seconds (210.73 k allocations: 11.307 MiB, 99.97% compilation time)
0.224187 seconds (465.67 k allocations: 26.227 MiB, 8.72% gc time, 99.90% compilation time)
0.007515 seconds (3.98 k allocations: 268.072 KiB, 97.74% compilation time)
0.011320 seconds (2.46 k allocations: 163.213 KiB, 97.97% compilation time)
0.024698 seconds (14.81 k allocations: 864.821 KiB, 99.04% compilation time)
0.017826 seconds (16.67 k allocations: 974.681 KiB, 98.88% compilation time)
7.583643 seconds (15.29 M allocations: 653.307 MiB, 6.92% gc time, 100.00% compilation time)
0.016344 seconds (16.03 k allocations: 951.921 KiB, 98.73% compilation time)
0.194597 seconds (444.57 k allocations: 25.124 MiB, 99.88% compilation time)
0.030543 seconds (15.19 k allocations: 878.040 KiB, 99.26% compilation time)
0.018962 seconds (17.05 k allocations: 987.728 KiB, 98.88% compilation time)
0.016372 seconds (15.27 k allocations: 908.895 KiB, 98.79% compilation time)
0.029920 seconds (19.14 k allocations: 1.116 MiB, 99.02% compilation time)
0.025582 seconds (15.45 k allocations: 892.684 KiB, 99.05% compilation time)
0.019737 seconds (17.33 k allocations: 1006.605 KiB, 98.99% compilation time)
0.000114 seconds (27 allocations: 17.516 KiB)
0.024717 seconds (21.18 k allocations: 1.235 MiB, 98.98% compilation time)
0.029693 seconds (16.14 k allocations: 929.647 KiB, 99.02% compilation time)
0.026219 seconds (18.00 k allocations: 1.014 MiB, 99.07% compilation time)
0.003139 seconds (20 allocations: 1.453 KiB, 98.89% compilation time)
0.017129 seconds (9.25 k allocations: 551.235 KiB, 99.71% compilation time)
0.004206 seconds (62 allocations: 3.719 KiB, 99.53% compilation time)
0.001875 seconds (519 allocations: 34.328 KiB, 92.79% compilation time)
0.003872 seconds (561 allocations: 36.594 KiB, 97.42% compilation time)
0.015274 seconds (9.66 k allocations: 583.707 KiB, 99.11% compilation time)
0.001990 seconds (1.09 k allocations: 74.093 KiB, 95.77% compilation time)
0.000083 seconds (500 allocations: 33.109 KiB)
0.001823 seconds (620 allocations: 43.390 KiB, 98.69% compilation time)
0.003409 seconds (60 allocations: 3.453 KiB, 99.81% compilation time)
0.000046 seconds (478 allocations: 30.750 KiB)
0.003425 seconds (536 allocations: 34.172 KiB, 98.52% compilation time)
0.002626 seconds (20 allocations: 1.375 KiB, 99.21% compilation time)
0.023897 seconds (9.25 k allocations: 551.345 KiB, 99.82% compilation time)
0.005550 seconds (62 allocations: 3.641 KiB, 99.67% compilation time)
0.002895 seconds (519 allocations: 27.484 KiB, 93.92% compilation time)
0.005553 seconds (561 allocations: 29.750 KiB, 98.34% compilation time)
0.016797 seconds (9.67 k allocations: 578.191 KiB, 99.33% compilation time)
0.002362 seconds (1.09 k allocations: 67.124 KiB, 96.72% compilation time)
0.000058 seconds (500 allocations: 26.266 KiB)
0.002220 seconds (616 allocations: 43.030 KiB, 98.99% compilation time)
0.003951 seconds (60 allocations: 3.453 KiB, 99.80% compilation time)
0.000092 seconds (478 allocations: 24.141 KiB)
0.004230 seconds (536 allocations: 27.562 KiB, 98.01% compilation time)
0.000000 seconds
0.000000 seconds
0.196177 seconds (128.07 k allocations: 7.148 MiB, 99.88% compilation time)
0.099215 seconds (11.62 k allocations: 693.591 KiB, 99.91% compilation time)
0.091826 seconds (212.90 k allocations: 12.065 MiB, 99.93% compilation time)
0.069216 seconds (9.60 k allocations: 584.324 KiB, 99.73% compilation time)
0.000127 seconds (280 allocations: 26.547 KiB)
0.015019 seconds (10.49 k allocations: 620.170 KiB, 98.87% compilation time)
0.011833 seconds (9.46 k allocations: 561.561 KiB, 98.49% compilation time)
0.013574 seconds (10.24 k allocations: 613.206 KiB, 98.84% compilation time)
0.026811 seconds (9.51 k allocations: 566.346 KiB, 50.10% compilation time)
0.080635 seconds (11.19 k allocations: 678.383 KiB, 24.77% compilation time)
0.245161 seconds (131.68 k allocations: 7.279 MiB, 99.92% compilation time)
0.006527 seconds (3.87 k allocations: 199.856 KiB, 99.42% compilation time)
0.086071 seconds (221.34 k allocations: 12.334 MiB, 99.95% compilation time)
0.021724 seconds (9.60 k allocations: 573.324 KiB, 99.28% compilation time)
2.106658 seconds (5.80 M allocations: 252.475 MiB, 4.42% gc time, 99.99% compilation time)
0.016041 seconds (10.53 k allocations: 614.514 KiB, 98.90% compilation time)
0.011898 seconds (9.46 k allocations: 549.670 KiB, 98.59% compilation time)
0.022931 seconds (10.24 k allocations: 601.315 KiB, 99.12% compilation time)
0.018546 seconds (9.51 k allocations: 554.268 KiB, 98.92% compilation time)
0.016935 seconds (11.19 k allocations: 665.883 KiB, 98.96% compilation time)
0.000000 seconds
0.322729 seconds (165.20 k allocations: 8.898 MiB, 4.71% gc time, 99.93% compilation time)
0.044231 seconds (6.91 k allocations: 450.392 KiB, 99.47% compilation time)
0.010926 seconds (2.46 k allocations: 156.727 KiB, 97.90% compilation time)
0.011722 seconds (4.86 k allocations: 277.925 KiB, 98.12% compilation time)
0.009251 seconds (2.88 k allocations: 178.272 KiB, 97.62% compilation time)
0.010887 seconds (8.52 k allocations: 473.479 KiB, 99.50% compilation time)
0.011662 seconds (7.66 k allocations: 377.848 KiB, 99.46% compilation time)
0.036790 seconds (21.66 k allocations: 1.304 MiB, 99.34% compilation time)
0.009904 seconds (5.21 k allocations: 308.776 KiB, 97.82% compilation time)
0.009680 seconds (5.73 k allocations: 334.938 KiB, 98.14% compilation time)
0.018196 seconds (14.81 k allocations: 881.540 KiB, 98.57% compilation time)
0.018470 seconds (16.67 k allocations: 991.478 KiB, 98.71% compilation time)
0.000174 seconds (325 allocations: 31.781 KiB)
0.026901 seconds (21.97 k allocations: 1.305 MiB, 98.73% compilation time)
0.030536 seconds (15.02 k allocations: 877.759 KiB, 99.00% compilation time)
0.088170 seconds (16.88 k allocations: 988.478 KiB, 99.63% compilation time)
0.020355 seconds (14.50 k allocations: 875.816 KiB, 98.55% compilation time)
0.022829 seconds (19.14 k allocations: 1.132 MiB, 98.89% compilation time)
0.019127 seconds (15.45 k allocations: 909.637 KiB, 98.36% compilation time)
0.039939 seconds (17.32 k allocations: 1023.371 KiB, 99.37% compilation time)
0.016482 seconds (15.25 k allocations: 917.905 KiB, 98.24% compilation time)
0.019850 seconds (21.18 k allocations: 1.251 MiB, 98.69% compilation time)
0.018766 seconds (16.14 k allocations: 946.226 KiB, 98.69% compilation time)
0.025699 seconds (18.00 k allocations: 1.031 MiB, 98.28% compilation time)
0.256224 seconds (168.99 k allocations: 9.051 MiB, 99.92% compilation time)
0.006876 seconds (4.69 k allocations: 291.688 KiB, 97.91% compilation time)
0.006098 seconds (2.46 k allocations: 143.945 KiB, 97.11% compilation time)
0.012931 seconds (4.86 k allocations: 264.940 KiB, 98.38% compilation time)
0.009415 seconds (2.88 k allocations: 165.491 KiB, 97.98% compilation time)
0.010846 seconds (5.54 k allocations: 279.899 KiB, 99.64% compilation time)
0.008070 seconds (7.66 k allocations: 378.988 KiB, 99.16% compilation time)
0.019315 seconds (21.66 k allocations: 1.288 MiB, 98.94% compilation time)
0.009395 seconds (5.21 k allocations: 295.604 KiB, 98.23% compilation time)
0.009002 seconds (5.73 k allocations: 321.767 KiB, 98.16% compilation time)
0.020384 seconds (14.81 k allocations: 867.415 KiB, 98.68% compilation time)
0.027631 seconds (16.67 k allocations: 974.681 KiB, 99.15% compilation time)
5.129531 seconds (11.72 M allocations: 486.568 MiB, 7.65% gc time, 100.00% compilation time)
0.019420 seconds (21.96 k allocations: 1.295 MiB, 98.90% compilation time)
0.019772 seconds (15.07 k allocations: 870.790 KiB, 98.60% compilation time)
0.027871 seconds (16.93 k allocations: 980.681 KiB, 99.06% compilation time)
0.018570 seconds (14.50 k allocations: 859.910 KiB, 98.95% compilation time)
0.107104 seconds (19.14 k allocations: 1.116 MiB, 79.95% gc time, 99.82% compilation time)
0.017806 seconds (15.45 k allocations: 892.684 KiB, 98.90% compilation time)
0.018291 seconds (17.32 k allocations: 1005.684 KiB, 98.95% compilation time)
0.018816 seconds (15.25 k allocations: 901.249 KiB, 98.44% compilation time)
0.027624 seconds (21.18 k allocations: 1.234 MiB, 99.19% compilation time)
0.019821 seconds (16.14 k allocations: 929.038 KiB, 98.82% compilation time)
0.018886 seconds (18.00 k allocations: 1.014 MiB, 98.95% compilation time)
0.001978 seconds (919 allocations: 58.890 KiB, 95.99% compilation time)
0.003596 seconds (359 allocations: 18.953 KiB, 98.74% compilation time)
0.001694 seconds (20 allocations: 1.453 KiB, 99.41% compilation time)
0.016310 seconds (9.23 k allocations: 550.313 KiB, 99.80% compilation time)
0.005311 seconds (62 allocations: 3.719 KiB, 99.70% compilation time)
0.003592 seconds (319 allocations: 16.953 KiB, 96.91% compilation time)
0.007278 seconds (361 allocations: 19.219 KiB, 98.38% compilation time)
0.003814 seconds (915 allocations: 56.671 KiB, 96.96% compilation time)
0.004411 seconds (359 allocations: 17.094 KiB, 98.40% compilation time)
0.001986 seconds (20 allocations: 1.375 KiB, 99.28% compilation time)
0.014712 seconds (9.23 k allocations: 550.423 KiB, 99.75% compilation time)
0.003474 seconds (62 allocations: 3.641 KiB, 99.71% compilation time)
0.001695 seconds (319 allocations: 15.016 KiB, 95.72% compilation time)
0.003559 seconds (361 allocations: 17.281 KiB, 98.51% compilation time)
0.022905 seconds (6 allocations: 3.823 MiB)
0.019253 seconds (5 allocations: 3.815 MiB)
0.080172 seconds (9 allocations: 5.730 MiB)
0.101134 seconds (5 allocations: 3.815 MiB)
0.092799 seconds (10 allocations: 7.638 MiB)
0.094151 seconds (5 allocations: 3.815 MiB)
0.223209 seconds (39.27 k allocations: 11.802 MiB, 25.09% gc time, 71.31% compilation time)
0.004466 seconds (5 allocations: 3.815 MiB)
0.230903 seconds (63.23 k allocations: 6.652 MiB, 99.35% compilation time)
0.002132 seconds (4 allocations: 2.863 MiB)
0.000958 seconds (4 allocations: 2.863 MiB)
0.001504 seconds (4 allocations: 2.863 MiB)
1.007326 seconds (1.10 M allocations: 62.754 MiB, 99.46% compilation time)
0.156449 seconds (338.75 k allocations: 18.885 MiB, 98.08% compilation time)
0.677761 seconds (798.82 k allocations: 48.621 MiB, 4.45% gc time, 99.75% compilation time)
0.170236 seconds (100.98 k allocations: 6.548 MiB, 98.87% compilation time)
0.066854 seconds (86.49 k allocations: 5.585 MiB, 97.33% compilation time)
0.181727 seconds (85.44 k allocations: 5.492 MiB, 98.30% compilation time)
0.195761 seconds (84.61 k allocations: 5.439 MiB, 98.45% compilation time)
0.395728 seconds (357.88 k allocations: 21.709 MiB, 8.73% gc time, 98.99% compilation time)
0.505897 seconds (770.22 k allocations: 45.979 MiB, 2.25% gc time, 99.59% compilation time)
0.875643 seconds (1.11 M allocations: 61.703 MiB, 4.59% gc time, 98.46% compilation time)
0.246562 seconds (385.55 k allocations: 22.272 MiB, 94.92% compilation time)
0.058789 seconds (84.67 k allocations: 5.656 MiB, 91.61% compilation time)
0.047350 seconds (49.54 k allocations: 3.105 MiB, 89.45% compilation time)
2.550481 seconds (3.71 M allocations: 208.693 MiB, 3.36% gc time, 99.40% compilation time)
0.268221 seconds (341.52 k allocations: 19.040 MiB, 97.07% compilation time)
0.512784 seconds (590.68 k allocations: 35.158 MiB, 4.65% gc time, 98.97% compilation time)
0.243236 seconds (120.98 k allocations: 7.599 MiB, 97.24% compilation time)
0.327636 seconds (380.34 k allocations: 23.038 MiB, 4.53% gc time, 96.33% compilation time)
0.735240 seconds (940.53 k allocations: 56.744 MiB, 2.14% gc time, 99.49% compilation time)
1.963555 seconds (2.74 M allocations: 154.836 MiB, 2.44% gc time, 99.84% compilation time)
0.272088 seconds (126.97 k allocations: 8.419 MiB, 12.49% gc time, 80.87% compilation time)
0.103158 seconds (58.05 k allocations: 4.273 MiB, 17.64% compilation time)
0.086660 seconds (3.96 k allocations: 496.501 KiB, 88.41% compilation time)
0.415171 seconds (552.00 k allocations: 31.115 MiB, 99.16% compilation time)
0.399742 seconds (518.23 k allocations: 29.017 MiB, 22.56% gc time, 99.48% compilation time)
0.621979 seconds (864.34 k allocations: 48.275 MiB, 2.93% gc time, 99.71% compilation time)
0.418522 seconds (496.71 k allocations: 27.715 MiB, 3.50% gc time, 99.66% compilation time)
2.832453 seconds (3.97 M allocations: 217.238 MiB, 3.63% gc time, 99.71% compilation time)
0.016730 seconds (418 allocations: 664.891 KiB, 45.22% compilation time)
0.574228 seconds (631.08 k allocations: 34.454 MiB, 5.53% gc time, 98.33% compilation time)
0.370359 seconds (467.08 k allocations: 26.079 MiB, 7.38% gc time, 99.48% compilation time)
0.014347 seconds (47.94 k allocations: 3.636 MiB, 88.07% compilation time)
0.264716 seconds (337.29 k allocations: 19.443 MiB, 99.22% compilation time)
0.013697 seconds (47.94 k allocations: 3.636 MiB, 88.17% compilation time)
0.517746 seconds (614.67 k allocations: 33.430 MiB, 4.40% gc time, 99.70% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
0.895516 seconds (1.60 M allocations: 92.277 MiB, 2.02% gc time, 99.27% compilation time)
0.155744 seconds (218.53 k allocations: 12.833 MiB, 94.40% compilation time)
0.097699 seconds (47.99 k allocations: 3.913 MiB, 16.01% compilation time)
0.270831 seconds (198.56 k allocations: 11.591 MiB, 97.13% compilation time)
0.026524 seconds (47.23 k allocations: 3.873 MiB, 71.30% compilation time)
0.307831 seconds (219.10 k allocations: 12.848 MiB, 97.46% compilation time)
1.490072 seconds (1.48 M allocations: 85.823 MiB, 9.01% gc time, 98.54% compilation time)
0.224470 seconds (202.74 k allocations: 12.139 MiB, 70.98% compilation time)
0.108361 seconds (44.10 k allocations: 3.668 MiB, 86.07% compilation time)
0.309492 seconds (198.60 k allocations: 11.596 MiB, 98.39% compilation time)
0.172012 seconds (47.30 k allocations: 3.876 MiB, 39.35% gc time, 89.57% compilation time)
0.317224 seconds (202.16 k allocations: 11.808 MiB, 98.22% compilation time)
1.576985 seconds (2.13 M allocations: 128.431 MiB, 3.16% gc time, 94.08% compilation time)
0.583209 seconds (772.47 k allocations: 52.071 MiB, 85.53% compilation time)
0.220231 seconds (67.15 k allocations: 11.347 MiB, 48.95% gc time, 39.00% compilation time)
0.270119 seconds (15.03 k allocations: 7.825 MiB, 1.84% compilation time)
0.109345 seconds (62.67 k allocations: 11.113 MiB, 14.63% compilation time)
1.545388 seconds (1.98 M allocations: 125.104 MiB, 9.15% gc time, 95.07% compilation time)
0.310036 seconds (15.25 k allocations: 14.355 MiB, 34.35% gc time, 1.92% compilation time)
0.474565 seconds (355.76 k allocations: 26.753 MiB, 96.54% compilation time)
0.514175 seconds (429.33 k allocations: 30.131 MiB, 2.92% gc time, 60.99% compilation time)
0.189094 seconds (61.89 k allocations: 11.107 MiB, 40.82% compilation time)
0.402993 seconds (365.80 k allocations: 26.601 MiB, 3.04% gc time, 85.13% compilation time)
0.210024 seconds (65.90 k allocations: 11.313 MiB, 9.88% compilation time)
0.603184 seconds (394.87 k allocations: 34.150 MiB, 7.01% gc time, 73.25% compilation time)
0.402733 seconds (159.16 k allocations: 22.839 MiB, 68.19% compilation time)
0.389765 seconds (205.87 k allocations: 23.394 MiB, 79.00% compilation time)
0.401615 seconds (351.32 k allocations: 25.819 MiB, 92.50% compilation time)
0.000202 seconds (55 allocations: 12.141 KiB)
0.000088 seconds (55 allocations: 12.141 KiB)
0.000143 seconds (74 allocations: 12.766 KiB)
0.000096 seconds (78 allocations: 12.828 KiB)
0.000086 seconds (78 allocations: 12.828 KiB)
0.000097 seconds (74 allocations: 12.766 KiB)
0.000096 seconds (74 allocations: 12.766 KiB)
0.000097 seconds (73 allocations: 12.750 KiB)
0.000094 seconds (65 allocations: 12.422 KiB)
0.000184 seconds (42 allocations: 18.812 KiB)
0.000200 seconds (52 allocations: 19.094 KiB)
0.000127 seconds (43 allocations: 19.297 KiB)
0.000144 seconds (44 allocations: 19.781 KiB)
0.000303 seconds (92 allocations: 20.672 KiB)
0.010859 seconds (92 allocations: 20.672 KiB)
0.000251 seconds (135 allocations: 22.234 KiB)
0.000200 seconds (135 allocations: 22.234 KiB)
0.000208 seconds (139 allocations: 22.297 KiB)
0.000205 seconds (171 allocations: 22.000 KiB)
0.842631 seconds (1.20 M allocations: 67.894 MiB, 3.70% gc time, 99.97% compilation time)
0.103243 seconds (109.74 k allocations: 6.833 MiB, 97.07% compilation time)
0.012026 seconds (57.34 k allocations: 3.917 MiB, 98.06% compilation time)
0.023643 seconds (3.82 k allocations: 220.425 KiB, 59.27% gc time, 99.15% compilation time)
0.309055 seconds (547.44 k allocations: 30.601 MiB, 99.90% compilation time)
0.274549 seconds (500.01 k allocations: 27.732 MiB, 4.86% gc time, 99.90% compilation time)
0.520338 seconds (855.74 k allocations: 47.682 MiB, 7.20% gc time, 99.95% compilation time)
0.696765 seconds (498.79 k allocations: 27.628 MiB, 60.51% gc time, 99.96% compilation time)
0.000196 seconds (77 allocations: 25.094 KiB)
0.986816 seconds (1.32 M allocations: 74.070 MiB, 18.79% gc time, 99.97% compilation time)
0.433966 seconds (651.96 k allocations: 35.198 MiB, 3.78% gc time, 99.89% compilation time)
0.267182 seconds (466.94 k allocations: 25.799 MiB, 99.89% compilation time)
0.015443 seconds (47.92 k allocations: 3.328 MiB, 98.30% compilation time)
0.180349 seconds (335.25 k allocations: 19.002 MiB, 7.64% gc time, 99.86% compilation time)
0.012211 seconds (47.92 k allocations: 3.328 MiB, 98.04% compilation time)
0.342800 seconds (567.90 k allocations: 30.749 MiB, 3.11% gc time, 99.92% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
0.000549 seconds (352 allocations: 29.000 KiB)
0.149434 seconds (220.56 k allocations: 12.429 MiB, 99.65% compilation time)
0.010840 seconds (47.96 k allocations: 3.327 MiB, 96.09% compilation time)
0.194735 seconds (200.60 k allocations: 11.189 MiB, 99.79% compilation time)
0.014083 seconds (47.22 k allocations: 3.287 MiB, 76.09% compilation time)
0.252036 seconds (234.79 k allocations: 13.246 MiB, 6.13% gc time, 99.74% compilation time)
0.275455 seconds (229.94 k allocations: 12.447 MiB, 99.72% compilation time)
0.229369 seconds (201.50 k allocations: 10.928 MiB, 99.77% compilation time)
0.007984 seconds (44.07 k allocations: 3.083 MiB, 95.12% compilation time)
0.216808 seconds (200.66 k allocations: 11.197 MiB, 4.37% gc time, 99.77% compilation time)
0.017647 seconds (47.27 k allocations: 3.289 MiB, 58.89% compilation time)
0.199484 seconds (204.12 k allocations: 11.411 MiB, 99.71% compilation time)
0.672720 seconds (1.05 M allocations: 59.659 MiB, 3.14% gc time, 99.88% compilation time)
0.223461 seconds (375.15 k allocations: 20.997 MiB, 5.66% gc time, 99.70% compilation time)
0.015865 seconds (52.66 k allocations: 3.607 MiB, 97.24% compilation time)
0.002854 seconds (685 allocations: 96.094 KiB, 89.31% compilation time)
0.009954 seconds (48.32 k allocations: 3.380 MiB, 95.42% compilation time)
0.000469 seconds (573 allocations: 133.875 KiB)
0.494714 seconds (768.46 k allocations: 43.097 MiB, 3.46% gc time, 99.83% compilation time)
0.219965 seconds (373.36 k allocations: 20.890 MiB, 99.59% compilation time)
0.290259 seconds (442.71 k allocations: 24.168 MiB, 97.05% compilation time)
0.023843 seconds (47.54 k allocations: 3.342 MiB, 97.62% compilation time)
0.387771 seconds (391.18 k allocations: 21.219 MiB, 3.59% gc time, 99.73% compilation time)
0.019295 seconds (51.41 k allocations: 3.541 MiB, 97.43% compilation time)
0.363969 seconds (368.66 k allocations: 19.342 MiB, 99.45% compilation time)
0.015581 seconds (11.42 k allocations: 795.955 KiB, 81.97% compilation time)
0.306717 seconds (190.39 k allocations: 9.020 MiB, 99.81% compilation time)
0.322645 seconds (374.86 k allocations: 20.351 MiB, 3.10% gc time, 99.34% compilation time)
0.000000 seconds
0.160374 seconds (238.79 k allocations: 13.380 MiB, 99.83% compilation time)
0.005160 seconds (1.94 k allocations: 140.372 KiB, 98.34% compilation time)
0.006194 seconds (1.28 k allocations: 94.356 KiB, 96.66% compilation time)
0.007656 seconds (6.19 k allocations: 389.503 KiB, 99.35% compilation time)
0.005363 seconds (1.58 k allocations: 100.707 KiB, 99.06% compilation time)
0.000740 seconds (46 allocations: 201.719 KiB)
0.057899 seconds (15.13 k allocations: 955.390 KiB, 98.74% compilation time)
0.355837 seconds (415.19 k allocations: 34.548 MiB, 97.88% compilation time)
0.159462 seconds (99.36 k allocations: 6.333 MiB, 96.07% compilation time)
0.019627 seconds (14.01 k allocations: 1002.353 KiB, 93.94% compilation time)
0.542128 seconds (566.84 k allocations: 53.632 MiB, 28.26% gc time, 98.10% compilation time)
0.139414 seconds (45.73 k allocations: 3.063 MiB, 97.04% compilation time)
0.061496 seconds (49.18 k allocations: 3.030 MiB, 98.77% compilation time)
0.050833 seconds (48.28 k allocations: 2.989 MiB, 97.56% compilation time)
0.052528 seconds (46.88 k allocations: 3.108 MiB, 96.01% compilation time)
0.062916 seconds (48.85 k allocations: 3.231 MiB, 94.26% compilation time)
0.082276 seconds (84.89 k allocations: 5.154 MiB, 96.16% compilation time)
0.761302 seconds (1.32 M allocations: 72.368 MiB, 99.97% compilation time)
0.348408 seconds (482.21 k allocations: 27.317 MiB, 16.11% gc time, 99.95% compilation time)
0.005481 seconds (1.29 k allocations: 95.013 KiB, 96.81% compilation time)
0.158774 seconds (181.77 k allocations: 10.052 MiB, 99.96% compilation time)
0.005967 seconds (1.58 k allocations: 98.066 KiB, 99.10% compilation time)
0.077064 seconds (91.49 k allocations: 5.530 MiB, 96.72% compilation time)
0.021334 seconds (15.13 k allocations: 897.187 KiB, 97.75% compilation time)
0.347329 seconds (481.19 k allocations: 32.615 MiB, 97.96% compilation time)
0.168587 seconds (105.19 k allocations: 6.507 MiB, 98.19% compilation time)
0.022175 seconds (14.01 k allocations: 891.103 KiB, 95.18% compilation time)
1.037070 seconds (1.90 M allocations: 114.262 MiB, 3.87% gc time, 98.90% compilation time)
0.054362 seconds (45.73 k allocations: 2.862 MiB, 94.75% compilation time)
0.059455 seconds (49.18 k allocations: 2.934 MiB, 98.84% compilation time)
0.054817 seconds (51.78 k allocations: 3.136 MiB, 97.77% compilation time)
0.043366 seconds (46.88 k allocations: 2.918 MiB, 95.81% compilation time)
0.047086 seconds (48.86 k allocations: 3.040 MiB, 85.25% compilation time)
0.079578 seconds (89.95 k allocations: 5.236 MiB, 97.52% compilation time)
0.002355 seconds (22 allocations: 1.438 KiB, 96.24% compilation time)
0.008821 seconds (5.85 k allocations: 398.279 KiB, 98.40% compilation time)
0.008777 seconds (5.85 k allocations: 398.045 KiB, 98.15% compilation time)
0.007255 seconds (68 allocations: 3.969 KiB, 98.52% compilation time)
0.003272 seconds (667 allocations: 45.582 KiB, 95.00% compilation time)
0.005786 seconds (4.12 k allocations: 271.873 KiB, 97.27% compilation time)
0.005601 seconds (4.12 k allocations: 272.076 KiB, 97.19% compilation time)
0.004218 seconds (68 allocations: 3.969 KiB, 96.24% compilation time)
0.001933 seconds (665 allocations: 45.426 KiB, 95.08% compilation time)
0.004925 seconds (4.11 k allocations: 271.686 KiB, 98.26% compilation time)
0.004690 seconds (4.11 k allocations: 271.779 KiB, 98.04% compilation time)
0.003749 seconds (68 allocations: 3.969 KiB, 98.06% compilation time)
0.001955 seconds (665 allocations: 45.426 KiB, 92.86% compilation time)
0.004876 seconds (4.11 k allocations: 271.686 KiB, 97.39% compilation time)
0.004963 seconds (4.12 k allocations: 271.936 KiB, 96.62% compilation time)
0.005684 seconds (68 allocations: 3.969 KiB, 96.89% compilation time)
0.000000 seconds
0.000000 seconds
0.014063 seconds (1.05 k allocations: 92.795 KiB, 57.23% compilation time)
0.009136 seconds (2.54 k allocations: 188.811 KiB, 98.48% compilation time)
0.005847 seconds (800 allocations: 70.700 KiB, 97.95% compilation time)
0.007254 seconds (5.31 k allocations: 339.590 KiB, 99.49% compilation time)
0.010778 seconds (2.03 k allocations: 125.215 KiB, 99.48% compilation time)
0.001616 seconds (5.80 k allocations: 728.766 KiB)
0.112856 seconds (31.19 k allocations: 2.158 MiB, 98.64% compilation time)
0.026074 seconds (31.19 k allocations: 2.158 MiB, 96.15% compilation time)
0.039769 seconds (49.41 k allocations: 3.247 MiB, 96.04% compilation time)
0.419480 seconds (492.84 k allocations: 27.223 MiB, 99.16% compilation time)
0.042568 seconds (48.06 k allocations: 3.882 MiB, 95.54% compilation time)
0.022204 seconds (29.27 k allocations: 3.004 MiB, 90.98% compilation time)
0.048816 seconds (47.49 k allocations: 4.092 MiB, 95.44% compilation time)
0.041362 seconds (22.48 k allocations: 17.790 MiB, 71.39% compilation time)
0.000000 seconds
0.000000 seconds
0.035114 seconds (14.64 k allocations: 915.762 KiB, 81.77% compilation time)
0.150772 seconds (198.23 k allocations: 11.109 MiB, 99.89% compilation time)
0.030521 seconds (801 allocations: 70.778 KiB, 72.13% compilation time)
0.007410 seconds (2.04 k allocations: 116.983 KiB, 99.45% compilation time)
0.006204 seconds (2.03 k allocations: 122.527 KiB, 99.12% compilation time)
3.309563 seconds (6.68 M allocations: 260.204 MiB, 2.13% gc time, 99.97% compilation time)
0.024854 seconds (31.13 k allocations: 1.966 MiB, 96.29% compilation time)
0.023733 seconds (31.13 k allocations: 1.962 MiB, 96.12% compilation time)
0.046435 seconds (50.36 k allocations: 3.127 MiB, 97.86% compilation time)
0.398129 seconds (509.56 k allocations: 27.544 MiB, 99.56% compilation time)
0.038819 seconds (48.61 k allocations: 3.458 MiB, 95.80% compilation time)
0.022186 seconds (29.27 k allocations: 2.420 MiB, 92.08% compilation time)
0.049379 seconds (48.49 k allocations: 3.581 MiB, 95.17% compilation time)
0.038856 seconds (22.47 k allocations: 9.541 MiB, 82.51% compilation time)
0.003949 seconds (6.45 k allocations: 664.551 KiB, 79.74% compilation time)
0.013628 seconds (9.89 k allocations: 891.779 KiB, 89.03% compilation time)
0.009938 seconds (9.89 k allocations: 891.404 KiB, 88.06% compilation time)
0.006469 seconds (5.84 k allocations: 624.375 KiB, 89.93% compilation time)
0.003278 seconds (5.84 k allocations: 1.192 MiB, 70.60% compilation time)
0.006796 seconds (9.28 k allocations: 1.675 MiB, 87.35% compilation time)
0.080353 seconds (9.28 k allocations: 1.413 MiB, 98.50% compilation time)
0.007183 seconds (5.23 k allocations: 1.413 MiB, 88.46% compilation time)
0.004064 seconds (6.39 k allocations: 519.566 KiB, 83.25% compilation time)
0.007489 seconds (9.83 k allocations: 747.998 KiB, 90.60% compilation time)
0.006868 seconds (9.83 k allocations: 743.951 KiB, 89.59% compilation time)
0.005038 seconds (5.78 k allocations: 478.016 KiB, 87.89% compilation time)
0.002948 seconds (5.83 k allocations: 854.832 KiB, 72.10% compilation time)
0.006033 seconds (9.28 k allocations: 1.194 MiB, 85.58% compilation time)
0.005840 seconds (9.28 k allocations: 1.056 MiB, 86.31% compilation time)
0.004677 seconds (5.23 k allocations: 954.203 KiB, 81.90% compilation time)
0.003119 seconds (699 allocations: 48.014 KiB, 98.64% compilation time)
0.075210 seconds (185.66 k allocations: 10.299 MiB, 99.96% compilation time)
0.005607 seconds (1.24 k allocations: 75.824 KiB, 99.40% compilation time)
0.003534 seconds (694 allocations: 47.545 KiB, 99.32% compilation time)
0.079896 seconds (223.24 k allocations: 12.709 MiB, 99.98% compilation time)
0.000065 seconds (60 allocations: 6.172 KiB)
0.091111 seconds (103.12 k allocations: 6.045 MiB, 99.87% compilation time)
0.624422 seconds (562.30 k allocations: 27.513 MiB, 99.98% compilation time)
0.015966 seconds (21.74 k allocations: 1.247 MiB, 99.36% compilation time)
0.047229 seconds (57.66 k allocations: 3.372 MiB, 99.73% compilation time)
0.035624 seconds (57.66 k allocations: 3.373 MiB, 99.71% compilation time)
0.000058 seconds (60 allocations: 6.172 KiB)
0.021507 seconds (29.75 k allocations: 1.726 MiB, 99.49% compilation time)
0.051389 seconds (69.61 k allocations: 4.172 MiB, 99.73% compilation time)
0.044850 seconds (65.65 k allocations: 3.940 MiB, 99.70% compilation time)
0.053450 seconds (69.48 k allocations: 4.130 MiB, 99.77% compilation time)
0.000027 seconds (64 allocations: 6.234 KiB)
0.000015 seconds (68 allocations: 6.297 KiB)
0.000018 seconds (64 allocations: 6.234 KiB)
0.047027 seconds (71.08 k allocations: 4.221 MiB, 99.65% compilation time)
0.015630 seconds (10.28 k allocations: 597.222 KiB, 99.71% compilation time)
0.019968 seconds (10.27 k allocations: 595.597 KiB, 99.75% compilation time)
0.020018 seconds (11.51 k allocations: 685.166 KiB, 99.68% compilation time)
0.107407 seconds (132.33 k allocations: 7.387 MiB, 99.93% compilation time)
0.464583 seconds (627.77 k allocations: 34.628 MiB, 6.79% gc time, 99.99% compilation time)
0.070368 seconds (185.66 k allocations: 10.300 MiB, 99.92% compilation time)
0.005962 seconds (1.25 k allocations: 75.934 KiB, 99.46% compilation time)
0.003901 seconds (694 allocations: 47.529 KiB, 99.16% compilation time)
0.078810 seconds (216.40 k allocations: 12.198 MiB, 99.97% compilation time)
40.723301 seconds (38.53 M allocations: 1.465 GiB, 1.58% gc time, 99.91% compilation time)
0.624164 seconds (154.49 k allocations: 9.098 MiB, 99.97% compilation time)
0.709737 seconds (524.69 k allocations: 25.119 MiB, 99.98% compilation time)
0.015482 seconds (9.06 k allocations: 518.458 KiB, 99.15% compilation time)
0.048127 seconds (57.66 k allocations: 3.371 MiB, 99.71% compilation time)
0.042487 seconds (57.65 k allocations: 3.370 MiB, 99.71% compilation time)
0.000058 seconds (60 allocations: 5.375 KiB)
0.022362 seconds (31.34 k allocations: 1.829 MiB, 99.54% compilation time)
0.063070 seconds (69.65 k allocations: 4.174 MiB, 99.77% compilation time)
0.043004 seconds (65.65 k allocations: 3.940 MiB, 99.71% compilation time)
0.052057 seconds (69.49 k allocations: 4.129 MiB, 99.80% compilation time)
0.000028 seconds (64 allocations: 5.438 KiB)
0.000013 seconds (68 allocations: 5.500 KiB)
0.000022 seconds (64 allocations: 5.438 KiB)
0.059554 seconds (71.13 k allocations: 4.224 MiB, 99.72% compilation time)
0.017099 seconds (10.27 k allocations: 595.597 KiB, 99.71% compilation time)
0.096831 seconds (10.27 k allocations: 595.487 KiB, 99.96% compilation time)
0.111763 seconds (11.51 k allocations: 685.979 KiB, 99.94% compilation time)
0.125465 seconds (135.59 k allocations: 7.593 MiB, 99.95% compilation time)
0.003041 seconds (807 allocations: 53.324 KiB, 97.72% compilation time)
0.008208 seconds (7.60 k allocations: 520.154 KiB, 96.83% compilation time)
0.007524 seconds (7.61 k allocations: 520.939 KiB, 98.97% compilation time)
0.004554 seconds (94 allocations: 5.984 KiB, 99.44% compilation time)
0.002379 seconds (798 allocations: 52.559 KiB, 97.30% compilation time)
0.005780 seconds (5.86 k allocations: 394.314 KiB, 99.20% compilation time)
0.006293 seconds (5.85 k allocations: 393.529 KiB, 99.13% compilation time)
0.006429 seconds (86 allocations: 5.547 KiB, 99.55% compilation time)
0.003547 seconds (803 allocations: 52.637 KiB, 97.94% compilation time)
0.008777 seconds (5.86 k allocations: 393.717 KiB, 99.08% compilation time)
0.007078 seconds (5.87 k allocations: 394.502 KiB, 99.01% compilation time)
0.005076 seconds (94 allocations: 5.875 KiB, 99.57% compilation time)
0.002567 seconds (795 allocations: 52.309 KiB, 97.84% compilation time)
0.006543 seconds (5.86 k allocations: 394.174 KiB, 99.25% compilation time)
0.006934 seconds (5.85 k allocations: 393.389 KiB, 99.29% compilation time)
0.004221 seconds (86 allocations: 5.547 KiB, 99.65% compilation time)
0.123143 seconds (126.12 k allocations: 7.239 MiB, 99.88% compilation time)
0.000071 seconds (52 allocations: 5.562 KiB)
0.136383 seconds (128.81 k allocations: 7.410 MiB, 99.87% compilation time)
0.000087 seconds (50 allocations: 6.359 KiB)
0.063701 seconds (39.51 k allocations: 2.207 MiB, 99.82% compilation time)
0.063475 seconds (42.03 k allocations: 2.313 MiB, 99.83% compilation time)
0.064805 seconds (56.21 k allocations: 3.169 MiB, 99.79% compilation time)
0.072160 seconds (75.05 k allocations: 4.259 MiB, 99.91% compilation time)
0.000012 seconds (29 allocations: 2.688 KiB)
0.074387 seconds (75.04 k allocations: 4.258 MiB, 99.92% compilation time)
0.000013 seconds (29 allocations: 3.312 KiB)
0.112771 seconds (129.24 k allocations: 7.409 MiB, 99.86% compilation time)
0.000061 seconds (52 allocations: 4.844 KiB)
0.105877 seconds (132.67 k allocations: 7.625 MiB, 97.93% compilation time)
0.000064 seconds (50 allocations: 5.062 KiB)
0.045631 seconds (39.52 k allocations: 2.206 MiB, 99.74% compilation time)
0.054906 seconds (42.04 k allocations: 2.311 MiB, 99.81% compilation time)
0.052684 seconds (56.20 k allocations: 3.168 MiB, 99.74% compilation time)
0.157950 seconds (208.32 k allocations: 12.119 MiB, 99.96% compilation time)
0.000016 seconds (29 allocations: 2.406 KiB)
0.194927 seconds (238.84 k allocations: 13.699 MiB, 99.97% compilation time)
0.000016 seconds (29 allocations: 2.688 KiB)
0.055122 seconds (41.73 k allocations: 2.280 MiB, 99.79% compilation time)
0.046107 seconds (38.53 k allocations: 2.180 MiB, 99.75% compilation time)
0.000026 seconds (63 allocations: 5.797 KiB)
0.054181 seconds (40.20 k allocations: 2.226 MiB, 99.78% compilation time)
0.047959 seconds (41.99 k allocations: 2.289 MiB, 99.73% compilation time)
0.073554 seconds (77.37 k allocations: 4.531 MiB, 99.85% compilation time)
0.004571 seconds (86 allocations: 8.266 KiB, 98.04% compilation time)
0.048908 seconds (40.62 k allocations: 2.246 MiB, 99.71% compilation time)
0.072153 seconds (82.21 k allocations: 4.795 MiB, 99.78% compilation time)
0.077639 seconds (84.16 k allocations: 4.681 MiB, 99.88% compilation time)
0.042743 seconds (41.72 k allocations: 2.278 MiB, 99.76% compilation time)
0.044989 seconds (38.54 k allocations: 2.183 MiB, 99.75% compilation time)
0.000024 seconds (63 allocations: 5.094 KiB)
0.040528 seconds (41.41 k allocations: 2.313 MiB, 99.72% compilation time)
0.047500 seconds (41.99 k allocations: 2.287 MiB, 99.76% compilation time)
0.070510 seconds (77.37 k allocations: 4.529 MiB, 99.82% compilation time)
0.006307 seconds (3.04 k allocations: 209.482 KiB, 97.47% compilation time)
0.061693 seconds (41.83 k allocations: 2.331 MiB, 99.77% compilation time)
0.093525 seconds (82.99 k allocations: 4.846 MiB, 99.85% compilation time)
0.076471 seconds (86.44 k allocations: 4.817 MiB, 99.92% compilation time)
0.019014 seconds (1.08 k allocations: 67.104 KiB, 99.55% compilation time)
0.000039 seconds (17 allocations: 960 bytes)
0.017614 seconds (1.08 k allocations: 66.729 KiB, 99.58% compilation time)
0.000026 seconds (17 allocations: 960 bytes)
0.000024 seconds (17 allocations: 960 bytes)
0.000008 seconds (17 allocations: 960 bytes)
0.000007 seconds (17 allocations: 960 bytes)
0.000004 seconds (17 allocations: 960 bytes)
0.015374 seconds (10.27 k allocations: 615.656 KiB, 99.52% compilation time)
0.056863 seconds (43.27 k allocations: 2.377 MiB, 99.86% compilation time)
0.016387 seconds (10.73 k allocations: 634.223 KiB, 99.58% compilation time)
0.056583 seconds (48.56 k allocations: 2.674 MiB, 99.85% compilation time)
0.021176 seconds (1.08 k allocations: 66.870 KiB, 99.56% compilation time)
0.000026 seconds (17 allocations: 960 bytes)
0.018670 seconds (1.08 k allocations: 66.729 KiB, 99.56% compilation time)
0.000028 seconds (17 allocations: 960 bytes)
0.000022 seconds (17 allocations: 960 bytes)
0.000006 seconds (17 allocations: 960 bytes)
0.000009 seconds (17 allocations: 960 bytes)
0.000006 seconds (17 allocations: 960 bytes)
0.015419 seconds (10.26 k allocations: 615.094 KiB, 99.61% compilation time)
0.054686 seconds (41.90 k allocations: 2.294 MiB, 99.86% compilation time)
0.017602 seconds (10.73 k allocations: 634.160 KiB, 99.67% compilation time)
0.050437 seconds (48.56 k allocations: 2.674 MiB, 99.87% compilation time)
0.000296 seconds (18 allocations: 157.203 KiB)
0.000356 seconds (18 allocations: 312.609 KiB)
0.000112 seconds (14 allocations: 117.453 KiB)
0.000292 seconds (14 allocations: 233.328 KiB)
0.000298 seconds (24 allocations: 318.500 KiB)
0.000523 seconds (23 allocations: 635.438 KiB)
0.000220 seconds (20 allocations: 238.547 KiB)
0.000425 seconds (19 allocations: 475.578 KiB)
0.000174 seconds (16 allocations: 155.859 KiB)
0.000315 seconds (16 allocations: 309.984 KiB)
0.000160 seconds (19 allocations: 156.766 KiB)
0.000321 seconds (19 allocations: 311.781 KiB)
0.000289 seconds (19 allocations: 316.672 KiB)
0.000520 seconds (19 allocations: 631.844 KiB)
0.000277 seconds (20 allocations: 317.547 KiB)
0.005540 seconds (20 allocations: 633.609 KiB)
0.000428 seconds (30 allocations: 469.391 KiB)
0.000411 seconds (32 allocations: 470.359 KiB)
0.000819 seconds (30 allocations: 935.641 KiB)
0.000719 seconds (32 allocations: 937.391 KiB)
0.000365 seconds (36 allocations: 470.984 KiB)
0.000001 seconds
0.000001 seconds
3.003300 seconds (4.72 M allocations: 231.258 MiB, 6.10% gc time, 99.98% compilation time)
0.000512 seconds (310 allocations: 141.609 KiB)
0.000557 seconds (289 allocations: 137.625 KiB)
0.013017 seconds (4.47 k allocations: 403.532 KiB, 94.14% compilation time)
0.065868 seconds (92.10 k allocations: 5.718 MiB, 99.24% compilation time)
0.000386 seconds (290 allocations: 144.281 KiB)
1.259110 seconds (1.80 M allocations: 96.434 MiB, 99.87% compilation time)
0.001435 seconds (519 allocations: 276.250 KiB)
0.001443 seconds (538 allocations: 282.828 KiB)
0.112765 seconds (91.84 k allocations: 5.840 MiB, 98.88% compilation time)
0.001741 seconds (566 allocations: 304.844 KiB)
0.013346 seconds (4.80 k allocations: 568.646 KiB, 86.52% compilation time)
0.109768 seconds (42.50 k allocations: 2.685 MiB, 98.85% compilation time)
0.174747 seconds (44.26 k allocations: 2.858 MiB, 96.87% compilation time)
0.100476 seconds (42.50 k allocations: 2.699 MiB, 95.54% compilation time)
0.106266 seconds (44.25 k allocations: 2.870 MiB, 96.79% compilation time)
3.349023 seconds (5.23 M allocations: 259.930 MiB, 5.88% gc time, 99.98% compilation time)
0.000360 seconds (334 allocations: 85.094 KiB)
0.000370 seconds (314 allocations: 82.344 KiB)
0.007691 seconds (4.49 k allocations: 347.548 KiB, 94.69% compilation time)
0.093944 seconds (155.00 k allocations: 9.616 MiB, 99.50% compilation time)
0.000346 seconds (317 allocations: 85.641 KiB)
1.463061 seconds (2.38 M allocations: 127.987 MiB, 4.13% gc time, 99.91% compilation time)
0.001370 seconds (519 allocations: 158.406 KiB)
0.042724 seconds (535 allocations: 162.188 KiB)
0.284186 seconds (154.72 k allocations: 9.669 MiB, 41.48% gc time, 99.64% compilation time)
0.001252 seconds (562 allocations: 173.734 KiB)
0.010626 seconds (4.80 k allocations: 441.146 KiB, 90.36% compilation time)
0.178865 seconds (42.51 k allocations: 2.571 MiB, 58.06% compilation time)
0.121286 seconds (44.26 k allocations: 2.732 MiB, 99.15% compilation time)
0.178474 seconds (42.50 k allocations: 2.575 MiB, 97.70% compilation time)
0.124829 seconds (44.24 k allocations: 2.737 MiB, 98.77% compilation time)
0.000000 seconds
0.000000 seconds
49.548274 seconds (30.91 M allocations: 1.151 GiB, 2.13% gc time, 100.00% compilation time)
0.001079 seconds (4.95 k allocations: 506.891 KiB)
0.001085 seconds (4.93 k allocations: 504.031 KiB)
0.062040 seconds (58.01 k allocations: 3.678 MiB, 97.91% compilation time)
0.001161 seconds (4.97 k allocations: 527.938 KiB)
2.347843 seconds (3.03 M allocations: 142.439 MiB, 3.98% gc time, 99.89% compilation time)
0.004650 seconds (3.17 k allocations: 819.969 KiB)
0.003830 seconds (3.18 k allocations: 823.172 KiB)
0.125871 seconds (56.29 k allocations: 3.973 MiB, 98.05% compilation time)
0.061819 seconds (3.25 k allocations: 870.703 KiB)
0.130372 seconds (55.06 k allocations: 3.845 MiB, 98.23% compilation time)
0.166548 seconds (59.04 k allocations: 4.148 MiB, 59.66% compilation time)
0.138526 seconds (54.34 k allocations: 3.784 MiB, 98.33% compilation time)
0.161075 seconds (57.92 k allocations: 4.068 MiB, 92.24% compilation time)
0.083541 seconds (86.02 k allocations: 5.051 MiB, 98.64% compilation time)
0.001056 seconds (4.94 k allocations: 508.188 KiB)
0.001148 seconds (4.93 k allocations: 513.359 KiB)
0.091060 seconds (86.80 k allocations: 5.151 MiB, 98.04% compilation time)
0.001082 seconds (4.96 k allocations: 534.750 KiB)
0.087048 seconds (83.58 k allocations: 5.323 MiB, 95.55% compilation time)
0.003246 seconds (3.17 k allocations: 821.297 KiB)
0.003243 seconds (3.19 k allocations: 841.219 KiB)
0.176246 seconds (84.48 k allocations: 5.453 MiB, 98.73% compilation time)
0.002085 seconds (3.25 k allocations: 886.250 KiB)
0.177549 seconds (85.36 k allocations: 5.461 MiB, 98.69% compilation time)
0.192577 seconds (88.31 k allocations: 5.681 MiB, 98.83% compilation time)
0.287318 seconds (160.20 k allocations: 9.814 MiB, 98.65% compilation time)
0.082818 seconds (84.48 k allocations: 5.454 MiB, 97.19% compilation time)
5.375953 seconds (9.10 M allocations: 387.224 MiB, 3.38% gc time, 99.99% compilation time)
0.000243 seconds (263 allocations: 68.766 KiB)
0.009554 seconds (9.04 k allocations: 599.116 KiB, 97.63% compilation time)
0.037083 seconds (40.27 k allocations: 2.462 MiB, 99.44% compilation time)
0.000157 seconds (265 allocations: 69.172 KiB)
0.681844 seconds (607.34 k allocations: 30.010 MiB, 7.73% gc time, 99.94% compilation time)
0.061568 seconds (40.66 k allocations: 2.552 MiB, 98.99% compilation time)
0.012758 seconds (9.50 k allocations: 693.202 KiB, 95.41% compilation time)
0.006370 seconds (319 allocations: 50.438 KiB, 95.93% compilation time)
0.012843 seconds (12.41 k allocations: 786.438 KiB, 98.10% compilation time)
0.000147 seconds (258 allocations: 46.406 KiB)
0.007613 seconds (590 allocations: 115.484 KiB, 92.39% compilation time)
0.000497 seconds (500 allocations: 102.578 KiB)
0.077964 seconds (12.15 k allocations: 819.421 KiB, 99.28% compilation time)
44.183127 seconds (30.44 M allocations: 1.141 GiB, 2.46% gc time, 100.00% compilation time)
0.000736 seconds (4.89 k allocations: 429.219 KiB)
0.047086 seconds (53.05 k allocations: 3.325 MiB, 98.61% compilation time)
0.000595 seconds (4.93 k allocations: 445.641 KiB)
0.425575 seconds (584.72 k allocations: 29.724 MiB, 99.84% compilation time)
0.044617 seconds (51.20 k allocations: 3.576 MiB, 97.74% compilation time)
0.080060 seconds (4.98 k allocations: 419.547 KiB, 98.89% compilation time)
0.000957 seconds (4.92 k allocations: 416.031 KiB)
0.000786 seconds (4.88 k allocations: 406.844 KiB)
0.009432 seconds (3.21 k allocations: 642.203 KiB, 89.48% compilation time)
0.000835 seconds (3.14 k allocations: 638.688 KiB)
0.000663 seconds (3.20 k allocations: 657.188 KiB)
5.528810 seconds (9.20 M allocations: 391.660 MiB, 2.41% gc time, 100.00% compilation time)
0.000144 seconds (263 allocations: 44.594 KiB)
0.008591 seconds (9.03 k allocations: 573.429 KiB, 97.54% compilation time)
0.031763 seconds (40.27 k allocations: 2.439 MiB, 99.29% compilation time)
0.000148 seconds (265 allocations: 44.703 KiB)
0.672723 seconds (673.13 k allocations: 33.242 MiB, 99.95% compilation time)
0.167652 seconds (40.66 k allocations: 2.497 MiB, 33.60% gc time, 99.78% compilation time)
0.009944 seconds (9.50 k allocations: 636.468 KiB, 96.67% compilation time)
0.007189 seconds (318 allocations: 36.641 KiB, 96.77% compilation time)
0.015599 seconds (12.41 k allocations: 772.659 KiB, 98.43% compilation time)
0.000189 seconds (258 allocations: 33.109 KiB)
0.006459 seconds (589 allocations: 79.766 KiB, 93.06% compilation time)
0.000412 seconds (500 allocations: 70.516 KiB)
0.024451 seconds (12.15 k allocations: 784.189 KiB, 98.63% compilation time)
91.701234 seconds (59.67 M allocations: 2.210 GiB, 1.63% gc time, 100.00% compilation time)
0.001024 seconds (4.89 k allocations: 353.328 KiB)
0.043888 seconds (53.05 k allocations: 3.244 MiB, 98.39% compilation time)
0.000544 seconds (4.93 k allocations: 362.719 KiB)
2.727926 seconds (3.80 M allocations: 179.497 MiB, 7.13% gc time, 99.97% compilation time)
0.044207 seconds (51.21 k allocations: 3.363 MiB, 98.40% compilation time)
0.006367 seconds (4.98 k allocations: 351.000 KiB, 89.52% compilation time)
0.000579 seconds (4.92 k allocations: 347.484 KiB)
0.000516 seconds (4.88 k allocations: 341.828 KiB)
0.005156 seconds (3.21 k allocations: 457.281 KiB, 87.94% compilation time)
0.001645 seconds (3.14 k allocations: 453.766 KiB)
0.001375 seconds (3.20 k allocations: 465.359 KiB)
0.000005 seconds
0.000001 seconds
0.127332 seconds (217.81 k allocations: 13.632 MiB, 98.85% compilation time)
0.000795 seconds (4.47 k allocations: 545.578 KiB)
0.000631 seconds (3.56 k allocations: 400.141 KiB)
0.009123 seconds (7.77 k allocations: 667.938 KiB, 91.52% compilation time)
0.035719 seconds (46.68 k allocations: 2.919 MiB, 97.52% compilation time)
0.000657 seconds (3.63 k allocations: 413.359 KiB)
0.039475 seconds (43.53 k allocations: 2.935 MiB, 96.62% compilation time)
0.001516 seconds (1.85 k allocations: 546.094 KiB)
0.001627 seconds (1.87 k allocations: 552.562 KiB)
0.163231 seconds (44.41 k allocations: 3.055 MiB, 56.82% compilation time)
0.003525 seconds (1.93 k allocations: 583.688 KiB)
0.121935 seconds (46.00 k allocations: 3.149 MiB, 98.74% compilation time)
0.181869 seconds (44.21 k allocations: 2.983 MiB, 97.12% compilation time)
0.103946 seconds (45.99 k allocations: 3.162 MiB, 98.67% compilation time)
0.259571 seconds (377.52 k allocations: 22.619 MiB, 98.36% compilation time)
0.000793 seconds (4.43 k allocations: 439.844 KiB)
0.000646 seconds (3.69 k allocations: 319.938 KiB)
0.009689 seconds (7.88 k allocations: 585.282 KiB, 91.38% compilation time)
0.035538 seconds (46.80 k allocations: 2.837 MiB, 97.70% compilation time)
0.000639 seconds (3.73 k allocations: 327.938 KiB)
0.034913 seconds (43.53 k allocations: 2.743 MiB, 95.98% compilation time)
0.001187 seconds (1.85 k allocations: 350.781 KiB)
0.002860 seconds (1.86 k allocations: 352.859 KiB)
0.121937 seconds (44.41 k allocations: 2.849 MiB, 98.59% compilation time)
0.001521 seconds (1.93 k allocations: 372.578 KiB)
0.254309 seconds (46.01 k allocations: 2.944 MiB, 84.95% gc time, 99.55% compilation time)
0.113493 seconds (44.21 k allocations: 2.781 MiB, 98.40% compilation time)
0.120679 seconds (46.00 k allocations: 2.951 MiB, 98.54% compilation time)
0.000001 seconds
0.000000 seconds
0.287728 seconds (224.86 k allocations: 13.514 MiB, 99.11% compilation time)
0.001222 seconds (5.22 k allocations: 559.891 KiB)
0.041991 seconds (54.83 k allocations: 3.407 MiB, 96.81% compilation time)
0.001264 seconds (5.94 k allocations: 611.781 KiB)
0.001097 seconds (5.12 k allocations: 534.859 KiB)
0.126170 seconds (188.99 k allocations: 11.717 MiB, 97.57% compilation time)
0.002294 seconds (3.23 k allocations: 837.969 KiB)
0.002122 seconds (3.24 k allocations: 841.703 KiB)
0.123945 seconds (55.57 k allocations: 3.927 MiB, 96.92% compilation time)
0.003613 seconds (3.31 k allocations: 888.438 KiB)
0.110257 seconds (54.35 k allocations: 3.799 MiB, 96.52% compilation time)
0.192277 seconds (58.34 k allocations: 4.100 MiB, 98.10% compilation time)
0.198862 seconds (80.52 k allocations: 5.137 MiB, 98.21% compilation time)
0.108218 seconds (57.21 k allocations: 4.023 MiB, 97.69% compilation time)
0.330967 seconds (269.64 k allocations: 16.058 MiB, 99.15% compilation time)
0.001047 seconds (5.23 k allocations: 429.000 KiB)
0.041942 seconds (54.85 k allocations: 3.291 MiB, 96.04% compilation time)
0.001715 seconds (5.97 k allocations: 503.266 KiB)
0.001429 seconds (5.15 k allocations: 414.531 KiB)
0.137446 seconds (239.18 k allocations: 14.173 MiB, 97.80% compilation time)
0.001694 seconds (3.23 k allocations: 557.391 KiB)
0.001741 seconds (3.25 k allocations: 560.375 KiB)
0.152279 seconds (55.58 k allocations: 3.632 MiB, 53.31% compilation time)
0.005329 seconds (3.31 k allocations: 586.266 KiB)
0.125693 seconds (54.35 k allocations: 3.510 MiB, 97.80% compilation time)
0.168477 seconds (58.34 k allocations: 3.794 MiB, 98.20% compilation time)
0.155684 seconds (80.52 k allocations: 4.861 MiB, 98.74% compilation time)
0.146949 seconds (57.21 k allocations: 3.726 MiB, 98.57% compilation time)
0.009552 seconds (8.23 k allocations: 654.165 KiB, 91.99% compilation time)
0.000875 seconds (4.45 k allocations: 480.094 KiB)
0.000620 seconds (3.53 k allocations: 331.422 KiB)
0.008880 seconds (6.72 k allocations: 540.368 KiB, 92.92% compilation time)
0.000498 seconds (3.60 k allocations: 337.031 KiB)
0.068171 seconds (4.99 k allocations: 629.587 KiB, 98.63% compilation time)
0.001233 seconds (1.84 k allocations: 418.766 KiB)
0.010430 seconds (5.02 k allocations: 638.103 KiB, 92.39% compilation time)
0.006722 seconds (3.59 k allocations: 312.719 KiB, 89.66% compilation time)
0.068743 seconds (3.59 k allocations: 314.641 KiB)
0.006883 seconds (1.90 k allocations: 376.047 KiB, 92.20% compilation time)
0.000628 seconds (1.89 k allocations: 390.891 KiB)
0.009139 seconds (8.25 k allocations: 667.012 KiB, 88.89% compilation time)
0.000856 seconds (5.08 k allocations: 460.672 KiB)
0.011982 seconds (8.34 k allocations: 683.902 KiB, 93.83% compilation time)
0.061470 seconds (5.18 k allocations: 478.250 KiB)
0.013573 seconds (6.40 k allocations: 916.855 KiB, 91.39% compilation time)
0.009586 seconds (6.43 k allocations: 939.574 KiB, 87.87% compilation time)
0.006723 seconds (5.14 k allocations: 441.812 KiB, 84.42% compilation time)
0.000608 seconds (5.17 k allocations: 448.641 KiB)
0.005772 seconds (3.26 k allocations: 660.906 KiB, 86.56% compilation time)
0.002001 seconds (3.26 k allocations: 675.688 KiB)
0.009934 seconds (6.73 k allocations: 474.915 KiB, 92.46% compilation time)
0.000901 seconds (4.59 k allocations: 431.750 KiB)
0.000794 seconds (3.61 k allocations: 271.188 KiB)
0.008567 seconds (6.76 k allocations: 477.556 KiB, 93.52% compilation time)
0.000425 seconds (3.65 k allocations: 274.297 KiB)
0.075582 seconds (4.99 k allocations: 494.587 KiB, 99.20% compilation time)
0.000500 seconds (1.84 k allocations: 286.484 KiB)
0.008322 seconds (5.02 k allocations: 500.149 KiB, 91.86% compilation time)
0.007120 seconds (3.67 k allocations: 263.156 KiB, 89.70% compilation time)
0.000501 seconds (3.64 k allocations: 262.781 KiB)
0.006340 seconds (1.89 k allocations: 266.312 KiB, 90.33% compilation time)
0.000932 seconds (1.89 k allocations: 274.453 KiB)
0.010129 seconds (8.22 k allocations: 583.715 KiB, 89.83% compilation time)
0.000881 seconds (5.05 k allocations: 377.953 KiB)
0.008564 seconds (8.29 k allocations: 594.121 KiB, 89.99% compilation time)
0.000935 seconds (5.12 k allocations: 388.406 KiB)
0.018675 seconds (6.40 k allocations: 699.559 KiB, 71.91% compilation time)
0.013819 seconds (6.43 k allocations: 712.324 KiB, 91.14% compilation time)
0.078303 seconds (5.11 k allocations: 369.969 KiB, 97.71% compilation time)
0.001437 seconds (5.11 k allocations: 373.172 KiB)
0.009258 seconds (3.26 k allocations: 468.875 KiB, 87.15% compilation time)
0.000784 seconds (3.26 k allocations: 476.953 KiB)
0.000190 seconds (56 allocations: 26.984 KiB)
0.047748 seconds (42.80 k allocations: 2.476 MiB, 98.83% compilation time)
0.006404 seconds (443 allocations: 40.703 KiB, 97.19% compilation time)
0.017393 seconds (8.89 k allocations: 520.916 KiB, 98.86% compilation time)
0.044041 seconds (37.79 k allocations: 2.152 MiB, 99.00% compilation time)
0.022746 seconds (10.24 k allocations: 629.119 KiB, 97.60% compilation time)
0.000142 seconds (371 allocations: 36.125 KiB)
0.000024 seconds (9 allocations: 3.812 KiB)
0.004061 seconds (836 allocations: 67.504 KiB, 98.48% compilation time)
0.000020 seconds (9 allocations: 3.812 KiB)
0.000069 seconds (350 allocations: 23.750 KiB)
0.000045 seconds (350 allocations: 23.750 KiB)
0.016779 seconds (9.63 k allocations: 592.457 KiB, 97.84% compilation time)
0.005265 seconds (95 allocations: 33.188 KiB, 96.96% compilation time)
0.017233 seconds (10.24 k allocations: 625.588 KiB, 97.97% compilation time)
0.001803 seconds (23 allocations: 28.609 KiB)
0.000044 seconds (9 allocations: 7.375 KiB)
0.000013 seconds (5 allocations: 5.250 KiB)
0.000232 seconds (55 allocations: 26.969 KiB)
0.000019 seconds (9 allocations: 3.812 KiB)
0.000598 seconds (1.09 k allocations: 93.469 KiB)
0.059359 seconds (44.50 k allocations: 2.673 MiB, 99.02% compilation time)
0.000249 seconds (289 allocations: 35.609 KiB)
0.000205 seconds (31 allocations: 39.812 KiB)
0.030596 seconds (11.26 k allocations: 656.779 KiB, 97.84% compilation time)
0.055575 seconds (45.52 k allocations: 2.732 MiB, 98.52% compilation time)
0.022998 seconds (13.21 k allocations: 922.076 KiB, 97.64% compilation time)
0.000234 seconds (292 allocations: 36.516 KiB)
0.000184 seconds (34 allocations: 40.719 KiB)
0.000152 seconds (1.05 k allocations: 71.953 KiB)
0.020637 seconds (32.30 k allocations: 1.984 MiB, 99.00% compilation time)
0.000070 seconds (264 allocations: 19.219 KiB)
0.000090 seconds (264 allocations: 19.219 KiB)
0.000087 seconds (264 allocations: 19.219 KiB)
0.032891 seconds (12.20 k allocations: 857.822 KiB, 97.55% compilation time)
0.000221 seconds (30 allocations: 36.812 KiB)
0.036774 seconds (13.21 k allocations: 940.326 KiB, 39.12% gc time, 59.25% compilation time)
0.000221 seconds (33 allocations: 38.609 KiB)
0.000234 seconds (1.63 k allocations: 228.281 KiB)
0.000017 seconds (6 allocations: 5.484 KiB)
0.000378 seconds (1.09 k allocations: 93.469 KiB)
0.000164 seconds (1.05 k allocations: 71.953 KiB)
0.000211 seconds (1.05 k allocations: 107.719 KiB)
0.066133 seconds (25.52 k allocations: 1.534 MiB, 99.20% compilation time)
0.000193 seconds (284 allocations: 29.359 KiB)
0.000234 seconds (1.04 k allocations: 106.344 KiB)
0.000122 seconds (285 allocations: 29.375 KiB)
0.000169 seconds (23 allocations: 29.844 KiB)
0.000159 seconds (1.01 k allocations: 93.328 KiB)
0.000103 seconds (1.01 k allocations: 91.969 KiB)
0.000058 seconds (264 allocations: 17.000 KiB)
0.000133 seconds (285 allocations: 29.375 KiB)
0.000044 seconds (264 allocations: 17.000 KiB)
0.000325 seconds (844 allocations: 144.562 KiB)
0.000104 seconds (22 allocations: 28.594 KiB)
0.000316 seconds (843 allocations: 157.203 KiB)
0.000089 seconds (23 allocations: 28.609 KiB)
0.000094 seconds (819 allocations: 118.609 KiB)
0.000009 seconds (5 allocations: 5.250 KiB)
0.000193 seconds (1.04 k allocations: 106.344 KiB)
0.000085 seconds (1.01 k allocations: 91.969 KiB)
0.000256 seconds (1.09 k allocations: 95.219 KiB)
0.000143 seconds (237 allocations: 31.672 KiB)
0.000252 seconds (1.09 k allocations: 95.219 KiB)
0.000127 seconds (240 allocations: 32.578 KiB)
0.000126 seconds (1.05 k allocations: 72.828 KiB)
0.000123 seconds (1.05 k allocations: 72.828 KiB)
0.000079 seconds (237 allocations: 31.672 KiB)
0.000064 seconds (31 allocations: 39.812 KiB)
0.000242 seconds (240 allocations: 32.578 KiB)
0.000084 seconds (240 allocations: 32.578 KiB)
0.000087 seconds (34 allocations: 40.719 KiB)
0.000425 seconds (1.67 k allocations: 271.906 KiB)
0.000133 seconds (30 allocations: 36.812 KiB)
0.000394 seconds (1.67 k allocations: 297.219 KiB)
0.000130 seconds (33 allocations: 38.609 KiB)
0.000168 seconds (1.63 k allocations: 230.047 KiB)
0.000008 seconds (6 allocations: 5.484 KiB)
0.000290 seconds (1.09 k allocations: 95.219 KiB)
0.000128 seconds (1.05 k allocations: 72.828 KiB)
0.000130 seconds (50 allocations: 19.250 KiB)
0.000009 seconds (8 allocations: 1.766 KiB)
0.000007 seconds (14 allocations: 2.156 KiB)
3.750665 seconds (6.75 M allocations: 263.038 MiB, 3.46% gc time, 100.00% compilation time)
3.904115 seconds (6.65 M allocations: 257.371 MiB, 3.67% gc time, 100.00% compilation time)
3.960069 seconds (6.68 M allocations: 258.789 MiB, 6.11% gc time, 100.00% compilation time)
0.000040 seconds (14 allocations: 2.156 KiB)
0.022334 seconds (31.63 k allocations: 1.874 MiB, 99.70% compilation time)
0.022306 seconds (32.20 k allocations: 1.902 MiB, 99.72% compilation time)
0.045844 seconds (43.56 k allocations: 2.617 MiB, 99.86% compilation time)
0.000036 seconds (14 allocations: 2.156 KiB)
0.033936 seconds (31.63 k allocations: 1.874 MiB, 99.83% compilation time)
0.024833 seconds (32.20 k allocations: 1.907 MiB, 99.76% compilation time)
0.026921 seconds (43.55 k allocations: 2.617 MiB, 99.78% compilation time)
0.014458 seconds (5.70 k allocations: 347.985 KiB, 97.90% compilation time)
0.000027 seconds (8 allocations: 2.938 KiB)
0.023682 seconds (5.36 k allocations: 309.726 KiB, 99.05% compilation time)
0.020503 seconds (6.71 k allocations: 406.085 KiB, 96.73% compilation time)
0.000174 seconds (537 allocations: 56.000 KiB)
0.000090 seconds (513 allocations: 46.422 KiB)
0.000160 seconds (519 allocations: 46.812 KiB)
0.000147 seconds (524 allocations: 46.703 KiB)
0.000093 seconds (523 allocations: 46.500 KiB)
0.000108 seconds (519 allocations: 46.203 KiB)
0.000099 seconds (519 allocations: 46.203 KiB)
0.000111 seconds (524 allocations: 46.516 KiB)
0.000086 seconds (523 allocations: 46.688 KiB)
0.000095 seconds (519 allocations: 46.812 KiB)
0.000085 seconds (519 allocations: 46.203 KiB)
0.000094 seconds (524 allocations: 46.516 KiB)
0.000103 seconds (523 allocations: 46.688 KiB)
0.000089 seconds (519 allocations: 46.812 KiB)
0.000329 seconds (401 allocations: 67.500 KiB)
0.000117 seconds (383 allocations: 51.359 KiB)
0.000083 seconds (384 allocations: 57.469 KiB)
0.000208 seconds (539 allocations: 55.422 KiB)
0.000129 seconds (513 allocations: 45.812 KiB)
0.000109 seconds (513 allocations: 45.812 KiB)
0.000316 seconds (403 allocations: 73.156 KiB)
0.000117 seconds (383 allocations: 56.984 KiB)
0.000375 seconds (542 allocations: 50.609 KiB)
0.000111 seconds (508 allocations: 35.594 KiB)
0.000105 seconds (508 allocations: 35.594 KiB)
0.000104 seconds (515 allocations: 36.125 KiB)
44.142416 seconds (39.78 M allocations: 1.510 GiB, 3.31% gc time, 100.00% compilation time)
41.624253 seconds (37.71 M allocations: 1.420 GiB, 3.76% gc time, 100.00% compilation time)
41.048351 seconds (35.07 M allocations: 1.304 GiB, 3.11% gc time, 100.00% compilation time)
0.000124 seconds (515 allocations: 36.125 KiB)
0.000104 seconds (515 allocations: 36.125 KiB)
0.026073 seconds (32.92 k allocations: 2.003 MiB, 99.19% compilation time)
0.020537 seconds (32.64 k allocations: 1.990 MiB, 99.11% compilation time)
0.022063 seconds (50.01 k allocations: 3.099 MiB, 99.16% compilation time)
0.000114 seconds (515 allocations: 36.125 KiB)
0.024072 seconds (32.92 k allocations: 2.003 MiB, 99.08% compilation time)
0.020651 seconds (32.64 k allocations: 1.990 MiB, 99.17% compilation time)
0.021245 seconds (50.01 k allocations: 3.099 MiB, 99.20% compilation time)
0.012751 seconds (5.69 k allocations: 404.624 KiB, 95.91% compilation time)
0.000125 seconds (760 allocations: 99.984 KiB)
0.000146 seconds (761 allocations: 111.719 KiB)