-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-3bfcb743c2.log
1014 lines (1013 loc) · 65.9 KB
/
1.6.0-DEV-3bfcb743c2.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.1185
Commit 3bfcb743c2 (2020-10-11 23:29 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
JULIA_MAX_NUM_PRECOMPILE_FILES = 9223372036854775807
Resolving package versions...
Installed FastClosures ──── v0.3.2
Installed TimerOutputs ──── v0.5.6
Installed MatrixEquations ─ v1.2.0
Installed LinearOperators ─ v1.1.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_53mp5Z/Project.toml`
[5c8ed15e] LinearOperators v1.1.0
[99c1a7ee] MatrixEquations v1.2.0
[37e2e46d] LinearAlgebra
[9a3f8284] Random
[8dfed614] Test
Status `/tmp/jl_53mp5Z/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.164007 seconds (746.66 k allocations: 42.615 MiB, 91.37% compilation time)
0.454859 seconds (382.28 k allocations: 21.175 MiB, 99.99% compilation time)
0.248024 seconds (356.46 k allocations: 19.476 MiB, 99.98% compilation time)
0.025893 seconds (9.44 k allocations: 568.699 KiB, 99.06% compilation time)
0.000188 seconds (366 allocations: 33.297 KiB)
0.039884 seconds (10.40 k allocations: 610.545 KiB, 99.38% compilation time)
0.124526 seconds (100.82 k allocations: 5.893 MiB, 99.79% compilation time)
0.018464 seconds (10.06 k allocations: 597.315 KiB, 98.81% compilation time)
0.030670 seconds (10.56 k allocations: 635.158 KiB, 99.25% compilation time)
0.047427 seconds (10.98 k allocations: 659.164 KiB, 99.34% compilation time)
1.242939 seconds (699.65 k allocations: 40.338 MiB, 99.09% compilation time)
0.340698 seconds (380.04 k allocations: 20.622 MiB, 99.98% compilation time)
0.366290 seconds (370.42 k allocations: 20.125 MiB, 88.63% compilation time)
0.028720 seconds (9.44 k allocations: 557.621 KiB, 99.13% compilation time)
11.059295 seconds (10.97 M allocations: 518.465 MiB, 10.44% gc time, 99.90% compilation time)
0.026616 seconds (10.40 k allocations: 601.904 KiB, 99.13% compilation time)
0.160156 seconds (99.76 k allocations: 5.808 MiB, 99.85% compilation time)
0.024096 seconds (10.06 k allocations: 585.425 KiB, 99.17% compilation time)
0.024213 seconds (9.38 k allocations: 540.986 KiB, 99.22% compilation time)
0.027276 seconds (10.98 k allocations: 648.414 KiB, 98.98% compilation time)
0.000000 seconds
0.000000 seconds
0.790695 seconds (417.77 k allocations: 23.468 MiB, 99.71% compilation time)
0.174754 seconds (203.16 k allocations: 11.297 MiB, 24.52% gc time, 99.86% compilation time)
0.008552 seconds (1.27 k allocations: 100.889 KiB, 97.31% compilation time)
0.009743 seconds (2.98 k allocations: 214.803 KiB, 97.52% compilation time)
0.012584 seconds (6.18 k allocations: 314.097 KiB, 99.51% compilation time)
0.157926 seconds (201.64 k allocations: 10.951 MiB, 99.97% compilation time)
0.394967 seconds (467.86 k allocations: 26.209 MiB, 5.84% gc time, 99.91% compilation time)
0.012973 seconds (3.85 k allocations: 271.244 KiB, 98.25% compilation time)
0.014288 seconds (2.39 k allocations: 170.744 KiB, 98.32% compilation time)
0.031032 seconds (14.61 k allocations: 862.118 KiB, 99.25% compilation time)
0.028110 seconds (16.43 k allocations: 967.462 KiB, 98.88% compilation time)
0.000268 seconds (400 allocations: 40.281 KiB)
0.025512 seconds (15.79 k allocations: 944.530 KiB, 98.68% compilation time)
0.361391 seconds (434.91 k allocations: 24.389 MiB, 99.89% compilation time)
0.049187 seconds (14.98 k allocations: 869.587 KiB, 43.42% gc time, 98.97% compilation time)
0.048658 seconds (16.81 k allocations: 975.540 KiB, 99.23% compilation time)
0.033028 seconds (15.03 k allocations: 900.863 KiB, 98.78% compilation time)
0.103060 seconds (18.80 k allocations: 1.101 MiB, 99.70% compilation time)
0.099783 seconds (15.25 k allocations: 890.871 KiB, 99.68% compilation time)
0.038541 seconds (17.09 k allocations: 1000.246 KiB, 99.34% compilation time)
0.000186 seconds (27 allocations: 34.312 KiB)
0.026515 seconds (20.80 k allocations: 1.218 MiB, 98.86% compilation time)
0.027416 seconds (15.94 k allocations: 926.491 KiB, 98.82% compilation time)
0.033870 seconds (17.75 k allocations: 1.007 MiB, 98.99% compilation time)
0.803985 seconds (428.02 k allocations: 24.029 MiB, 99.96% compilation time)
0.215713 seconds (202.70 k allocations: 11.241 MiB, 18.44% gc time, 99.87% compilation time)
0.008482 seconds (1.27 k allocations: 88.998 KiB, 97.71% compilation time)
0.015799 seconds (2.97 k allocations: 201.850 KiB, 98.72% compilation time)
0.012731 seconds (6.17 k allocations: 311.550 KiB, 99.59% compilation time)
0.121237 seconds (207.10 k allocations: 11.016 MiB, 99.96% compilation time)
0.430904 seconds (456.44 k allocations: 25.449 MiB, 7.40% gc time, 99.94% compilation time)
0.014982 seconds (3.84 k allocations: 258.697 KiB, 98.69% compilation time)
0.030770 seconds (2.39 k allocations: 158.525 KiB, 99.34% compilation time)
0.032506 seconds (14.60 k allocations: 844.884 KiB, 99.09% compilation time)
0.028598 seconds (16.43 k allocations: 950.634 KiB, 98.94% compilation time)
11.036937 seconds (15.26 M allocations: 644.035 MiB, 6.33% gc time, 100.00% compilation time)
0.028957 seconds (15.79 k allocations: 927.593 KiB, 98.83% compilation time)
0.425652 seconds (435.53 k allocations: 24.410 MiB, 99.92% compilation time)
0.043734 seconds (14.98 k allocations: 858.103 KiB, 99.23% compilation time)
0.051363 seconds (16.80 k allocations: 963.681 KiB, 99.23% compilation time)
0.052621 seconds (15.03 k allocations: 884.801 KiB, 99.41% compilation time)
0.038955 seconds (18.80 k allocations: 1.085 MiB, 99.18% compilation time)
0.031313 seconds (15.24 k allocations: 872.746 KiB, 99.07% compilation time)
0.034747 seconds (17.09 k allocations: 982.559 KiB, 99.30% compilation time)
0.000152 seconds (27 allocations: 17.516 KiB)
0.047242 seconds (20.80 k allocations: 1.201 MiB, 99.37% compilation time)
0.034281 seconds (15.94 k allocations: 909.382 KiB, 99.15% compilation time)
0.034343 seconds (17.75 k allocations: 1014.163 KiB, 98.98% compilation time)
0.002861 seconds (20 allocations: 1.453 KiB, 98.86% compilation time)
0.051513 seconds (9.11 k allocations: 538.532 KiB, 99.90% compilation time)
0.007249 seconds (62 allocations: 3.719 KiB, 99.43% compilation time)
0.004480 seconds (394 allocations: 25.453 KiB, 93.26% compilation time)
0.014187 seconds (436 allocations: 27.719 KiB, 98.69% compilation time)
0.034142 seconds (9.39 k allocations: 561.535 KiB, 99.51% compilation time)
0.048199 seconds (929 allocations: 62.280 KiB, 99.50% compilation time)
0.000123 seconds (375 allocations: 24.234 KiB)
0.004178 seconds (586 allocations: 41.046 KiB, 99.39% compilation time)
0.006901 seconds (60 allocations: 3.453 KiB, 99.87% compilation time)
0.000083 seconds (346 allocations: 21.281 KiB)
0.005004 seconds (404 allocations: 24.703 KiB, 97.57% compilation time)
0.005227 seconds (20 allocations: 1.375 KiB, 99.61% compilation time)
0.037723 seconds (9.11 k allocations: 538.642 KiB, 99.90% compilation time)
0.007542 seconds (62 allocations: 3.641 KiB, 99.68% compilation time)
0.003742 seconds (519 allocations: 27.484 KiB, 96.22% compilation time)
0.006499 seconds (561 allocations: 29.750 KiB, 97.55% compilation time)
0.035415 seconds (9.53 k allocations: 565.488 KiB, 99.51% compilation time)
0.040057 seconds (1.06 k allocations: 64.780 KiB, 9.91% compilation time)
0.000135 seconds (500 allocations: 26.266 KiB)
0.008071 seconds (582 allocations: 40.687 KiB, 99.25% compilation time)
0.007469 seconds (60 allocations: 3.453 KiB, 99.76% compilation time)
0.000133 seconds (478 allocations: 24.141 KiB)
0.007144 seconds (536 allocations: 27.562 KiB, 97.46% compilation time)
0.000000 seconds
0.000000 seconds
0.328145 seconds (126.25 k allocations: 7.001 MiB, 99.94% compilation time)
0.012736 seconds (11.35 k allocations: 676.544 KiB, 99.62% compilation time)
0.377458 seconds (208.18 k allocations: 11.676 MiB, 15.85% gc time, 99.99% compilation time)
0.033986 seconds (9.43 k allocations: 568.480 KiB, 99.28% compilation time)
0.002842 seconds (280 allocations: 26.547 KiB)
0.034513 seconds (10.31 k allocations: 603.654 KiB, 99.34% compilation time)
0.017118 seconds (9.31 k allocations: 548.061 KiB, 98.69% compilation time)
0.030184 seconds (10.06 k allocations: 597.362 KiB, 99.29% compilation time)
0.028875 seconds (9.37 k allocations: 552.549 KiB, 99.21% compilation time)
0.022974 seconds (10.98 k allocations: 659.898 KiB, 98.97% compilation time)
0.316330 seconds (129.87 k allocations: 7.132 MiB, 99.92% compilation time)
0.010035 seconds (3.83 k allocations: 197.091 KiB, 99.36% compilation time)
0.314203 seconds (216.75 k allocations: 11.987 MiB, 99.98% compilation time)
0.050004 seconds (9.43 k allocations: 557.480 KiB, 99.55% compilation time)
3.158465 seconds (5.78 M allocations: 247.982 MiB, 7.19% gc time, 99.99% compilation time)
0.034325 seconds (10.31 k allocations: 597.545 KiB, 99.24% compilation time)
0.016950 seconds (9.31 k allocations: 536.170 KiB, 98.52% compilation time)
0.014746 seconds (10.06 k allocations: 586.612 KiB, 98.83% compilation time)
0.014981 seconds (9.37 k allocations: 540.471 KiB, 98.83% compilation time)
0.316697 seconds (10.98 k allocations: 647.398 KiB, 99.93% compilation time)
0.000000 seconds
0.447855 seconds (163.39 k allocations: 8.746 MiB, 99.92% compilation time)
0.024833 seconds (6.74 k allocations: 437.985 KiB, 99.03% compilation time)
0.027160 seconds (2.42 k allocations: 154.195 KiB, 99.07% compilation time)
0.014560 seconds (4.82 k allocations: 274.097 KiB, 98.58% compilation time)
0.012963 seconds (2.84 k allocations: 175.741 KiB, 98.30% compilation time)
0.013908 seconds (8.38 k allocations: 463.682 KiB, 99.70% compilation time)
0.011720 seconds (7.62 k allocations: 375.441 KiB, 99.63% compilation time)
0.062626 seconds (21.21 k allocations: 1.265 MiB, 99.45% compilation time)
0.013238 seconds (5.14 k allocations: 302.808 KiB, 98.23% compilation time)
0.024377 seconds (5.66 k allocations: 328.970 KiB, 99.12% compilation time)
0.041353 seconds (14.60 k allocations: 861.603 KiB, 99.28% compilation time)
0.026127 seconds (16.43 k allocations: 967.431 KiB, 99.14% compilation time)
0.000308 seconds (286 allocations: 30.812 KiB)
0.039091 seconds (21.48 k allocations: 1.265 MiB, 99.07% compilation time)
0.054032 seconds (14.86 k allocations: 859.774 KiB, 99.49% compilation time)
0.029687 seconds (16.69 k allocations: 966.384 KiB, 98.89% compilation time)
0.037570 seconds (14.29 k allocations: 854.223 KiB, 88.35% compilation time)
0.052303 seconds (18.80 k allocations: 1.101 MiB, 94.85% compilation time)
0.032201 seconds (15.25 k allocations: 889.699 KiB, 98.92% compilation time)
0.041437 seconds (17.08 k allocations: 999.324 KiB, 99.10% compilation time)
0.034056 seconds (15.04 k allocations: 895.921 KiB, 99.13% compilation time)
0.038356 seconds (20.80 k allocations: 1.218 MiB, 99.13% compilation time)
0.039567 seconds (15.93 k allocations: 925.960 KiB, 99.30% compilation time)
0.025918 seconds (17.75 k allocations: 1.007 MiB, 98.73% compilation time)
0.355089 seconds (167.18 k allocations: 8.903 MiB, 99.92% compilation time)
0.014696 seconds (4.58 k allocations: 283.970 KiB, 98.68% compilation time)
0.014636 seconds (2.42 k allocations: 143.539 KiB, 89.00% compilation time)
0.019269 seconds (4.82 k allocations: 261.112 KiB, 98.77% compilation time)
0.011228 seconds (2.84 k allocations: 162.960 KiB, 98.16% compilation time)
0.013110 seconds (5.51 k allocations: 277.134 KiB, 99.62% compilation time)
0.012535 seconds (7.62 k allocations: 374.457 KiB, 99.63% compilation time)
0.028666 seconds (21.21 k allocations: 1.249 MiB, 98.98% compilation time)
0.012050 seconds (5.14 k allocations: 289.636 KiB, 98.32% compilation time)
0.010702 seconds (5.66 k allocations: 315.798 KiB, 98.14% compilation time)
0.040914 seconds (14.60 k allocations: 847.478 KiB, 99.15% compilation time)
0.028854 seconds (16.43 k allocations: 950.634 KiB, 99.16% compilation time)
13.282018 seconds (11.70 M allocations: 479.532 MiB, 18.10% gc time, 100.00% compilation time)
1.738651 seconds (21.51 k allocations: 1.255 MiB, 99.98% compilation time)
0.025922 seconds (14.86 k allocations: 850.853 KiB, 99.02% compilation time)
0.021659 seconds (16.69 k allocations: 956.478 KiB, 98.63% compilation time)
0.024266 seconds (14.29 k allocations: 838.316 KiB, 98.82% compilation time)
0.022911 seconds (18.80 k allocations: 1.085 MiB, 99.01% compilation time)
0.017861 seconds (15.24 k allocations: 872.746 KiB, 98.83% compilation time)
0.018843 seconds (17.08 k allocations: 981.637 KiB, 98.96% compilation time)
0.017307 seconds (15.04 k allocations: 879.265 KiB, 98.85% compilation time)
0.022452 seconds (20.80 k allocations: 1.201 MiB, 98.98% compilation time)
0.019799 seconds (15.93 k allocations: 908.772 KiB, 98.96% compilation time)
0.020071 seconds (17.75 k allocations: 1013.679 KiB, 98.88% compilation time)
0.002315 seconds (846 allocations: 55.577 KiB, 94.74% compilation time)
0.003741 seconds (320 allocations: 17.984 KiB, 97.87% compilation time)
0.001837 seconds (20 allocations: 1.453 KiB, 98.79% compilation time)
0.014732 seconds (9.10 k allocations: 537.610 KiB, 99.68% compilation time)
0.003849 seconds (62 allocations: 3.719 KiB, 99.61% compilation time)
0.002119 seconds (280 allocations: 15.984 KiB, 93.58% compilation time)
0.004222 seconds (322 allocations: 18.250 KiB, 97.51% compilation time)
0.003471 seconds (881 allocations: 54.327 KiB, 95.94% compilation time)
0.004178 seconds (359 allocations: 17.094 KiB, 97.80% compilation time)
0.002750 seconds (20 allocations: 1.375 KiB, 99.46% compilation time)
0.016628 seconds (9.10 k allocations: 537.720 KiB, 99.81% compilation time)
0.009808 seconds (62 allocations: 3.641 KiB, 99.81% compilation time)
0.002093 seconds (319 allocations: 15.016 KiB, 95.88% compilation time)
0.004096 seconds (361 allocations: 17.281 KiB, 98.05% compilation time)
0.012656 seconds (6 allocations: 3.823 MiB)
0.056939 seconds (5 allocations: 3.815 MiB)
0.013625 seconds (9 allocations: 5.730 MiB)
0.040818 seconds (5 allocations: 3.815 MiB)
0.090430 seconds (10 allocations: 7.638 MiB)
0.088474 seconds (5 allocations: 3.815 MiB)
0.254611 seconds (38.48 k allocations: 11.735 MiB, 85.27% compilation time)
0.043052 seconds (5 allocations: 3.815 MiB)
0.262598 seconds (61.78 k allocations: 6.535 MiB, 99.42% compilation time)
0.002022 seconds (4 allocations: 2.863 MiB)
0.000941 seconds (4 allocations: 2.863 MiB)
0.002166 seconds (4 allocations: 2.863 MiB)
2.712458 seconds (1.08 M allocations: 60.820 MiB, 39.79% gc time, 99.40% compilation time)
0.347862 seconds (331.36 k allocations: 18.266 MiB, 91.10% compilation time)
0.950380 seconds (791.21 k allocations: 48.048 MiB, 2.80% gc time, 96.12% compilation time)
0.274744 seconds (97.31 k allocations: 6.294 MiB, 94.45% compilation time)
0.129658 seconds (83.47 k allocations: 5.374 MiB, 15.83% gc time, 94.81% compilation time)
0.179977 seconds (82.49 k allocations: 5.283 MiB, 94.11% compilation time)
0.093658 seconds (81.69 k allocations: 5.233 MiB, 92.87% compilation time)
0.518139 seconds (352.71 k allocations: 21.328 MiB, 93.50% compilation time)
0.846637 seconds (763.54 k allocations: 45.249 MiB, 2.21% gc time, 99.68% compilation time)
1.263440 seconds (1.09 M allocations: 60.223 MiB, 97.73% compilation time)
0.624460 seconds (378.58 k allocations: 21.701 MiB, 4.04% gc time, 98.68% compilation time)
0.093661 seconds (81.75 k allocations: 5.449 MiB, 85.18% compilation time)
0.077034 seconds (48.88 k allocations: 3.048 MiB, 90.06% compilation time)
4.306249 seconds (3.66 M allocations: 204.308 MiB, 2.64% gc time, 99.12% compilation time)
0.480995 seconds (334.23 k allocations: 18.449 MiB, 88.67% compilation time)
0.884386 seconds (581.53 k allocations: 34.444 MiB, 3.35% gc time, 95.49% compilation time)
0.429927 seconds (117.61 k allocations: 7.344 MiB, 98.80% compilation time)
0.535749 seconds (374.75 k allocations: 22.613 MiB, 5.52% gc time, 84.90% compilation time)
1.017692 seconds (926.45 k allocations: 55.658 MiB, 2.55% gc time, 98.98% compilation time)
3.507029 seconds (2.70 M allocations: 151.271 MiB, 3.66% gc time, 99.89% compilation time)
0.362240 seconds (122.52 k allocations: 8.106 MiB, 27.01% gc time, 96.05% compilation time)
0.166200 seconds (55.14 k allocations: 4.070 MiB, 80.32% compilation time)
0.074086 seconds (3.93 k allocations: 491.360 KiB, 20.72% compilation time)
0.941165 seconds (541.99 k allocations: 30.262 MiB, 99.53% compilation time)
0.645512 seconds (509.06 k allocations: 28.222 MiB, 22.22% gc time, 99.63% compilation time)
1.085407 seconds (853.59 k allocations: 47.321 MiB, 2.96% gc time, 98.23% compilation time)
0.704449 seconds (488.11 k allocations: 26.964 MiB, 2.80% gc time, 95.30% compilation time)
5.126548 seconds (3.92 M allocations: 212.620 MiB, 4.01% gc time, 99.72% compilation time)
0.099093 seconds (424 allocations: 664.984 KiB, 5.57% compilation time)
0.940047 seconds (622.90 k allocations: 33.675 MiB, 94.96% compilation time)
0.612950 seconds (459.12 k allocations: 25.376 MiB, 98.51% compilation time)
0.155570 seconds (45.34 k allocations: 3.459 MiB, 50.78% compilation time)
0.587786 seconds (330.23 k allocations: 18.846 MiB, 20.58% gc time, 99.50% compilation time)
0.113830 seconds (45.34 k allocations: 3.459 MiB, 25.49% compilation time)
0.950146 seconds (605.87 k allocations: 32.633 MiB, 2.54% gc time, 99.80% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
2.121812 seconds (1.57 M allocations: 89.557 MiB, 2.34% gc time, 99.90% compilation time)
0.352342 seconds (214.01 k allocations: 12.473 MiB, 96.84% compilation time)
0.085688 seconds (45.43 k allocations: 3.737 MiB, 77.28% compilation time)
0.505203 seconds (194.64 k allocations: 11.278 MiB, 9.38% gc time, 74.89% compilation time)
0.315904 seconds (44.67 k allocations: 3.698 MiB, 97.36% compilation time)
0.575685 seconds (214.58 k allocations: 12.492 MiB, 79.72% compilation time)
2.551324 seconds (1.46 M allocations: 84.006 MiB, 3.35% gc time, 97.09% compilation time)
0.690999 seconds (199.63 k allocations: 11.872 MiB, 3.60% gc time, 75.11% compilation time)
0.191749 seconds (41.64 k allocations: 3.501 MiB, 59.19% compilation time)
0.402420 seconds (194.65 k allocations: 11.281 MiB, 96.38% compilation time)
0.117947 seconds (44.74 k allocations: 3.701 MiB, 91.90% compilation time)
0.380873 seconds (198.04 k allocations: 11.484 MiB, 98.03% compilation time)
2.699198 seconds (2.10 M allocations: 125.661 MiB, 7.35% gc time, 92.81% compilation time)
0.978134 seconds (764.28 k allocations: 51.411 MiB, 5.51% gc time, 97.85% compilation time)
0.226789 seconds (64.56 k allocations: 11.165 MiB, 55.85% compilation time)
0.197271 seconds (15.03 k allocations: 7.825 MiB, 2.78% compilation time)
0.334319 seconds (60.11 k allocations: 10.937 MiB, 6.87% gc time, 30.96% compilation time)
2.749336 seconds (1.95 M allocations: 122.796 MiB, 2.73% gc time, 92.72% compilation time)
0.230462 seconds (15.25 k allocations: 14.355 MiB, 2.62% compilation time)
0.623878 seconds (349.17 k allocations: 26.229 MiB, 10.75% gc time, 80.25% compilation time)
0.581499 seconds (424.80 k allocations: 29.740 MiB, 85.50% compilation time)
0.291396 seconds (59.34 k allocations: 10.933 MiB, 8.09% gc time, 47.61% compilation time)
0.608129 seconds (359.80 k allocations: 26.113 MiB, 84.37% compilation time)
0.227843 seconds (63.30 k allocations: 11.134 MiB, 40.83% compilation time)
0.960797 seconds (392.63 k allocations: 33.912 MiB, 5.91% gc time, 81.66% compilation time)
0.682846 seconds (155.54 k allocations: 22.546 MiB, 2.38% gc time, 41.27% compilation time)
0.503667 seconds (204.69 k allocations: 23.250 MiB, 78.35% compilation time)
0.916460 seconds (345.56 k allocations: 25.347 MiB, 11.75% gc time, 85.51% compilation time)
0.000232 seconds (55 allocations: 12.141 KiB)
0.000137 seconds (55 allocations: 12.141 KiB)
0.000164 seconds (74 allocations: 12.766 KiB)
0.000101 seconds (78 allocations: 12.828 KiB)
0.000095 seconds (78 allocations: 12.828 KiB)
0.000108 seconds (74 allocations: 12.766 KiB)
0.000101 seconds (74 allocations: 12.766 KiB)
0.000119 seconds (73 allocations: 12.750 KiB)
0.000109 seconds (65 allocations: 12.422 KiB)
0.000217 seconds (42 allocations: 18.812 KiB)
0.000189 seconds (52 allocations: 19.094 KiB)
0.000145 seconds (43 allocations: 19.297 KiB)
0.000162 seconds (44 allocations: 19.781 KiB)
0.011856 seconds (92 allocations: 20.672 KiB)
0.000326 seconds (92 allocations: 20.672 KiB)
0.000308 seconds (135 allocations: 22.234 KiB)
0.000286 seconds (135 allocations: 22.234 KiB)
0.000255 seconds (139 allocations: 22.297 KiB)
0.000296 seconds (171 allocations: 22.000 KiB)
1.260199 seconds (1.19 M allocations: 66.596 MiB, 2.84% gc time, 99.96% compilation time)
0.236965 seconds (105.97 k allocations: 6.559 MiB, 99.54% compilation time)
0.019253 seconds (54.47 k allocations: 3.717 MiB, 98.42% compilation time)
0.012573 seconds (3.78 k allocations: 215.284 KiB, 97.90% compilation time)
0.559369 seconds (537.45 k allocations: 29.748 MiB, 99.95% compilation time)
0.547947 seconds (491.09 k allocations: 26.956 MiB, 5.11% gc time, 99.79% compilation time)
0.975275 seconds (845.21 k allocations: 46.752 MiB, 2.12% gc time, 99.94% compilation time)
0.692554 seconds (489.99 k allocations: 26.862 MiB, 6.09% gc time, 99.95% compilation time)
0.000268 seconds (77 allocations: 25.094 KiB)
1.342964 seconds (1.31 M allocations: 72.622 MiB, 2.40% gc time, 99.98% compilation time)
0.747457 seconds (643.18 k allocations: 34.371 MiB, 3.52% gc time, 99.85% compilation time)
0.480536 seconds (458.87 k allocations: 25.077 MiB, 99.83% compilation time)
0.047932 seconds (45.33 k allocations: 3.151 MiB, 99.40% compilation time)
0.288806 seconds (328.29 k allocations: 18.411 MiB, 7.62% gc time, 99.91% compilation time)
0.064784 seconds (45.33 k allocations: 3.152 MiB, 99.53% compilation time)
0.698335 seconds (559.18 k allocations: 29.969 MiB, 3.36% gc time, 99.93% compilation time)
┌ Warning: R nearly singular: using the orthogonal reduction method
└ @ MatrixEquations ~/.julia/packages/MatrixEquations/j0eab/src/riccati.jl:319
0.002654 seconds (352 allocations: 29.000 KiB)
0.426991 seconds (215.84 k allocations: 12.055 MiB, 99.85% compilation time)
0.073231 seconds (45.40 k allocations: 3.151 MiB, 99.08% compilation time)
0.345835 seconds (196.48 k allocations: 10.862 MiB, 99.84% compilation time)
0.050370 seconds (44.66 k allocations: 3.113 MiB, 93.76% compilation time)
0.445040 seconds (229.76 k allocations: 12.856 MiB, 20.67% gc time, 99.84% compilation time)
0.479221 seconds (226.42 k allocations: 12.146 MiB, 99.74% compilation time)
0.343418 seconds (198.39 k allocations: 10.661 MiB, 99.70% compilation time)
0.061889 seconds (41.62 k allocations: 2.917 MiB, 96.22% compilation time)
0.484405 seconds (196.50 k allocations: 10.869 MiB, 7.58% gc time, 99.80% compilation time)
0.064993 seconds (44.71 k allocations: 3.115 MiB, 64.28% compilation time)
0.361893 seconds (199.79 k allocations: 11.074 MiB, 95.88% compilation time)
1.369321 seconds (1.03 M allocations: 58.555 MiB, 2.91% gc time, 99.93% compilation time)
0.479546 seconds (368.25 k allocations: 20.434 MiB, 5.04% gc time, 99.52% compilation time)
0.044278 seconds (50.07 k allocations: 3.425 MiB, 98.36% compilation time)
0.004665 seconds (685 allocations: 96.094 KiB, 84.24% compilation time)
0.039630 seconds (45.76 k allocations: 3.204 MiB, 98.02% compilation time)
0.000827 seconds (573 allocations: 133.875 KiB)
0.961828 seconds (760.65 k allocations: 42.449 MiB, 3.56% gc time, 99.85% compilation time)
0.375932 seconds (366.47 k allocations: 20.331 MiB, 96.62% compilation time)
0.578879 seconds (437.22 k allocations: 23.703 MiB, 5.19% gc time, 99.90% compilation time)
0.039535 seconds (44.98 k allocations: 3.168 MiB, 98.29% compilation time)
0.616313 seconds (384.58 k allocations: 20.675 MiB, 99.14% compilation time)
0.078998 seconds (48.82 k allocations: 3.362 MiB, 58.98% gc time, 98.97% compilation time)
0.554075 seconds (366.43 k allocations: 19.106 MiB, 99.87% compilation time)
0.019866 seconds (11.12 k allocations: 771.596 KiB, 95.91% compilation time)
0.364450 seconds (189.28 k allocations: 8.879 MiB, 99.77% compilation time)
0.586039 seconds (368.50 k allocations: 19.825 MiB, 5.37% gc time, 99.84% compilation time)
0.000000 seconds
0.279010 seconds (233.89 k allocations: 12.994 MiB, 87.10% compilation time)
0.063587 seconds (1.87 k allocations: 135.685 KiB, 18.21% compilation time)
0.015535 seconds (1.25 k allocations: 92.013 KiB, 97.36% compilation time)
0.016144 seconds (6.02 k allocations: 377.706 KiB, 99.58% compilation time)
0.007083 seconds (1.55 k allocations: 98.301 KiB, 99.20% compilation time)
0.001268 seconds (46 allocations: 201.719 KiB)
0.106259 seconds (14.89 k allocations: 933.562 KiB, 99.23% compilation time)
0.642939 seconds (406.58 k allocations: 33.869 MiB, 93.79% compilation time)
0.244691 seconds (96.71 k allocations: 6.132 MiB, 98.47% compilation time)
0.033046 seconds (13.77 k allocations: 983.149 KiB, 93.77% compilation time)
1.296243 seconds (556.12 k allocations: 52.789 MiB, 18.00% gc time, 66.45% compilation time)
0.199046 seconds (44.69 k allocations: 2.979 MiB, 98.09% compilation time)
0.101975 seconds (48.14 k allocations: 2.943 MiB, 98.57% compilation time)
0.099058 seconds (47.24 k allocations: 2.902 MiB, 98.83% compilation time)
0.100091 seconds (45.84 k allocations: 3.024 MiB, 96.31% compilation time)
0.123627 seconds (47.75 k allocations: 3.142 MiB, 97.99% compilation time)
0.144882 seconds (83.33 k allocations: 5.033 MiB, 97.40% compilation time)
1.652293 seconds (1.30 M allocations: 70.459 MiB, 99.25% compilation time)
0.759269 seconds (471.97 k allocations: 26.545 MiB, 16.73% gc time, 99.97% compilation time)
0.008237 seconds (1.25 k allocations: 92.669 KiB, 96.97% compilation time)
0.213605 seconds (178.28 k allocations: 9.770 MiB, 99.97% compilation time)
0.008532 seconds (1.55 k allocations: 95.660 KiB, 99.39% compilation time)
0.118307 seconds (89.19 k allocations: 5.352 MiB, 98.12% compilation time)
0.030245 seconds (14.89 k allocations: 875.358 KiB, 98.23% compilation time)
1.360036 seconds (471.74 k allocations: 31.865 MiB, 38.27% compilation time)
0.229503 seconds (102.33 k allocations: 6.292 MiB, 99.02% compilation time)
0.046793 seconds (13.77 k allocations: 871.899 KiB, 96.27% compilation time)
4.235124 seconds (1.87 M allocations: 111.669 MiB, 4.51% gc time, 56.00% compilation time)
0.310668 seconds (44.69 k allocations: 2.777 MiB, 99.00% compilation time)
0.081146 seconds (48.14 k allocations: 2.848 MiB, 98.60% compilation time)
0.127852 seconds (50.57 k allocations: 3.033 MiB, 99.08% compilation time)
0.106870 seconds (45.84 k allocations: 2.833 MiB, 96.86% compilation time)
0.120399 seconds (47.75 k allocations: 2.951 MiB, 98.41% compilation time)
0.195333 seconds (88.33 k allocations: 5.106 MiB, 98.45% compilation time)
0.003457 seconds (22 allocations: 1.438 KiB, 96.21% compilation time)
0.012029 seconds (5.61 k allocations: 380.217 KiB, 98.63% compilation time)
0.008879 seconds (5.61 k allocations: 379.982 KiB, 98.27% compilation time)
0.006230 seconds (68 allocations: 3.969 KiB, 98.09% compilation time)
0.013429 seconds (633 allocations: 43.238 KiB, 98.24% compilation time)
0.008003 seconds (3.98 k allocations: 260.764 KiB, 96.26% compilation time)
0.014059 seconds (3.98 k allocations: 260.967 KiB, 98.75% compilation time)
0.005503 seconds (68 allocations: 3.969 KiB, 96.66% compilation time)
0.003550 seconds (631 allocations: 43.082 KiB, 95.90% compilation time)
0.010504 seconds (3.97 k allocations: 260.576 KiB, 98.64% compilation time)
0.009699 seconds (3.97 k allocations: 260.670 KiB, 98.41% compilation time)
0.007562 seconds (68 allocations: 3.969 KiB, 97.63% compilation time)
0.006444 seconds (631 allocations: 43.082 KiB, 95.65% compilation time)
0.012456 seconds (3.97 k allocations: 260.576 KiB, 97.95% compilation time)
0.012414 seconds (3.98 k allocations: 260.826 KiB, 97.88% compilation time)
0.007390 seconds (68 allocations: 3.969 KiB, 97.33% compilation time)
0.000000 seconds
0.000000 seconds
0.022629 seconds (1.02 k allocations: 90.451 KiB, 59.29% compilation time)
0.119689 seconds (2.44 k allocations: 181.779 KiB, 83.56% compilation time)
0.013801 seconds (766 allocations: 68.356 KiB, 53.60% compilation time)
0.166293 seconds (5.14 k allocations: 327.855 KiB, 99.97% compilation time)
0.009856 seconds (2.00 k allocations: 122.809 KiB, 99.55% compilation time)
0.007148 seconds (5.69 k allocations: 707.984 KiB)
0.090191 seconds (30.56 k allocations: 2.092 MiB, 97.92% compilation time)
0.045953 seconds (30.56 k allocations: 2.094 MiB, 96.79% compilation time)
0.085612 seconds (48.30 k allocations: 3.145 MiB, 98.06% compilation time)
0.919563 seconds (486.71 k allocations: 26.713 MiB, 99.62% compilation time)
0.082599 seconds (47.02 k allocations: 3.797 MiB, 96.66% compilation time)
0.077099 seconds (28.75 k allocations: 2.961 MiB, 95.07% compilation time)
0.058889 seconds (46.48 k allocations: 4.013 MiB, 94.75% compilation time)
1.065923 seconds (21.97 k allocations: 17.752 MiB, 4.26% compilation time)
0.000000 seconds
0.000000 seconds
0.176314 seconds (14.27 k allocations: 872.496 KiB, 99.34% compilation time)
0.328249 seconds (194.10 k allocations: 10.782 MiB, 99.93% compilation time)
0.006720 seconds (767 allocations: 68.435 KiB, 98.17% compilation time)
0.011926 seconds (2.01 k allocations: 114.624 KiB, 99.60% compilation time)
0.013716 seconds (2.00 k allocations: 120.121 KiB, 99.69% compilation time)
6.129926 seconds (6.68 M allocations: 256.915 MiB, 9.91% gc time, 99.97% compilation time)
0.051913 seconds (30.77 k allocations: 1.947 MiB, 74.60% compilation time)
0.047091 seconds (30.77 k allocations: 1.947 MiB, 96.24% compilation time)
0.087619 seconds (49.45 k allocations: 3.068 MiB, 98.27% compilation time)
0.854624 seconds (503.10 k allocations: 27.014 MiB, 7.87% gc time, 99.75% compilation time)
0.079990 seconds (47.54 k allocations: 3.371 MiB, 97.22% compilation time)
0.045353 seconds (28.75 k allocations: 2.377 MiB, 94.02% compilation time)
0.073572 seconds (47.42 k allocations: 3.497 MiB, 96.34% compilation time)
0.067404 seconds (21.96 k allocations: 9.503 MiB, 70.03% compilation time)
0.030351 seconds (6.30 k allocations: 641.426 KiB, 95.53% compilation time)
0.015963 seconds (9.64 k allocations: 858.170 KiB, 92.94% compilation time)
0.023810 seconds (9.64 k allocations: 860.092 KiB, 95.52% compilation time)
0.072522 seconds (5.73 k allocations: 602.453 KiB, 98.74% compilation time)
0.005284 seconds (5.80 k allocations: 1.190 MiB, 73.42% compilation time)
0.008722 seconds (9.14 k allocations: 1.664 MiB, 87.09% compilation time)
0.016223 seconds (9.14 k allocations: 1.402 MiB, 92.26% compilation time)
0.007473 seconds (5.23 k allocations: 1.413 MiB, 83.17% compilation time)
0.005214 seconds (6.51 k allocations: 545.316 KiB, 83.12% compilation time)
0.010559 seconds (9.85 k allocations: 763.311 KiB, 91.21% compilation time)
0.009525 seconds (9.85 k allocations: 762.342 KiB, 89.20% compilation time)
0.007493 seconds (5.94 k allocations: 505.844 KiB, 86.75% compilation time)
0.005406 seconds (5.80 k allocations: 852.488 KiB, 79.23% compilation time)
0.012473 seconds (9.14 k allocations: 1.183 MiB, 90.07% compilation time)
0.015602 seconds (9.14 k allocations: 1.045 MiB, 84.79% compilation time)
0.010274 seconds (5.23 k allocations: 954.203 KiB, 87.58% compilation time)
0.006185 seconds (665 allocations: 45.670 KiB, 98.60% compilation time)
0.207527 seconds (182.04 k allocations: 10.007 MiB, 27.48% gc time, 99.98% compilation time)
0.007462 seconds (1.21 k allocations: 73.465 KiB, 99.50% compilation time)
0.005990 seconds (660 allocations: 45.201 KiB, 99.32% compilation time)
0.166064 seconds (218.02 k allocations: 12.299 MiB, 99.98% compilation time)
0.007517 seconds (60 allocations: 6.172 KiB)
0.185502 seconds (100.90 k allocations: 5.864 MiB, 99.93% compilation time)
1.026395 seconds (556.82 k allocations: 27.035 MiB, 2.28% gc time, 99.98% compilation time)
0.034070 seconds (21.23 k allocations: 1.212 MiB, 99.50% compilation time)
0.075476 seconds (56.38 k allocations: 3.270 MiB, 99.79% compilation time)
0.078151 seconds (56.38 k allocations: 3.270 MiB, 99.82% compilation time)
0.000079 seconds (60 allocations: 6.172 KiB)
0.065976 seconds (29.19 k allocations: 1.678 MiB, 97.39% compilation time)
0.098826 seconds (67.88 k allocations: 4.036 MiB, 99.79% compilation time)
0.110797 seconds (64.02 k allocations: 3.811 MiB, 99.85% compilation time)
0.076081 seconds (67.76 k allocations: 3.997 MiB, 99.83% compilation time)
0.000037 seconds (64 allocations: 6.234 KiB)
0.000019 seconds (68 allocations: 6.297 KiB)
0.000029 seconds (64 allocations: 6.234 KiB)
0.084112 seconds (69.38 k allocations: 4.086 MiB, 99.78% compilation time)
0.044830 seconds (10.04 k allocations: 578.440 KiB, 77.49% compilation time)
0.091697 seconds (10.03 k allocations: 576.815 KiB, 99.92% compilation time)
0.039610 seconds (11.20 k allocations: 661.697 KiB, 99.74% compilation time)
0.212227 seconds (130.04 k allocations: 7.203 MiB, 20.15% gc time, 99.96% compilation time)
0.927105 seconds (616.38 k allocations: 33.747 MiB, 99.99% compilation time)
0.155678 seconds (182.04 k allocations: 10.007 MiB, 13.83% gc time, 99.97% compilation time)
0.009857 seconds (1.21 k allocations: 73.574 KiB, 99.12% compilation time)
0.006241 seconds (660 allocations: 45.186 KiB, 99.18% compilation time)
0.147276 seconds (211.62 k allocations: 11.834 MiB, 99.98% compilation time)
56.118833 seconds (38.50 M allocations: 1.448 GiB, 3.63% gc time, 100.00% compilation time)
0.113687 seconds (151.03 k allocations: 8.823 MiB, 99.87% compilation time)
0.878645 seconds (520.34 k allocations: 24.726 MiB, 99.98% compilation time)
0.024633 seconds (8.86 k allocations: 503.958 KiB, 99.47% compilation time)
0.052759 seconds (56.38 k allocations: 3.268 MiB, 99.76% compilation time)
0.058997 seconds (56.37 k allocations: 3.268 MiB, 99.77% compilation time)
0.000071 seconds (60 allocations: 5.375 KiB)
0.030263 seconds (30.72 k allocations: 1.777 MiB, 99.59% compilation time)
0.083976 seconds (67.92 k allocations: 4.038 MiB, 99.79% compilation time)
0.065861 seconds (64.02 k allocations: 3.810 MiB, 99.76% compilation time)
0.055021 seconds (67.76 k allocations: 3.996 MiB, 99.80% compilation time)
0.000029 seconds (64 allocations: 5.438 KiB)
0.000017 seconds (68 allocations: 5.500 KiB)
0.000020 seconds (64 allocations: 5.438 KiB)
0.089971 seconds (69.44 k allocations: 4.089 MiB, 99.81% compilation time)
0.024592 seconds (10.03 k allocations: 576.815 KiB, 99.79% compilation time)
0.020638 seconds (10.03 k allocations: 576.706 KiB, 99.77% compilation time)
0.024504 seconds (11.20 k allocations: 662.510 KiB, 99.73% compilation time)
0.208144 seconds (133.20 k allocations: 7.403 MiB, 38.01% gc time, 99.97% compilation time)
0.002772 seconds (773 allocations: 50.980 KiB, 98.01% compilation time)
0.007098 seconds (7.29 k allocations: 497.092 KiB, 99.25% compilation time)
0.007168 seconds (7.30 k allocations: 497.877 KiB, 99.22% compilation time)
0.004630 seconds (94 allocations: 5.984 KiB, 99.50% compilation time)
0.002450 seconds (764 allocations: 50.215 KiB, 97.71% compilation time)
0.006205 seconds (5.66 k allocations: 378.205 KiB, 99.33% compilation time)
0.007192 seconds (5.65 k allocations: 377.420 KiB, 99.32% compilation time)
0.006026 seconds (86 allocations: 5.547 KiB, 99.70% compilation time)
0.003042 seconds (769 allocations: 50.293 KiB, 98.38% compilation time)
0.008191 seconds (5.65 k allocations: 377.607 KiB, 99.33% compilation time)
0.006277 seconds (5.66 k allocations: 378.393 KiB, 99.25% compilation time)
0.005346 seconds (94 allocations: 5.875 KiB, 99.61% compilation time)
0.002757 seconds (761 allocations: 49.965 KiB, 98.44% compilation time)
0.005623 seconds (5.65 k allocations: 378.064 KiB, 99.39% compilation time)
0.005991 seconds (5.64 k allocations: 377.279 KiB, 99.23% compilation time)
0.004910 seconds (86 allocations: 5.547 KiB, 99.64% compilation time)
0.109821 seconds (123.56 k allocations: 7.043 MiB, 99.89% compilation time)
0.000066 seconds (52 allocations: 5.562 KiB)
0.129988 seconds (126.11 k allocations: 7.205 MiB, 99.88% compilation time)
0.000084 seconds (50 allocations: 6.359 KiB)
0.058430 seconds (38.86 k allocations: 2.150 MiB, 99.80% compilation time)
0.056786 seconds (41.38 k allocations: 2.256 MiB, 99.79% compilation time)
0.055303 seconds (55.20 k allocations: 3.081 MiB, 99.76% compilation time)
0.072664 seconds (73.59 k allocations: 4.143 MiB, 99.90% compilation time)
0.000015 seconds (29 allocations: 2.688 KiB)
0.075155 seconds (73.58 k allocations: 4.141 MiB, 99.92% compilation time)
0.000023 seconds (29 allocations: 3.312 KiB)
0.121095 seconds (126.61 k allocations: 7.209 MiB, 98.48% compilation time)
0.000059 seconds (52 allocations: 4.844 KiB)
0.138373 seconds (129.91 k allocations: 7.415 MiB, 99.14% compilation time)
0.000074 seconds (50 allocations: 5.062 KiB)
0.063200 seconds (38.87 k allocations: 2.149 MiB, 99.83% compilation time)
0.048785 seconds (41.39 k allocations: 2.254 MiB, 99.80% compilation time)
0.055774 seconds (55.20 k allocations: 3.080 MiB, 99.78% compilation time)
0.159912 seconds (204.63 k allocations: 11.825 MiB, 99.96% compilation time)
0.000015 seconds (29 allocations: 2.406 KiB)
0.211152 seconds (234.81 k allocations: 13.382 MiB, 99.97% compilation time)
0.000018 seconds (29 allocations: 2.688 KiB)
0.048792 seconds (41.18 k allocations: 2.230 MiB, 99.80% compilation time)
0.053766 seconds (37.95 k allocations: 2.128 MiB, 99.80% compilation time)
0.000038 seconds (63 allocations: 5.797 KiB)
0.047060 seconds (39.65 k allocations: 2.177 MiB, 99.78% compilation time)
0.055030 seconds (41.45 k allocations: 2.239 MiB, 99.81% compilation time)
0.065636 seconds (75.65 k allocations: 4.397 MiB, 99.82% compilation time)
0.007574 seconds (86 allocations: 8.266 KiB, 98.10% compilation time)
0.060938 seconds (40.07 k allocations: 2.198 MiB, 99.77% compilation time)
0.095131 seconds (80.40 k allocations: 4.655 MiB, 99.86% compilation time)
0.111335 seconds (82.65 k allocations: 4.556 MiB, 99.95% compilation time)
0.064330 seconds (41.17 k allocations: 2.227 MiB, 99.83% compilation time)
0.061821 seconds (37.96 k allocations: 2.129 MiB, 99.79% compilation time)
0.000037 seconds (63 allocations: 5.094 KiB)
0.068585 seconds (40.80 k allocations: 2.258 MiB, 99.82% compilation time)
0.056898 seconds (41.45 k allocations: 2.238 MiB, 99.81% compilation time)
0.084477 seconds (75.65 k allocations: 4.393 MiB, 99.83% compilation time)
0.005683 seconds (2.90 k allocations: 200.107 KiB, 98.03% compilation time)
0.051495 seconds (41.21 k allocations: 2.277 MiB, 99.77% compilation time)
0.130385 seconds (81.15 k allocations: 4.703 MiB, 43.17% gc time, 99.86% compilation time)
0.098768 seconds (84.85 k allocations: 4.687 MiB, 99.94% compilation time)
0.025489 seconds (1.05 k allocations: 64.761 KiB, 99.71% compilation time)
0.000029 seconds (17 allocations: 960 bytes)
0.021874 seconds (1.04 k allocations: 64.386 KiB, 99.60% compilation time)
0.000029 seconds (17 allocations: 960 bytes)
0.000018 seconds (17 allocations: 960 bytes)
0.000008 seconds (17 allocations: 960 bytes)
0.000009 seconds (17 allocations: 960 bytes)
0.000005 seconds (17 allocations: 960 bytes)
0.015852 seconds (9.99 k allocations: 593.906 KiB, 99.61% compilation time)
0.059284 seconds (42.62 k allocations: 2.323 MiB, 99.88% compilation time)
0.026081 seconds (10.46 k allocations: 612.473 KiB, 99.64% compilation time)
0.051772 seconds (47.76 k allocations: 2.605 MiB, 99.85% compilation time)
0.034638 seconds (1.05 k allocations: 64.526 KiB, 99.73% compilation time)
0.000031 seconds (17 allocations: 960 bytes)
0.023777 seconds (1.04 k allocations: 64.386 KiB, 99.65% compilation time)
0.000028 seconds (17 allocations: 960 bytes)
0.000022 seconds (17 allocations: 960 bytes)
0.000007 seconds (17 allocations: 960 bytes)
0.000007 seconds (17 allocations: 960 bytes)
0.000005 seconds (17 allocations: 960 bytes)
0.017269 seconds (9.99 k allocations: 593.344 KiB, 99.61% compilation time)
0.053943 seconds (41.28 k allocations: 2.236 MiB, 99.88% compilation time)
0.019264 seconds (10.46 k allocations: 612.410 KiB, 99.62% compilation time)
0.052544 seconds (47.76 k allocations: 2.605 MiB, 99.88% compilation time)
0.000350 seconds (18 allocations: 157.203 KiB)
0.000563 seconds (18 allocations: 312.609 KiB)
0.000190 seconds (14 allocations: 117.453 KiB)
0.000422 seconds (14 allocations: 233.328 KiB)
0.000432 seconds (24 allocations: 318.500 KiB)
0.000994 seconds (23 allocations: 635.438 KiB)
0.000337 seconds (20 allocations: 238.547 KiB)
0.000617 seconds (19 allocations: 475.578 KiB)
0.000334 seconds (16 allocations: 155.859 KiB)
0.000453 seconds (16 allocations: 309.984 KiB)
0.000238 seconds (19 allocations: 156.766 KiB)
0.000540 seconds (19 allocations: 311.781 KiB)
0.000420 seconds (19 allocations: 316.672 KiB)
0.000886 seconds (19 allocations: 631.844 KiB)
0.000407 seconds (20 allocations: 317.547 KiB)
0.000842 seconds (20 allocations: 633.609 KiB)
0.000579 seconds (30 allocations: 469.391 KiB)
0.000572 seconds (32 allocations: 470.359 KiB)
0.001295 seconds (30 allocations: 935.641 KiB)
0.001274 seconds (32 allocations: 937.391 KiB)
0.000546 seconds (36 allocations: 470.984 KiB)
0.000001 seconds
0.000000 seconds
3.408552 seconds (4.69 M allocations: 227.206 MiB, 1.84% gc time, 99.98% compilation time)
0.000453 seconds (334 allocations: 143.453 KiB)
0.000409 seconds (318 allocations: 140.516 KiB)
0.009545 seconds (4.43 k allocations: 400.360 KiB, 94.11% compilation time)
0.100813 seconds (89.38 k allocations: 5.516 MiB, 99.45% compilation time)
0.000423 seconds (319 allocations: 147.109 KiB)
1.548018 seconds (1.77 M allocations: 94.263 MiB, 5.48% gc time, 99.74% compilation time)
0.001858 seconds (519 allocations: 276.250 KiB)
0.007531 seconds (530 allocations: 280.516 KiB)
0.196023 seconds (89.11 k allocations: 5.640 MiB, 99.04% compilation time)
0.003204 seconds (563 allocations: 303.688 KiB)
0.014748 seconds (4.73 k allocations: 564.442 KiB, 87.10% compilation time)
0.135734 seconds (41.58 k allocations: 2.613 MiB, 98.83% compilation time)
0.166375 seconds (43.19 k allocations: 2.774 MiB, 99.12% compilation time)
0.126385 seconds (41.57 k allocations: 2.626 MiB, 98.43% compilation time)
0.171812 seconds (43.19 k allocations: 2.788 MiB, 98.71% compilation time)
4.469131 seconds (5.19 M allocations: 255.184 MiB, 2.48% gc time, 99.98% compilation time)
0.000667 seconds (310 allocations: 83.281 KiB)
0.000642 seconds (294 allocations: 81.188 KiB)
0.011656 seconds (4.40 k allocations: 340.954 KiB, 93.90% compilation time)
0.186307 seconds (150.52 k allocations: 9.295 MiB, 99.56% compilation time)
0.000707 seconds (295 allocations: 84.391 KiB)
2.725799 seconds (2.35 M allocations: 124.859 MiB, 4.91% gc time, 99.94% compilation time)
0.010589 seconds (519 allocations: 158.406 KiB)
0.001815 seconds (533 allocations: 161.656 KiB)
0.320582 seconds (150.28 k allocations: 9.352 MiB, 99.42% compilation time)
0.017564 seconds (563 allocations: 173.453 KiB)
0.103806 seconds (4.74 k allocations: 437.146 KiB, 95.00% compilation time)
0.141321 seconds (41.58 k allocations: 2.496 MiB, 96.47% compilation time)
0.195951 seconds (43.19 k allocations: 2.648 MiB, 87.52% compilation time)
0.091496 seconds (41.57 k allocations: 2.502 MiB, 81.17% compilation time)
0.167056 seconds (43.18 k allocations: 2.655 MiB, 98.02% compilation time)
0.000000 seconds
0.000001 seconds
69.990345 seconds (30.89 M allocations: 1.138 GiB, 1.65% gc time, 99.99% compilation time)
0.001590 seconds (4.84 k allocations: 509.266 KiB)
0.001950 seconds (4.82 k allocations: 506.266 KiB)
0.099298 seconds (56.65 k allocations: 3.550 MiB, 97.74% compilation time)
0.435537 seconds (4.86 k allocations: 529.156 KiB, 98.72% gc time)
3.846166 seconds (3.01 M allocations: 140.447 MiB, 99.88% compilation time)
0.004980 seconds (3.17 k allocations: 819.969 KiB)
0.006849 seconds (3.19 k allocations: 825.188 KiB)
0.136904 seconds (55.03 k allocations: 3.874 MiB, 98.03% compilation time)
0.012899 seconds (3.25 k allocations: 870.594 KiB)
0.200778 seconds (53.93 k allocations: 3.750 MiB, 97.97% compilation time)
0.142258 seconds (57.75 k allocations: 4.043 MiB, 96.93% compilation time)
0.228432 seconds (53.23 k allocations: 3.694 MiB, 98.58% compilation time)
0.171270 seconds (56.63 k allocations: 3.966 MiB, 97.56% compilation time)
0.144983 seconds (84.61 k allocations: 4.935 MiB, 98.53% compilation time)
0.002093 seconds (4.84 k allocations: 509.594 KiB)
0.001969 seconds (4.82 k allocations: 513.828 KiB)
0.139130 seconds (85.29 k allocations: 5.033 MiB, 98.32% compilation time)
0.002019 seconds (4.87 k allocations: 537.297 KiB)
0.125659 seconds (82.27 k allocations: 5.210 MiB, 97.79% compilation time)
0.003802 seconds (3.17 k allocations: 821.297 KiB)
0.007037 seconds (3.18 k allocations: 839.828 KiB)
0.218758 seconds (83.08 k allocations: 5.333 MiB, 97.18% compilation time)
0.002862 seconds (3.25 k allocations: 886.969 KiB)
0.296742 seconds (83.96 k allocations: 5.336 MiB, 99.13% compilation time)
0.294997 seconds (86.87 k allocations: 5.560 MiB, 98.71% compilation time)
0.268141 seconds (157.24 k allocations: 9.569 MiB, 98.86% compilation time)
0.218028 seconds (83.07 k allocations: 5.333 MiB, 98.35% compilation time)
9.495725 seconds (9.08 M allocations: 382.073 MiB, 3.17% gc time, 99.94% compilation time)
0.000232 seconds (287 allocations: 70.609 KiB)
0.018805 seconds (8.93 k allocations: 590.601 KiB, 97.92% compilation time)
0.065230 seconds (39.23 k allocations: 2.382 MiB, 99.54% compilation time)
0.000247 seconds (289 allocations: 70.641 KiB)
1.222899 seconds (601.15 k allocations: 29.468 MiB, 3.27% gc time, 99.95% compilation time)
0.203766 seconds (39.60 k allocations: 2.469 MiB, 99.72% compilation time)
0.021564 seconds (9.36 k allocations: 682.843 KiB, 97.14% compilation time)
0.051948 seconds (343 allocations: 51.906 KiB, 99.50% compilation time)
0.038863 seconds (12.22 k allocations: 769.235 KiB, 99.23% compilation time)
0.000214 seconds (282 allocations: 48.250 KiB)
0.007905 seconds (590 allocations: 115.484 KiB, 92.67% compilation time)
0.000510 seconds (500 allocations: 102.578 KiB)
0.027853 seconds (11.94 k allocations: 801.187 KiB, 97.95% compilation time)
66.530151 seconds (30.41 M allocations: 1.128 GiB, 2.53% gc time, 100.00% compilation time)
0.001087 seconds (4.78 k allocations: 431.594 KiB)
0.111013 seconds (51.71 k allocations: 3.231 MiB, 98.85% compilation time)
0.001143 seconds (4.82 k allocations: 447.969 KiB)
0.755238 seconds (577.17 k allocations: 29.074 MiB, 99.84% compilation time)
0.159916 seconds (49.97 k allocations: 3.481 MiB, 99.30% compilation time)
0.007520 seconds (4.87 k allocations: 421.875 KiB, 85.73% compilation time)
0.001148 seconds (4.81 k allocations: 418.359 KiB)
0.001011 seconds (4.78 k allocations: 409.219 KiB)
0.008705 seconds (3.21 k allocations: 642.203 KiB, 85.37% compilation time)
0.197210 seconds (3.14 k allocations: 638.688 KiB, 99.37% gc time)
0.000825 seconds (3.20 k allocations: 657.188 KiB)
9.771574 seconds (9.17 M allocations: 386.284 MiB, 2.41% gc time, 100.00% compilation time)
0.000183 seconds (275 allocations: 45.297 KiB)
0.012141 seconds (8.90 k allocations: 563.772 KiB, 97.47% compilation time)
0.089986 seconds (39.21 k allocations: 2.357 MiB, 99.66% compilation time)
0.000224 seconds (277 allocations: 45.406 KiB)
1.163502 seconds (666.22 k allocations: 32.633 MiB, 99.95% compilation time)
0.152347 seconds (39.60 k allocations: 2.414 MiB, 99.63% compilation time)
0.100255 seconds (9.36 k allocations: 626.108 KiB, 99.38% compilation time)
0.066690 seconds (330 allocations: 37.344 KiB, 99.59% compilation time)
0.046581 seconds (12.21 k allocations: 754.690 KiB, 99.35% compilation time)
0.000198 seconds (270 allocations: 33.812 KiB)
0.005625 seconds (589 allocations: 79.766 KiB, 93.40% compilation time)
0.000501 seconds (500 allocations: 70.516 KiB)
0.050393 seconds (11.94 k allocations: 765.955 KiB, 98.78% compilation time)
133.897327 seconds (59.62 M allocations: 2.185 GiB, 1.86% gc time, 100.00% compilation time)
0.000978 seconds (4.85 k allocations: 356.688 KiB)
0.078728 seconds (51.77 k allocations: 3.151 MiB, 98.53% compilation time)
0.001012 seconds (4.88 k allocations: 366.047 KiB)
5.315366 seconds (3.78 M allocations: 176.823 MiB, 4.49% gc time, 99.39% compilation time)
0.175725 seconds (49.97 k allocations: 3.266 MiB, 99.41% compilation time)
0.007818 seconds (4.94 k allocations: 354.328 KiB, 87.33% compilation time)
0.039590 seconds (4.87 k allocations: 350.812 KiB)
0.000660 seconds (4.84 k allocations: 345.188 KiB)
0.027295 seconds (3.21 k allocations: 457.281 KiB, 96.13% compilation time)
0.001074 seconds (3.14 k allocations: 453.766 KiB)
0.000959 seconds (3.20 k allocations: 465.359 KiB)
0.000006 seconds
0.000001 seconds
0.341904 seconds (212.80 k allocations: 13.280 MiB, 98.08% compilation time)
0.001174 seconds (4.43 k allocations: 553.000 KiB)
0.000979 seconds (3.67 k allocations: 424.938 KiB)
0.027490 seconds (7.80 k allocations: 685.892 KiB, 95.49% compilation time)
0.109254 seconds (45.76 k allocations: 2.863 MiB, 98.77% compilation time)
0.005686 seconds (3.73 k allocations: 436.594 KiB)
0.073939 seconds (42.60 k allocations: 2.861 MiB, 93.33% compilation time)
0.002349 seconds (1.85 k allocations: 546.094 KiB)
0.001675 seconds (1.87 k allocations: 549.859 KiB)
0.185675 seconds (43.38 k allocations: 2.976 MiB, 98.94% compilation time)
0.001839 seconds (1.93 k allocations: 581.922 KiB)
0.197529 seconds (44.93 k allocations: 3.066 MiB, 98.49% compilation time)
0.167553 seconds (43.28 k allocations: 2.908 MiB, 97.98% compilation time)
0.171906 seconds (44.93 k allocations: 3.080 MiB, 95.60% compilation time)
0.634160 seconds (366.99 k allocations: 21.836 MiB, 22.05% gc time, 99.11% compilation time)
0.001289 seconds (4.47 k allocations: 430.328 KiB)
0.000974 seconds (3.59 k allocations: 294.656 KiB)
0.012187 seconds (7.71 k allocations: 555.251 KiB, 90.83% compilation time)
0.087259 seconds (45.67 k allocations: 2.733 MiB, 98.59% compilation time)
0.001023 seconds (3.64 k allocations: 303.422 KiB)
0.051978 seconds (42.60 k allocations: 2.672 MiB, 96.30% compilation time)
0.001945 seconds (1.85 k allocations: 350.781 KiB)
0.002081 seconds (1.86 k allocations: 352.797 KiB)
0.162914 seconds (43.38 k allocations: 2.769 MiB, 95.92% compilation time)
0.001881 seconds (1.93 k allocations: 372.531 KiB)
0.162025 seconds (44.95 k allocations: 2.862 MiB, 56.55% compilation time)
0.169313 seconds (43.28 k allocations: 2.707 MiB, 98.82% compilation time)
0.140361 seconds (44.93 k allocations: 2.869 MiB, 97.56% compilation time)
0.000001 seconds
0.000000 seconds
0.374702 seconds (218.96 k allocations: 13.085 MiB, 99.15% compilation time)
0.002194 seconds (5.11 k allocations: 559.297 KiB)
0.072439 seconds (53.65 k allocations: 3.322 MiB, 96.94% compilation time)
0.002194 seconds (5.65 k allocations: 601.219 KiB)
0.001977 seconds (5.00 k allocations: 535.125 KiB)
0.244253 seconds (184.20 k allocations: 11.352 MiB, 97.12% compilation time)
0.003812 seconds (3.23 k allocations: 837.969 KiB)
0.004155 seconds (3.25 k allocations: 843.422 KiB)
0.196363 seconds (54.37 k allocations: 3.833 MiB, 97.78% compilation time)
0.004131 seconds (3.31 k allocations: 888.953 KiB)
0.189944 seconds (53.28 k allocations: 3.708 MiB, 97.14% compilation time)
0.164445 seconds (57.11 k allocations: 4.001 MiB, 94.08% compilation time)
0.247569 seconds (79.34 k allocations: 5.031 MiB, 98.10% compilation time)
0.211101 seconds (55.98 k allocations: 3.927 MiB, 98.17% compilation time)
0.466287 seconds (262.42 k allocations: 15.536 MiB, 99.02% compilation time)
0.002286 seconds (5.11 k allocations: 434.344 KiB)
0.110748 seconds (53.67 k allocations: 3.208 MiB, 98.23% compilation time)
0.001943 seconds (5.67 k allocations: 492.734 KiB)
0.001742 seconds (5.02 k allocations: 419.859 KiB)
0.282182 seconds (233.35 k allocations: 13.749 MiB, 98.58% compilation time)
0.004130 seconds (3.23 k allocations: 557.391 KiB)
0.003366 seconds (3.25 k allocations: 560.641 KiB)
0.169939 seconds (54.38 k allocations: 3.538 MiB, 96.06% compilation time)
0.008421 seconds (3.31 k allocations: 585.875 KiB)
0.129705 seconds (53.28 k allocations: 3.420 MiB, 98.18% compilation time)
0.180966 seconds (57.11 k allocations: 3.695 MiB, 96.54% compilation time)
0.272945 seconds (79.35 k allocations: 4.758 MiB, 95.91% compilation time)
0.147966 seconds (55.98 k allocations: 3.631 MiB, 97.84% compilation time)
0.048576 seconds (8.13 k allocations: 662.274 KiB, 97.10% compilation time)
0.001156 seconds (4.41 k allocations: 487.516 KiB)
0.000809 seconds (3.63 k allocations: 354.938 KiB)
0.009939 seconds (6.72 k allocations: 555.337 KiB, 91.33% compilation time)
0.000804 seconds (3.70 k allocations: 360.375 KiB)
0.095916 seconds (4.88 k allocations: 621.212 KiB, 99.15% compilation time)
0.000688 seconds (1.84 k allocations: 418.766 KiB)
0.013938 seconds (4.91 k allocations: 629.728 KiB, 95.92% compilation time)
0.006890 seconds (3.69 k allocations: 336.234 KiB, 87.73% compilation time)
0.000778 seconds (3.69 k allocations: 337.984 KiB)
0.055619 seconds (1.90 k allocations: 376.047 KiB, 94.69% compilation time)
0.000763 seconds (1.89 k allocations: 390.891 KiB)
0.060873 seconds (8.03 k allocations: 659.324 KiB, 59.64% compilation time)
0.001135 seconds (4.96 k allocations: 461.359 KiB)
0.017459 seconds (8.13 k allocations: 675.824 KiB, 92.09% compilation time)
0.002565 seconds (5.07 k allocations: 478.547 KiB)
0.012541 seconds (6.30 k allocations: 908.480 KiB, 89.77% compilation time)
0.014175 seconds (6.33 k allocations: 931.199 KiB, 90.88% compilation time)
0.060901 seconds (5.02 k allocations: 442.500 KiB, 97.11% compilation time)
0.001119 seconds (5.06 k allocations: 448.938 KiB)
0.008869 seconds (3.26 k allocations: 660.906 KiB, 72.15% compilation time)
0.002293 seconds (3.26 k allocations: 675.688 KiB)
0.078894 seconds (6.57 k allocations: 453.540 KiB, 16.64% compilation time)
0.001143 seconds (4.55 k allocations: 415.906 KiB)
0.000769 seconds (3.56 k allocations: 258.188 KiB)
0.009737 seconds (6.61 k allocations: 457.024 KiB, 90.58% compilation time)
0.000770 seconds (3.60 k allocations: 262.141 KiB)
0.021245 seconds (4.88 k allocations: 486.212 KiB, 96.53% compilation time)
0.000672 seconds (1.84 k allocations: 286.484 KiB)
0.015779 seconds (4.91 k allocations: 491.774 KiB, 95.31% compilation time)
0.010013 seconds (3.61 k allocations: 250.156 KiB, 91.65% compilation time)
0.000643 seconds (3.59 k allocations: 250.625 KiB)
0.008413 seconds (1.89 k allocations: 266.312 KiB, 93.41% compilation time)
0.000722 seconds (1.89 k allocations: 274.453 KiB)
0.018840 seconds (8.17 k allocations: 572.621 KiB, 93.32% compilation time)
0.001197 seconds (5.11 k allocations: 375.234 KiB)
0.011185 seconds (8.24 k allocations: 582.934 KiB, 87.59% compilation time)
0.001196 seconds (5.18 k allocations: 385.594 KiB)
0.013741 seconds (6.30 k allocations: 691.184 KiB, 90.82% compilation time)
0.063988 seconds (6.33 k allocations: 703.949 KiB, 97.52% compilation time)
0.008462 seconds (5.16 k allocations: 367.250 KiB, 84.65% compilation time)
0.001053 seconds (5.17 k allocations: 370.359 KiB)
0.007702 seconds (3.26 k allocations: 468.875 KiB, 84.11% compilation time)
0.001142 seconds (3.26 k allocations: 476.953 KiB)
0.000296 seconds (56 allocations: 26.984 KiB)
0.078259 seconds (41.98 k allocations: 2.409 MiB, 99.20% compilation time)
0.010467 seconds (443 allocations: 40.703 KiB, 97.27% compilation time)
0.028009 seconds (8.77 k allocations: 509.541 KiB, 98.91% compilation time)
0.090593 seconds (37.17 k allocations: 2.098 MiB, 93.78% compilation time)
0.046020 seconds (10.11 k allocations: 616.494 KiB, 99.02% compilation time)
0.000312 seconds (371 allocations: 36.125 KiB)
0.000048 seconds (9 allocations: 3.812 KiB)
0.010278 seconds (802 allocations: 65.160 KiB, 98.50% compilation time)
0.000043 seconds (9 allocations: 3.812 KiB)
0.000090 seconds (350 allocations: 23.750 KiB)
0.000053 seconds (350 allocations: 23.750 KiB)
0.044744 seconds (9.50 k allocations: 579.832 KiB, 98.67% compilation time)
0.010847 seconds (95 allocations: 33.188 KiB, 97.86% compilation time)
0.029700 seconds (10.11 k allocations: 612.963 KiB, 98.01% compilation time)
0.000264 seconds (23 allocations: 28.609 KiB)
0.000049 seconds (9 allocations: 7.375 KiB)
0.000014 seconds (5 allocations: 5.250 KiB)
0.000217 seconds (55 allocations: 26.969 KiB)
0.000018 seconds (9 allocations: 3.812 KiB)
0.000554 seconds (1.01 k allocations: 84.875 KiB)
0.101798 seconds (43.81 k allocations: 2.614 MiB, 99.27% compilation time)
0.000344 seconds (404 allocations: 43.094 KiB)
0.000291 seconds (31 allocations: 39.812 KiB)
0.040440 seconds (11.09 k allocations: 637.623 KiB, 94.53% compilation time)
0.090299 seconds (44.83 k allocations: 2.672 MiB, 98.93% compilation time)
0.058187 seconds (13.08 k allocations: 909.451 KiB, 98.33% compilation time)
0.000324 seconds (407 allocations: 44.000 KiB)
0.000328 seconds (34 allocations: 40.719 KiB)
0.000212 seconds (977 allocations: 63.359 KiB)
0.031118 seconds (31.34 k allocations: 1.903 MiB, 98.99% compilation time)
0.000113 seconds (379 allocations: 26.703 KiB)
0.000087 seconds (379 allocations: 26.703 KiB)
0.000084 seconds (379 allocations: 26.703 KiB)
0.031545 seconds (12.06 k allocations: 845.197 KiB, 96.73% compilation time)
0.000342 seconds (30 allocations: 36.812 KiB)
0.033416 seconds (13.08 k allocations: 927.701 KiB, 97.54% compilation time)
0.000324 seconds (33 allocations: 38.609 KiB)
0.000295 seconds (1.63 k allocations: 228.281 KiB)
0.000017 seconds (6 allocations: 5.484 KiB)
0.000471 seconds (1.02 k allocations: 85.688 KiB)
0.002081 seconds (985 allocations: 64.172 KiB)
0.000237 seconds (1.05 k allocations: 107.266 KiB)
0.074825 seconds (25.03 k allocations: 1.494 MiB, 99.42% compilation time)
0.000205 seconds (284 allocations: 29.359 KiB)
0.000237 seconds (1.04 k allocations: 106.031 KiB)
0.000102 seconds (285 allocations: 29.375 KiB)
0.000133 seconds (23 allocations: 29.844 KiB)
0.000227 seconds (1.01 k allocations: 92.875 KiB)
0.000192 seconds (1.01 k allocations: 91.656 KiB)
0.000085 seconds (264 allocations: 17.000 KiB)
0.000274 seconds (285 allocations: 29.375 KiB)
0.000070 seconds (264 allocations: 17.000 KiB)
0.000523 seconds (844 allocations: 144.562 KiB)
0.000202 seconds (22 allocations: 28.594 KiB)
0.000477 seconds (843 allocations: 157.203 KiB)
0.000174 seconds (23 allocations: 28.609 KiB)
0.000153 seconds (819 allocations: 118.609 KiB)
0.000015 seconds (5 allocations: 5.250 KiB)
0.000307 seconds (1.04 k allocations: 106.031 KiB)
0.000148 seconds (1.01 k allocations: 91.656 KiB)
0.000646 seconds (1.02 k allocations: 86.625 KiB)
0.000381 seconds (290 allocations: 33.625 KiB)
0.000637 seconds (1.02 k allocations: 87.438 KiB)
0.000360 seconds (293 allocations: 34.531 KiB)
0.000215 seconds (978 allocations: 64.234 KiB)
0.000221 seconds (986 allocations: 65.047 KiB)
0.000189 seconds (290 allocations: 33.625 KiB)
0.000200 seconds (31 allocations: 39.812 KiB)
0.000493 seconds (293 allocations: 34.531 KiB)
0.000278 seconds (293 allocations: 34.531 KiB)
0.000182 seconds (34 allocations: 40.719 KiB)
0.000678 seconds (1.67 k allocations: 271.906 KiB)
0.000207 seconds (30 allocations: 36.812 KiB)
0.000691 seconds (1.67 k allocations: 297.219 KiB)
0.000232 seconds (33 allocations: 38.609 KiB)
0.000284 seconds (1.63 k allocations: 230.047 KiB)
0.000016 seconds (6 allocations: 5.484 KiB)
0.000482 seconds (1.02 k allocations: 87.438 KiB)
0.000204 seconds (986 allocations: 65.047 KiB)
0.000250 seconds (48 allocations: 18.938 KiB)
0.000012 seconds (8 allocations: 1.766 KiB)
0.000009 seconds (14 allocations: 2.156 KiB)
6.192777 seconds (6.75 M allocations: 259.731 MiB, 3.39% gc time, 99.99% compilation time)
5.951811 seconds (6.64 M allocations: 254.163 MiB, 4.32% gc time, 100.00% compilation time)
5.986699 seconds (6.68 M allocations: 255.578 MiB, 4.92% gc time, 100.00% compilation time)
0.000044 seconds (14 allocations: 2.156 KiB)
0.055351 seconds (30.90 k allocations: 1.813 MiB, 99.87% compilation time)
0.061428 seconds (31.47 k allocations: 1.840 MiB, 99.89% compilation time)
0.045030 seconds (42.48 k allocations: 2.528 MiB, 99.84% compilation time)
0.000044 seconds (14 allocations: 2.156 KiB)
0.108977 seconds (30.90 k allocations: 1.813 MiB, 99.94% compilation time)
0.053149 seconds (31.47 k allocations: 1.846 MiB, 99.86% compilation time)
0.056643 seconds (42.48 k allocations: 2.527 MiB, 99.88% compilation time)
0.024913 seconds (5.63 k allocations: 341.923 KiB, 97.87% compilation time)
0.000041 seconds (8 allocations: 2.938 KiB)
0.020586 seconds (5.32 k allocations: 304.601 KiB, 98.72% compilation time)
0.023493 seconds (6.65 k allocations: 400.022 KiB, 98.10% compilation time)
0.000147 seconds (583 allocations: 63.141 KiB)
0.000071 seconds (560 allocations: 53.719 KiB)
0.000072 seconds (566 allocations: 54.109 KiB)
0.000094 seconds (571 allocations: 54.234 KiB)
0.000084 seconds (570 allocations: 53.656 KiB)
0.000079 seconds (566 allocations: 53.547 KiB)
0.000074 seconds (566 allocations: 53.547 KiB)
0.000074 seconds (571 allocations: 53.672 KiB)
0.000079 seconds (570 allocations: 54.219 KiB)
0.000076 seconds (566 allocations: 54.109 KiB)
0.000082 seconds (566 allocations: 53.547 KiB)
0.000075 seconds (571 allocations: 53.672 KiB)
0.000071 seconds (570 allocations: 54.219 KiB)
0.000078 seconds (566 allocations: 54.109 KiB)
0.000250 seconds (401 allocations: 67.500 KiB)
0.000054 seconds (383 allocations: 51.359 KiB)
0.000067 seconds (384 allocations: 57.469 KiB)
0.000144 seconds (585 allocations: 62.609 KiB)
0.000077 seconds (560 allocations: 53.156 KiB)
0.000096 seconds (560 allocations: 53.156 KiB)
0.000175 seconds (403 allocations: 73.156 KiB)
0.000061 seconds (383 allocations: 56.984 KiB)
0.000312 seconds (532 allocations: 48.859 KiB)
0.000082 seconds (498 allocations: 33.844 KiB)
0.000070 seconds (498 allocations: 33.844 KiB)
0.000070 seconds (505 allocations: 34.375 KiB)
63.305427 seconds (39.76 M allocations: 1.493 GiB, 4.20% gc time, 100.00% compilation time)
59.086117 seconds (37.69 M allocations: 1.404 GiB, 3.91% gc time, 100.00% compilation time)
51.904062 seconds (35.05 M allocations: 1.290 GiB, 5.67% gc time, 99.85% compilation time)
0.000208 seconds (505 allocations: 34.375 KiB)
0.000184 seconds (505 allocations: 34.375 KiB)
0.064809 seconds (32.01 k allocations: 1.930 MiB, 99.68% compilation time)
0.024875 seconds (31.73 k allocations: 1.916 MiB, 98.94% compilation time)
0.073023 seconds (48.54 k allocations: 2.981 MiB, 83.08% compilation time)
0.000177 seconds (505 allocations: 34.375 KiB)
0.035998 seconds (32.02 k allocations: 1.930 MiB, 99.37% compilation time)
0.021320 seconds (31.73 k allocations: 1.916 MiB, 99.15% compilation time)
0.022865 seconds (48.54 k allocations: 2.980 MiB, 99.12% compilation time)
0.115356 seconds (5.63 k allocations: 399.187 KiB, 99.47% compilation time)
0.000172 seconds (760 allocations: 99.984 KiB)
0.000189 seconds (761 allocations: 111.719 KiB)
0.027692 seconds (5.00 k allocations: 295.659 KiB, 98.23% compilation time)
0.000122 seconds (498 allocations: 33.844 KiB)
0.000127 seconds (498 allocations: 33.844 KiB)
0.000115 seconds (498 allocations: 33.844 KiB)
0.021176 seconds (6.61 k allocations: 466.659 KiB, 97.37% compilation time)
0.000149 seconds (760 allocations: 111.234 KiB)