-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-444aa87348.log
1423 lines (1385 loc) · 74.6 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 LeftChildRightSiblingTrees ─ v0.1.2
Installed ProgressLogging ──────────── v0.1.3
Installed Parsers ──────────────────── v1.0.11
Installed PkgBenchmark ─────────────── v0.2.10
Installed BenchmarkTools ───────────── v0.5.0
Installed TerminalLoggers ──────────── v0.1.2
Installed AbstractTrees ────────────── v0.3.3
Installed JSON ─────────────────────── v0.21.1
Updating `~/.julia/environments/v1.6/Project.toml`
[32113eaa] + PkgBenchmark v0.2.10
Updating `~/.julia/environments/v1.6/Manifest.toml`
[1520ce14] + AbstractTrees v0.3.3
[6e4b80f9] + BenchmarkTools v0.5.0
[682c06a0] + JSON v0.21.1
[1d6d02ad] + LeftChildRightSiblingTrees v0.1.2
[69de0a69] + Parsers v1.0.11
[32113eaa] + PkgBenchmark v0.2.10
[33c8b6b6] + ProgressLogging v0.1.3
[5d786b92] + TerminalLoggers v0.1.2
[0dad84c5] + ArgTools
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[f43a241f] + Downloads
[b77e0a4c] + InteractiveUtils
[b27032c2] + LibCURL
[deac9b47] + LibCURL_jll
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[14a3606d] + MozillaCACerts_jll
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[fa267f1f] + TOML
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building PkgBenchmark → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/6e2856f677f8dcab289ded9c3ffb018fad38f29c/build.log`
Precompiling project... (tip: to disable auto-precompilation set ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0)
[90m[32m ✓ [39mProgressLogging[39m
[90m[32m ✓ [39mAbstractTrees[39m
[90m[32m ✓ [39mLeftChildRightSiblingTrees[39m
[90m[32m ✓ [39mTerminalLoggers[39m
[90m[32m ✓ [39mParsers[39m
[90m[32m ✓ [39mJSON[39m
[90m[32m ✓ [39mBenchmarkTools[39m
[32m ✓ [39mPkgBenchmark
8 dependencies successfully precompiled
Testing PkgBenchmark
Status `/tmp/jl_fgmBI0/Project.toml`
[6e4b80f9] BenchmarkTools v0.5.0
[e30172f5] Documenter v0.25.2
[682c06a0] JSON v0.21.1
[32113eaa] PkgBenchmark v0.2.10
[5d786b92] TerminalLoggers v0.1.2
[ade2ca70] Dates
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[56ddb016] Logging
[44cfe95a] Pkg
[de0858da] Printf
[9a3f8284] Random
[10745b16] Statistics
[8dfed614] Test
[cf7118a7] UUIDs
Status `/tmp/jl_fgmBI0/Manifest.toml`
[1520ce14] AbstractTrees v0.3.3
[6e4b80f9] BenchmarkTools v0.5.0
[ffbed154] DocStringExtensions v0.8.3
[e30172f5] Documenter v0.25.2
[682c06a0] JSON v0.21.1
[1d6d02ad] LeftChildRightSiblingTrees v0.1.2
[69de0a69] Parsers v1.0.11
[32113eaa] PkgBenchmark v0.2.10
[33c8b6b6] ProgressLogging v0.1.3
[5d786b92] TerminalLoggers v0.1.2
[0dad84c5] ArgTools
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[f43a241f] Downloads
[b77e0a4c] InteractiveUtils
[b27032c2] LibCURL
[deac9b47] LibCURL_jll
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[14a3606d] MozillaCACerts_jll
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
PkgBenchmark: Running benchmarks...
PkgBenchmark: creating benchmark tuning file /home/pkgeval/.julia/packages/PkgBenchmark/zKgzD/benchmark/tune.json...
Tuning 0%| | ETA: N/A
Tuning 0%| | ETA: N/A
(1/2) tuning "utf8"...
Tuning 0%| | ETA: N/A
(1/3) tuning "join"...
done (took 7.002622509 seconds)
Tuning 7%|███▏ | ETA: 0:02:18
(2/3) tuning "plots"...
done (took 0.318279926 seconds)
Tuning 7%|███▏ | ETA: 0:02:22
(3/3) tuning "replace"...
done (took 5.48431956 seconds)
done (took 13.746598997 seconds)
Tuning 14%|██████▎ | ETA: 0:01:38
(2/2) tuning "trigonometry"...
Tuning 14%|██████▎ | ETA: 0:01:42
(1/2) tuning "circular"...
Tuning 14%|██████▎ | ETA: 0:01:44
(1/6) tuning ("cos", 0.0)...
done (took 0.531673653 seconds)
Tuning 21%|█████████▍ | ETA: 0:01:06
(2/6) tuning ("cos", π)...
done (took 0.534013944 seconds)
Tuning 29%|████████████▋ | ETA: 0:00:46
(3/6) tuning ("tan", π)...
done (took 0.867302287 seconds)
Tuning 36%|███████████████▊ | ETA: 0:00:35
(4/6) tuning ("sin", π)...
done (took 0.480975542 seconds)
Tuning 43%|██████████████████▉ | ETA: 0:00:26
(5/6) tuning ("sin", 0.0)...
done (took 0.663587583 seconds)
Tuning 50%|██████████████████████ | ETA: 0:00:21
(6/6) tuning ("tan", 0.0)...
done (took 1.446774577 seconds)
done (took 4.947300515 seconds)
Tuning 57%|█████████████████████████▏ | ETA: 0:00:16
(2/2) tuning "hyperbolic"...
Tuning 57%|█████████████████████████▏ | ETA: 0:00:17
(1/6) tuning ("cos", 0.0)...
done (took 0.488377381 seconds)
Tuning 64%|████████████████████████████▎ | ETA: 0:00:13
(2/6) tuning ("cos", π)...
done (took 0.423872978 seconds)
Tuning 71%|███████████████████████████████▍ | ETA: 0:00:09
(3/6) tuning ("tan", π)...
done (took 0.559352445 seconds)
Tuning 79%|██████████████████████████████████▋ | ETA: 0:00:07
(4/6) tuning ("sin", π)...
done (took 0.714785439 seconds)
Tuning 86%|█████████████████████████████████████▊ | ETA: 0:00:04
(5/6) tuning ("sin", 0.0)...
done (took 0.601236044 seconds)
Tuning 93%|████████████████████████████████████████▉ | ETA: 0:00:02
(6/6) tuning ("tan", 0.0)...
done (took 0.858235159 seconds)
done (took 4.421206766 seconds)
done (took 9.979455855 seconds)
Tuning 100%|████████████████████████████████████████████| Time: 0:00:26
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 5.639969098 seconds)
Benchmarking 7%|██▊ | ETA: 0:01:23
(2/3) benchmarking "plots"...
done (took 0.416277081 seconds)
Benchmarking 7%|██▊ | ETA: 0:01:28
(3/3) benchmarking "replace"...
done (took 2.183805677 seconds)
done (took 8.677748836 seconds)
Benchmarking 14%|█████▍ | ETA: 0:00:54
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:00:56
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:02
(1/6) benchmarking ("cos", 0.0)...
done (took 0.690110491 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:40
(2/6) benchmarking ("cos", π)...
done (took 0.532958788 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:29
(3/6) benchmarking ("tan", π)...
done (took 0.788577179 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:22
(4/6) benchmarking ("sin", π)...
done (took 0.522386517 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:17
(5/6) benchmarking ("sin", 0.0)...
done (took 0.413268738 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:13
(6/6) benchmarking ("tan", 0.0)...
done (took 0.427014581 seconds)
done (took 4.291894198 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:10
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:11
(1/6) benchmarking ("cos", 0.0)...
done (took 0.416564438 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:08
(2/6) benchmarking ("cos", π)...
done (took 0.51561419 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:06
(3/6) benchmarking ("tan", π)...
done (took 0.682232378 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:04
(4/6) benchmarking ("sin", π)...
done (took 0.600362746 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:03
(5/6) benchmarking ("sin", 0.0)...
done (took 0.869807659 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:01
(6/6) benchmarking ("tan", 0.0)...
done (took 0.519927707 seconds)
done (took 4.430326891 seconds)
done (took 9.15903454 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:18
# Benchmark Report for *PkgBenchmark*
## Job Properties
* Time of benchmark: 18 Oct 2020 - 7:10
* Package commit: non gi
* Julia commit: 444aa8
* Julia command flags: None
* Environment variables: None
## Results
Below is a table of this job's results, obtained by running the benchmarks.
The values listed in the `ID` column have the structure `[parent_group, child_group, ..., key]`, and can be used to
index into the BaseBenchmarks suite to retrieve the corresponding benchmarks.
The percentages accompanying time and memory values in the below table are noise tolerances. The "true"
time/memory value for a given benchmark is expected to fall within this percentage of the reported value.
An empty cell means that the value was zero.
| ID | time | GC time | memory | allocations |
|----------------------------------------------------|----------------:|--------:|----------------:|------------:|
| `["trigonometry", "circular", "(\"cos\", 0.0)"]` | 4.199 ns (5%) | | | |
| `["trigonometry", "circular", "(\"cos\", π)"]` | 10.100 ns (5%) | | | |
| `["trigonometry", "circular", "(\"sin\", 0.0)"]` | 3.599 ns (5%) | | | |
| `["trigonometry", "circular", "(\"sin\", π)"]` | 10.160 ns (5%) | | | |
| `["trigonometry", "circular", "(\"tan\", 0.0)"]` | 3.599 ns (5%) | | | |
| `["trigonometry", "circular", "(\"tan\", π)"]` | 12.793 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"cos\", 0.0)"]` | 4.199 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"cos\", π)"]` | 10.069 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"sin\", 0.0)"]` | 3.609 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"sin\", π)"]` | 10.169 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"tan\", 0.0)"]` | 3.609 ns (5%) | | | |
| `["trigonometry", "hyperbolic", "(\"tan\", π)"]` | 12.788 ns (5%) | | | |
| `["utf8", "join"]` | 197.569 ms (5%) | | 156.27 MiB (1%) | 20 |
| `["utf8", "replace"]` | 128.628 μs (5%) | | 12.00 KiB (1%) | 4 |
## Benchmark Group List
Here's a list of all the benchmark groups executed by this job:
- `["trigonometry", "circular"]`
- `["trigonometry", "hyperbolic"]`
- `["utf8"]`
## Julia versioninfo
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2671 MHz 345285658 s 49030 s 57729999 s 1640980406 s 0 s
Memory: 503.8203659057617 GB (54810.3828125 MB free)
Uptime: 1.609968e6 sec
Load Avg: 169.03 138.99 135.86
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```Test Summary: | Pass Total
structure | 6 6
Test Summary: | Pass Total
objectpath/loadobject | 6 6
Activating new environment at `/tmp/56QqwdGT/Project.toml`
No Changes to `/tmp/56QqwdGT/Project.toml`
No Changes to `/tmp/56QqwdGT/Manifest.toml`
Generating project Example:
/tmp/56QqwdGT/Example/Project.toml
/tmp/56QqwdGT/Example/src/Example.jl
Path `/tmp/56QqwdGT/Example` exists and looks like the correct package. Using existing path.
Resolving package versions...
Updating `/tmp/56QqwdGT/Project.toml`
[e63dae53] + Example v0.1.0 `/tmp/56QqwdGT/Example`
Updating `/tmp/56QqwdGT/Manifest.toml`
[e63dae53] + Example v0.1.0 `/tmp/56QqwdGT/Example`
Precompiling project... (tip: to disable auto-precompilation set ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0)
[32m ✓ [39mExample
1 dependency successfully precompiled
PkgBenchmark: Running benchmarks...
PkgBenchmark: creating benchmark tuning file /tmp/56QqwdGT/Example/benchmark/tune.json...
Tuning 0%| | ETA: N/A
Tuning 0%| | ETA: N/A
(1/1) tuning "foo"...
done (took 1.944322166 seconds)
Tuning 100%|████████████████████████████████████████████| Time: 0:00:06
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "foo"...
done (took 0.399000254 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:02
Test Summary: | Pass Total
benchmarkconfig | 1 1
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "foo"...
done (took 0.759369409 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:04
Test Summary: | Pass Total
postprocess | 1 1
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "trig"...
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "sin"...
done (took 0.743224777 seconds)
done (took 1.496005068 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:04
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "trig"...
Benchmarking 0%| | ETA: N/A
(1/1) benchmarking "sin"...
done (took 0.736105335 seconds)
done (took 1.309999027 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:04
Test Summary: | Pass Total
getting back original commit / branch | 2 2
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 5.8934128 seconds)
Benchmarking 7%|██▊ | ETA: 0:01:56
(2/3) benchmarking "plots"...
done (took 0.318028943 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:00
(3/3) benchmarking "replace"...
done (took 1.989562404 seconds)
done (took 8.883180821 seconds)
Benchmarking 14%|█████▍ | ETA: 0:01:07
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:01:10
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:13
(1/6) benchmarking ("cos", 0.0)...
done (took 0.574539806 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:47
(2/6) benchmarking ("cos", π)...
done (took 0.454583818 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:33
(3/6) benchmarking ("tan", π)...
done (took 0.447201338 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:25
(4/6) benchmarking ("sin", π)...
done (took 0.435720699 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:19
(5/6) benchmarking ("sin", 0.0)...
done (took 0.387798023 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:15
(6/6) benchmarking ("tan", 0.0)...
done (took 0.583382508 seconds)
done (took 3.549607357 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:11
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:12
(1/6) benchmarking ("cos", 0.0)...
done (took 0.398778019 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:09
(2/6) benchmarking ("cos", π)...
done (took 0.356857959 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:06
(3/6) benchmarking ("tan", π)...
done (took 0.480650911 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:05
(4/6) benchmarking ("sin", π)...
done (took 0.40111758 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:03
(5/6) benchmarking ("sin", 0.0)...
done (took 0.374975529 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:01
(6/6) benchmarking ("tan", 0.0)...
done (took 0.387691863 seconds)
done (took 2.701054302 seconds)
done (took 6.668961359 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:18
PkgBenchmark: benchmark results written to /tmp/jl_PAlwqp.json
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 5.933305418 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:03
(2/3) benchmarking "plots"...
done (took 0.437370588 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:09
(3/3) benchmarking "replace"...
done (took 2.267751169 seconds)
done (took 9.413302981 seconds)
Benchmarking 14%|█████▍ | ETA: 0:01:13
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:01:15
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:17
(1/6) benchmarking ("cos", 0.0)...
done (took 0.751375362 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:50
(2/6) benchmarking ("cos", π)...
done (took 0.617661872 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:36
(3/6) benchmarking ("tan", π)...
done (took 0.661564606 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:27
(4/6) benchmarking ("sin", π)...
done (took 0.524039683 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:21
(5/6) benchmarking ("sin", 0.0)...
done (took 0.437325899 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:16
(6/6) benchmarking ("tan", 0.0)...
done (took 0.503348616 seconds)
done (took 3.990310284 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:12
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:13
(1/6) benchmarking ("cos", 0.0)...
done (took 0.539451475 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:10
(2/6) benchmarking ("cos", π)...
done (took 0.610790336 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:07
(3/6) benchmarking ("tan", π)...
done (took 0.865549861 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:05
(4/6) benchmarking ("sin", π)...
done (took 0.389872448 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:03
(5/6) benchmarking ("sin", 0.0)...
done (took 0.416319186 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:02
(6/6) benchmarking ("tan", 0.0)...
done (took 0.511525545 seconds)
done (took 3.688634932 seconds)
done (took 8.016192386 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:20
PkgBenchmark: benchmark results written to /tmp/jl_PAlwqp.json
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 7.50738441 seconds)
Benchmarking 7%|██▊ | ETA: 0:03:22
(2/3) benchmarking "plots"...
done (took 9.566236939 seconds)
Benchmarking 7%|██▊ | ETA: 0:05:26
(3/3) benchmarking "replace"...
done (took 2.360385578 seconds)
done (took 24.969438761 seconds)
Benchmarking 14%|█████▍ | ETA: 0:02:45
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:02:47
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:02:49
(1/6) benchmarking ("cos", 0.0)...
done (took 0.612804403 seconds)
Benchmarking 21%|████████▏ | ETA: 0:01:46
(2/6) benchmarking ("cos", π)...
done (took 0.644259799 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:01:14
(3/6) benchmarking ("tan", π)...
done (took 0.462469435 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:54
(4/6) benchmarking ("sin", π)...
done (took 0.543114752 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:41
(5/6) benchmarking ("sin", 0.0)...
done (took 0.435442114 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:31
(6/6) benchmarking ("tan", 0.0)...
done (took 0.508536093 seconds)
done (took 3.691746916 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:24
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:24
(1/6) benchmarking ("cos", 0.0)...
done (took 0.412706671 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:18
(2/6) benchmarking ("cos", π)...
done (took 0.498710583 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:13
(3/6) benchmarking ("tan", π)...
done (took 0.448284248 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:09
(4/6) benchmarking ("sin", π)...
done (took 0.441227814 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:06
(5/6) benchmarking ("sin", 0.0)...
done (took 0.429565265 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:03
(6/6) benchmarking ("tan", 0.0)...
done (took 0.423574379 seconds)
done (took 2.980714471 seconds)
done (took 7.024198901 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:34
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 6.294595953 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:16
(2/3) benchmarking "plots"...
done (took 0.378745225 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:21
(3/3) benchmarking "replace"...
done (took 2.307693846 seconds)
done (took 10.169537275 seconds)
Benchmarking 14%|█████▍ | ETA: 0:01:19
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:01:24
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:28
(1/6) benchmarking ("cos", 0.0)...
done (took 0.720930757 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:57
(2/6) benchmarking ("cos", π)...
done (took 0.691971681 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:41
(3/6) benchmarking ("tan", π)...
done (took 0.529572959 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:30
(4/6) benchmarking ("sin", π)...
done (took 0.663139562 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:23
(5/6) benchmarking ("sin", 0.0)...
done (took 1.038826605 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:19
(6/6) benchmarking ("tan", 0.0)...
done (took 0.467311947 seconds)
done (took 5.072511655 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:14
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:15
(1/6) benchmarking ("cos", 0.0)...
done (took 0.810530986 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:11
(2/6) benchmarking ("cos", π)...
done (took 0.468883518 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:08
(3/6) benchmarking ("tan", π)...
done (took 0.630926293 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:06
(4/6) benchmarking ("sin", π)...
done (took 0.563828031 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:04
(5/6) benchmarking ("sin", 0.0)...
done (took 0.478404772 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:02
(6/6) benchmarking ("tan", 0.0)...
done (took 0.665152248 seconds)
done (took 4.055649724 seconds)
done (took 9.942677605 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:23
# Benchmark Report for *Example*
## Job Properties
* Time of benchmarks:
- Target: 18 Oct 2020 - 07:13
- Baseline: 18 Oct 2020 - 07:13
* Package commits:
- Target: 8f66fb
- Baseline: e89779
* Julia commits:
- Target: 444aa8
- Baseline: 444aa8
* Julia command flags:
- Target: None
- Baseline: None
* Environment variables:
- Target: None
- Baseline: None
## Results
A ratio greater than `1.0` denotes a possible regression (marked with :x:), while a ratio less
than `1.0` denotes a possible improvement (marked with :white_check_mark:). Only significant results - results
that indicate possible regressions or improvements - are shown below (thus, an empty table means that all
benchmark results remained invariant between builds).
| ID | time ratio | memory ratio |
|----------------------------------------------------|------------------------------|--------------|
| `["trigonometry", "circular", "(\"cos\", 0.0)"]` | 0.74 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"cos\", π)"]` | 0.82 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"sin\", 0.0)"]` | 1.30 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"tan\", 0.0)"]` | 1.38 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"cos\", 0.0)"]` | 0.51 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"sin\", 0.0)"]` | 1.34 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"tan\", π)"]` | 1.17 (5%) :x: | 1.00 (1%) |
| `["utf8", "join"]` | 1.05 (5%) :x: | 1.00 (1%) |
## Benchmark Group List
Here's a list of all the benchmark groups executed by this job:
- `["trigonometry", "circular"]`
- `["trigonometry", "hyperbolic"]`
- `["utf8"]`
## Julia versioninfo
### Target
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2994 MHz 345404012 s 49030 s 57756268 s 1641071022 s 0 s
Memory: 503.8203659057617 GB (167806.34765625 MB free)
Uptime: 1.610164e6 sec
Load Avg: 122.37 132.17 133.53
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```
### Baseline
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2777 MHz 345432807 s 49030 s 57762025 s 1641082879 s 0 s
Memory: 503.8203659057617 GB (168729.5 MB free)
Uptime: 1.610202e6 sec
Load Avg: 237.45 161.59 143.43
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```# Benchmark Report for *Example*
## Job Properties
* Time of benchmarks:
- Target: 18 Oct 2020 - 07:13
- Baseline: 18 Oct 2020 - 07:13
* Package commits:
- Target: 8f66fb
- Baseline: e89779
* Julia commits:
- Target: 444aa8
- Baseline: 444aa8
* Julia command flags:
- Target: None
- Baseline: None
* Environment variables:
- Target: None
- Baseline: None
## Results
A ratio greater than `1.0` denotes a possible regression (marked with :x:), while a ratio less
than `1.0` denotes a possible improvement (marked with :white_check_mark:). Only significant results - results
that indicate possible regressions or improvements - are shown below (thus, an empty table means that all
benchmark results remained invariant between builds).
| ID | time ratio | memory ratio |
|----------------------------------------------------|------------------------------|--------------|
| `["trigonometry", "circular", "(\"cos\", 0.0)"]` | 0.74 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"cos\", π)"]` | 0.82 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"sin\", 0.0)"]` | 1.30 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"tan\", 0.0)"]` | 1.38 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"cos\", 0.0)"]` | 0.51 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"sin\", 0.0)"]` | 1.34 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"tan\", π)"]` | 1.17 (5%) :x: | 1.00 (1%) |
| `["utf8", "join"]` | 1.05 (5%) :x: | 1.00 (1%) |
## Benchmark Group List
Here's a list of all the benchmark groups executed by this job:
- `["trigonometry", "circular"]`
- `["trigonometry", "hyperbolic"]`
- `["utf8"]`
## Julia versioninfo
### Target
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2994 MHz 345404012 s 49030 s 57756268 s 1641071022 s 0 s
Memory: 503.8203659057617 GB (167806.34765625 MB free)
Uptime: 1.610164e6 sec
Load Avg: 122.37 132.17 133.53
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```
### Baseline
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2777 MHz 345432807 s 49030 s 57762025 s 1641082879 s 0 s
Memory: 503.8203659057617 GB (168729.5 MB free)
Uptime: 1.610202e6 sec
Load Avg: 237.45 161.59 143.43
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```# Benchmark Report for *Example*
## Job Properties
* Time of benchmarks:
- Target: 18 Oct 2020 - 07:13
- Baseline: 18 Oct 2020 - 07:13
* Package commits:
- Target: 8f66fb
- Baseline: e89779
* Julia commits:
- Target: 444aa8
- Baseline: 444aa8
* Julia command flags:
- Target: None
- Baseline: None
* Environment variables:
- Target: None
- Baseline: None
## Results
A ratio greater than `1.0` denotes a possible regression (marked with :x:), while a ratio less
than `1.0` denotes a possible improvement (marked with :white_check_mark:). All results are shown below.
| ID | time ratio | memory ratio |
|----------------------------------------------------|------------------------------|--------------|
| `["trigonometry", "circular", "(\"cos\", 0.0)"]` | 0.74 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"cos\", π)"]` | 0.82 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"sin\", 0.0)"]` | 1.30 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"sin\", π)"]` | 1.00 (5%) | 1.00 (1%) |
| `["trigonometry", "circular", "(\"tan\", 0.0)"]` | 1.38 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "circular", "(\"tan\", π)"]` | 0.97 (5%) | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"cos\", 0.0)"]` | 0.51 (5%) :white_check_mark: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"cos\", π)"]` | 1.00 (5%) | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"sin\", 0.0)"]` | 1.34 (5%) :x: | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"sin\", π)"]` | 1.00 (5%) | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"tan\", 0.0)"]` | 1.03 (5%) | 1.00 (1%) |
| `["trigonometry", "hyperbolic", "(\"tan\", π)"]` | 1.17 (5%) :x: | 1.00 (1%) |
| `["utf8", "join"]` | 1.05 (5%) :x: | 1.00 (1%) |
| `["utf8", "replace"]` | 1.01 (5%) | 1.00 (1%) |
## Benchmark Group List
Here's a list of all the benchmark groups executed by this job:
- `["trigonometry", "circular"]`
- `["trigonometry", "hyperbolic"]`
- `["utf8"]`
## Julia versioninfo
### Target
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2994 MHz 345404012 s 49030 s 57756268 s 1641071022 s 0 s
Memory: 503.8203659057617 GB (167806.34765625 MB free)
Uptime: 1.610164e6 sec
Load Avg: 122.37 132.17 133.53
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```
### Baseline
```
Julia Version 1.6.0-DEV.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
uname: Linux 4.15.0-118-generic #119-Ubuntu SMP Tue Sep 8 12:30:01 UTC 2020 x86_64 x86_64
CPU: AMD EPYC 7502 32-Core Processor:
speed user nice sys idle irq
#1-128 2777 MHz 345432807 s 49030 s 57762025 s 1641082879 s 0 s
Memory: 503.8203659057617 GB (168729.5 MB free)
Uptime: 1.610202e6 sec
Load Avg: 237.45 161.59 143.43
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
```PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 5.908426232 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:02
(2/3) benchmarking "plots"...
done (took 0.382138026 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:07
(3/3) benchmarking "replace"...
done (took 2.075095344 seconds)
done (took 9.053788951 seconds)
Benchmarking 14%|█████▍ | ETA: 0:01:11
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:01:14
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:16
(1/6) benchmarking ("cos", 0.0)...
done (took 0.586351988 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:49
(2/6) benchmarking ("cos", π)...
done (took 0.452279041 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:35
(3/6) benchmarking ("tan", π)...
done (took 0.451443042 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:26
(4/6) benchmarking ("sin", π)...
done (took 0.409875187 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:20
(5/6) benchmarking ("sin", 0.0)...
done (took 0.378074785 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:15
(6/6) benchmarking ("tan", 0.0)...
done (took 0.36541233 seconds)
done (took 3.12069456 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:12
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:12
(1/6) benchmarking ("cos", 0.0)...
done (took 0.392574608 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:09
(2/6) benchmarking ("cos", π)...
done (took 0.402572837 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:07
(3/6) benchmarking ("tan", π)...
done (took 0.479971924 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:05
(4/6) benchmarking ("sin", π)...
done (took 0.425840663 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:03
(5/6) benchmarking ("sin", 0.0)...
done (took 0.369642088 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:01
(6/6) benchmarking ("tan", 0.0)...
done (took 0.376131489 seconds)
done (took 2.723325151 seconds)
done (took 6.275017232 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:18
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 5.92031576 seconds)
Benchmarking 7%|██▊ | ETA: 0:01:54
(2/3) benchmarking "plots"...
done (took 0.343469947 seconds)
Benchmarking 7%|██▊ | ETA: 0:01:59
(3/3) benchmarking "replace"...
done (took 2.030220056 seconds)
done (took 8.908779896 seconds)
Benchmarking 14%|█████▍ | ETA: 0:01:07
(2/2) benchmarking "trigonometry"...
Benchmarking 14%|█████▍ | ETA: 0:01:09
(1/2) benchmarking "circular"...
Benchmarking 14%|█████▍ | ETA: 0:01:11
(1/6) benchmarking ("cos", 0.0)...
done (took 0.523284968 seconds)
Benchmarking 21%|████████▏ | ETA: 0:00:45
(2/6) benchmarking ("cos", π)...
done (took 0.45158211 seconds)
Benchmarking 29%|██████████▉ | ETA: 0:00:32
(3/6) benchmarking ("tan", π)...
done (took 0.430517697 seconds)
Benchmarking 36%|█████████████▋ | ETA: 0:00:24
(4/6) benchmarking ("sin", π)...
done (took 0.407515908 seconds)
Benchmarking 43%|████████████████▎ | ETA: 0:00:18
(5/6) benchmarking ("sin", 0.0)...
done (took 0.353160659 seconds)
Benchmarking 50%|███████████████████ | ETA: 0:00:14
(6/6) benchmarking ("tan", 0.0)...
done (took 0.360717627 seconds)
done (took 2.946979852 seconds)
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:11
(2/2) benchmarking "hyperbolic"...
Benchmarking 57%|█████████████████████▊ | ETA: 0:00:11
(1/6) benchmarking ("cos", 0.0)...
done (took 0.376367086 seconds)
Benchmarking 64%|████████████████████████▍ | ETA: 0:00:08
(2/6) benchmarking ("cos", π)...
done (took 0.351243043 seconds)
Benchmarking 71%|███████████████████████████▏ | ETA: 0:00:06
(3/6) benchmarking ("tan", π)...
done (took 0.356249422 seconds)
Benchmarking 79%|█████████████████████████████▉ | ETA: 0:00:04
(4/6) benchmarking ("sin", π)...
done (took 0.351031885 seconds)
Benchmarking 86%|████████████████████████████████▋ | ETA: 0:00:03
(5/6) benchmarking ("sin", 0.0)...
done (took 0.364371003 seconds)
Benchmarking 93%|███████████████████████████████████▎ | ETA: 0:00:01
(6/6) benchmarking ("tan", 0.0)...
done (took 0.371405587 seconds)
done (took 2.484960088 seconds)
done (took 5.73005392 seconds)
Benchmarking 100%|██████████████████████████████████████| Time: 0:00:17
PkgBenchmark: Running benchmarks...
PkgBenchmark: using benchmark tuning data in /tmp/56QqwdGT/Example/benchmark/tune.json
Benchmarking 0%| | ETA: N/A
Benchmarking 0%| | ETA: N/A
(1/2) benchmarking "utf8"...
Benchmarking 0%| | ETA: N/A
(1/3) benchmarking "join"...
done (took 6.158887307 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:06
(2/3) benchmarking "plots"...
done (took 0.467009973 seconds)
Benchmarking 7%|██▊ | ETA: 0:02:12
(3/3) benchmarking "replace"...
done (took 2.059562693 seconds)
done (took 9.324966367 seconds)