-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-4085873ec6.log
1064 lines (1060 loc) · 126 KB
/
1.5.0-DEV-4085873ec6.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.5.0-DEV.431
Commit 4085873ec6 (2020-03-10 23:48 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed CompilerSupportLibraries_jll ─ v0.2.0+1
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed DiffResults ────────────────── v1.0.2
Installed CommonSubexpressions ───────── v0.2.0
Installed SpecialFunctions ───────────── v0.10.0
Installed DiffRules ──────────────────── v1.0.1
Installed StaticArrays ───────────────── v0.12.1
Installed ForwardDiff ────────────────── v0.10.9
Installed NaNMath ────────────────────── v0.3.3
#=#=# ######################################################################## 100.0%
#=#=# ## 3.2%###### 9.4%########### 16.3%################### 26.8%########################### 38.4%####################################### 55.1%##################################################### 74.8%####################################################################### 99.9%######################################################################## 100.0%
Updating `~/.julia/environments/v1.5/Project.toml`
f6369f11 + ForwardDiff v0.10.9
Updating `~/.julia/environments/v1.5/Manifest.toml`
bbf7d656 + CommonSubexpressions v0.2.0
e66e0078 + CompilerSupportLibraries_jll v0.2.0+1
163ba53b + DiffResults v1.0.2
b552c78f + DiffRules v1.0.1
f6369f11 + ForwardDiff v0.10.9
77ba4419 + NaNMath v0.3.3
efe28fd5 + OpenSpecFun_jll v0.5.3+3
276daf66 + SpecialFunctions v0.10.0
90137ffa + StaticArrays v0.12.1
2a0f44e3 + Base64
ade2ca70 + Dates
8ba89e20 + Distributed
b77e0a4c + InteractiveUtils
76f85450 + LibGit2
8f399da3 + Libdl
37e2e46d + LinearAlgebra
56ddb016 + Logging
d6f4376e + Markdown
44cfe95a + Pkg
de0858da + Printf
3fa0cd96 + REPL
9a3f8284 + Random
ea8e919c + SHA
9e88b42a + Serialization
6462fe0b + Sockets
2f01184e + SparseArrays
10745b16 + Statistics
8dfed614 + Test
cf7118a7 + UUIDs
4ec0a83e + Unicode
Testing ForwardDiff
Status `/tmp/jl_mMYcEQ/Project.toml`
49dc2e85 Calculus v0.5.1
bbf7d656 CommonSubexpressions v0.2.0
163ba53b DiffResults v1.0.2
b552c78f DiffRules v1.0.1
de460e47 DiffTests v0.1.0
f6369f11 ForwardDiff v0.10.9
77ba4419 NaNMath v0.3.3
276daf66 SpecialFunctions v0.10.0
90137ffa StaticArrays v0.12.1
b77e0a4c InteractiveUtils
37e2e46d LinearAlgebra
9a3f8284 Random
2f01184e SparseArrays
8dfed614 Test
Status `/tmp/jl_mMYcEQ/Manifest.toml`
49dc2e85 Calculus v0.5.1
bbf7d656 CommonSubexpressions v0.2.0
e66e0078 CompilerSupportLibraries_jll v0.2.0+1
163ba53b DiffResults v1.0.2
b552c78f DiffRules v1.0.1
de460e47 DiffTests v0.1.0
f6369f11 ForwardDiff v0.10.9
77ba4419 NaNMath v0.3.3
efe28fd5 OpenSpecFun_jll v0.5.3+3
276daf66 SpecialFunctions v0.10.0
90137ffa StaticArrays v0.12.1
2a0f44e3 Base64
ade2ca70 Dates
8ba89e20 Distributed
b77e0a4c InteractiveUtils
76f85450 LibGit2
8f399da3 Libdl
37e2e46d LinearAlgebra
56ddb016 Logging
d6f4376e Markdown
44cfe95a Pkg
de0858da Printf
3fa0cd96 REPL
9a3f8284 Random
ea8e919c SHA
9e88b42a Serialization
6462fe0b Sockets
2f01184e SparseArrays
10745b16 Statistics
8dfed614 Test
cf7118a7 UUIDs
4ec0a83e Unicode
Testing Partials...
...testing Partials{0,Int64}
...testing Partials{0,Float32}
...testing Partials{0,Float64}
...testing Partials{3,Int64}
...testing Partials{3,Float32}
...testing Partials{3,Float64}
done (took 6.784106562 seconds).
Testing Dual...
...testing Dual{TestTag(),Int64,0} and Dual{TestTag(),Dual{TestTag(),Int64,0},0}
...testing Dual{TestTag(),Float32,0} and Dual{TestTag(),Dual{TestTag(),Float32,0},0}
...auto-testing Base.asind with 1 arguments
...auto-testing Base.log1p with 1 arguments
...auto-testing Base.acsch with 1 arguments
...auto-testing SpecialFunctions.erfc with 1 arguments
...auto-testing SpecialFunctions.digamma with 1 arguments
...auto-testing NaNMath.acos with 1 arguments
...auto-testing Base.asec with 1 arguments
...auto-testing Base.acosh with 1 arguments
...auto-testing Base.\ with 2 arguments
...auto-testing NaNMath.log10 with 1 arguments
...auto-testing Base.mod2pi with 1 arguments
...auto-testing Base.acsc with 1 arguments
...auto-testing SpecialFunctions.airybiprime with 1 arguments
...auto-testing Base.cscd with 1 arguments
...auto-testing SpecialFunctions.logbeta with 2 arguments
...auto-testing Base.hypot with 2 arguments
...auto-testing NaNMath.log with 1 arguments
...auto-testing Base.tand with 1 arguments
...auto-testing NaNMath.atanh with 1 arguments
...auto-testing Base.deg2rad with 1 arguments
...auto-testing Base.log10 with 1 arguments
...auto-testing Base.csch with 1 arguments
...auto-testing Base.asinh with 1 arguments
...auto-testing SpecialFunctions.airyai with 1 arguments
...auto-testing Base.abs2 with 1 arguments
...auto-testing SpecialFunctions.gamma with 1 arguments
...auto-testing SpecialFunctions.erfcx with 1 arguments
...auto-testing NaNMath.log1p with 1 arguments
...auto-testing SpecialFunctions.bessely0 with 1 arguments
...auto-testing Base.cosh with 1 arguments
...auto-testing NaNMath.sin with 1 arguments
...auto-testing Base.cos with 1 arguments
...auto-testing Base.atan with 2 arguments
...auto-testing Base.cospi with 1 arguments
...auto-testing Base.cbrt with 1 arguments
...auto-testing Base.acosd with 1 arguments
...auto-testing SpecialFunctions.bessely1 with 1 arguments
...auto-testing Base.acoth with 1 arguments
...auto-testing NaNMath.cos with 1 arguments
...auto-testing NaNMath.max with 2 arguments
...auto-testing SpecialFunctions.erfcinv with 1 arguments
...auto-testing SpecialFunctions.besselk with 2 arguments
...auto-testing NaNMath.pow with 2 arguments
...auto-testing SpecialFunctions.erf with 1 arguments
...auto-testing Base.sin with 1 arguments
...auto-testing Base.+ with 2 arguments
...auto-testing SpecialFunctions.dawson with 1 arguments
...auto-testing Base.inv with 1 arguments
...auto-testing Base.acotd with 1 arguments
...auto-testing SpecialFunctions.airyaiprime with 1 arguments
...auto-testing Base.min with 2 arguments
...auto-testing Base.+ with 1 arguments
...auto-testing SpecialFunctions.erfinv with 1 arguments
...auto-testing SpecialFunctions.trigamma with 1 arguments
...auto-testing Base.asecd with 1 arguments
...auto-testing Base.log with 1 arguments
...auto-testing NaNMath.acosh with 1 arguments
...auto-testing Base.rad2deg with 1 arguments
...auto-testing Base.mod with 2 arguments
...auto-testing SpecialFunctions.besselj1 with 1 arguments
...auto-testing Base.exp with 1 arguments
...auto-testing Base.acot with 1 arguments
...auto-testing NaNMath.sqrt with 1 arguments
...auto-testing Base.* with 2 arguments
...auto-testing Base.sind with 1 arguments
...auto-testing Base.sinpi with 1 arguments
...auto-testing Base.max with 2 arguments
...auto-testing Base.asech with 1 arguments
...auto-testing SpecialFunctions.bessely with 2 arguments
...auto-testing NaNMath.log2 with 1 arguments
...auto-testing NaNMath.tan with 1 arguments
...auto-testing NaNMath.lgamma with 1 arguments
...auto-testing Base.sqrt with 1 arguments
...auto-testing Base.^ with 2 arguments
...auto-testing SpecialFunctions.invdigamma with 1 arguments
...auto-testing SpecialFunctions.airybi with 1 arguments
...auto-testing Base.exp10 with 1 arguments
...auto-testing Base.rem with 2 arguments
...auto-testing Base.sech with 1 arguments
...auto-testing SpecialFunctions.erfi with 1 arguments
...auto-testing Base.coth with 1 arguments
...auto-testing Base.asin with 1 arguments
...auto-testing Base.cotd with 1 arguments
...auto-testing Base.cosd with 1 arguments
...auto-testing Base.sinh with 1 arguments
...auto-testing Base.abs with 1 arguments
...auto-testing SpecialFunctions.loggamma with 1 arguments
...auto-testing SpecialFunctions.besselj0 with 1 arguments
...auto-testing Base.transpose with 1 arguments
...auto-testing NaNMath.min with 2 arguments
...auto-testing Base.csc with 1 arguments
...auto-testing Base.tanh with 1 arguments
...auto-testing SpecialFunctions.besselj with 2 arguments
...auto-testing Base.log2 with 1 arguments
...auto-testing Base.atan with 1 arguments
...auto-testing Base.secd with 1 arguments
...auto-testing Base.atand with 1 arguments
...auto-testing SpecialFunctions.besseli with 2 arguments
...auto-testing NaNMath.asin with 1 arguments
...auto-testing Base.sec with 1 arguments
...auto-testing Base.acscd with 1 arguments
...auto-testing Base.tan with 1 arguments
...auto-testing SpecialFunctions.polygamma with 2 arguments
...auto-testing Base.- with 1 arguments
...auto-testing Base.cot with 1 arguments
...auto-testing Base.- with 2 arguments
...auto-testing Base.exp2 with 1 arguments
...auto-testing Base.expm1 with 1 arguments
...auto-testing Base.acos with 1 arguments
...auto-testing Base.atanh with 1 arguments
...auto-testing SpecialFunctions.beta with 2 arguments
...testing Dual{TestTag(),Int64,0} and Dual{TestTag(),Dual{TestTag(),Int64,4},0}
...testing Dual{TestTag(),Float32,0} and Dual{TestTag(),Dual{TestTag(),Float32,4},0}
...auto-testing Base.asind with 1 arguments
...auto-testing Base.log1p with 1 arguments
...auto-testing Base.acsch with 1 arguments
...auto-testing SpecialFunctions.erfc with 1 arguments
...auto-testing SpecialFunctions.digamma with 1 arguments
...auto-testing NaNMath.acos with 1 arguments
...auto-testing Base.asec with 1 arguments
...auto-testing Base.acosh with 1 arguments
...auto-testing Base.\ with 2 arguments
...auto-testing NaNMath.log10 with 1 arguments
...auto-testing Base.mod2pi with 1 arguments
...auto-testing Base.acsc with 1 arguments
...auto-testing SpecialFunctions.airybiprime with 1 arguments
...auto-testing Base.cscd with 1 arguments
...auto-testing SpecialFunctions.logbeta with 2 arguments
...auto-testing Base.hypot with 2 arguments
...auto-testing NaNMath.log with 1 arguments
...auto-testing Base.tand with 1 arguments
...auto-testing NaNMath.atanh with 1 arguments
...auto-testing Base.deg2rad with 1 arguments
...auto-testing Base.log10 with 1 arguments
...auto-testing Base.csch with 1 arguments
...auto-testing Base.asinh with 1 arguments
...auto-testing SpecialFunctions.airyai with 1 arguments
...auto-testing Base.abs2 with 1 arguments
...auto-testing SpecialFunctions.gamma with 1 arguments
...auto-testing SpecialFunctions.erfcx with 1 arguments
...auto-testing NaNMath.log1p with 1 arguments
...auto-testing SpecialFunctions.bessely0 with 1 arguments
...auto-testing Base.cosh with 1 arguments
...auto-testing NaNMath.sin with 1 arguments
...auto-testing Base.cos with 1 arguments
...auto-testing Base.atan with 2 arguments
...auto-testing Base.cospi with 1 arguments
...auto-testing Base.cbrt with 1 arguments
...auto-testing Base.acosd with 1 arguments
...auto-testing SpecialFunctions.bessely1 with 1 arguments
...auto-testing Base.acoth with 1 arguments
...auto-testing NaNMath.cos with 1 arguments
...auto-testing NaNMath.max with 2 arguments
...auto-testing SpecialFunctions.erfcinv with 1 arguments
...auto-testing SpecialFunctions.besselk with 2 arguments
...auto-testing NaNMath.pow with 2 arguments
...auto-testing SpecialFunctions.erf with 1 arguments
...auto-testing Base.sin with 1 arguments
...auto-testing Base.+ with 2 arguments
...auto-testing SpecialFunctions.dawson with 1 arguments
...auto-testing Base.inv with 1 arguments
...auto-testing Base.acotd with 1 arguments
...auto-testing SpecialFunctions.airyaiprime with 1 arguments
...auto-testing Base.min with 2 arguments
...auto-testing Base.+ with 1 arguments
...auto-testing SpecialFunctions.erfinv with 1 arguments
...auto-testing SpecialFunctions.trigamma with 1 arguments
...auto-testing Base.asecd with 1 arguments
...auto-testing Base.log with 1 arguments
...auto-testing NaNMath.acosh with 1 arguments
...auto-testing Base.rad2deg with 1 arguments
...auto-testing Base.mod with 2 arguments
...auto-testing SpecialFunctions.besselj1 with 1 arguments
...auto-testing Base.exp with 1 arguments
...auto-testing Base.acot with 1 arguments
...auto-testing NaNMath.sqrt with 1 arguments
...auto-testing Base.* with 2 arguments
...auto-testing Base.sind with 1 arguments
...auto-testing Base.sinpi with 1 arguments
...auto-testing Base.max with 2 arguments
...auto-testing Base.asech with 1 arguments
...auto-testing SpecialFunctions.bessely with 2 arguments
...auto-testing NaNMath.log2 with 1 arguments
...auto-testing NaNMath.tan with 1 arguments
...auto-testing NaNMath.lgamma with 1 arguments
...auto-testing Base.sqrt with 1 arguments
...auto-testing Base.^ with 2 arguments
...auto-testing SpecialFunctions.invdigamma with 1 arguments
...auto-testing SpecialFunctions.airybi with 1 arguments
...auto-testing Base.exp10 with 1 arguments
...auto-testing Base.rem with 2 arguments
...auto-testing Base.sech with 1 arguments
...auto-testing SpecialFunctions.erfi with 1 arguments
...auto-testing Base.coth with 1 arguments
...auto-testing Base.asin with 1 arguments
...auto-testing Base.cotd with 1 arguments
...auto-testing Base.cosd with 1 arguments
...auto-testing Base.sinh with 1 arguments
...auto-testing Base.abs with 1 arguments
...auto-testing SpecialFunctions.loggamma with 1 arguments
...auto-testing SpecialFunctions.besselj0 with 1 arguments
...auto-testing Base.transpose with 1 arguments
...auto-testing NaNMath.min with 2 arguments
...auto-testing Base.csc with 1 arguments
...auto-testing Base.tanh with 1 arguments
...auto-testing SpecialFunctions.besselj with 2 arguments
...auto-testing Base.log2 with 1 arguments
...auto-testing Base.atan with 1 arguments
...auto-testing Base.secd with 1 arguments
...auto-testing Base.atand with 1 arguments
...auto-testing SpecialFunctions.besseli with 2 arguments
...auto-testing NaNMath.asin with 1 arguments
...auto-testing Base.sec with 1 arguments
...auto-testing Base.acscd with 1 arguments
...auto-testing Base.tan with 1 arguments
...auto-testing SpecialFunctions.polygamma with 2 arguments
...auto-testing Base.- with 1 arguments
...auto-testing Base.cot with 1 arguments
...auto-testing Base.- with 2 arguments
...auto-testing Base.exp2 with 1 arguments
...auto-testing Base.expm1 with 1 arguments
...auto-testing Base.acos with 1 arguments
...auto-testing Base.atanh with 1 arguments
...auto-testing SpecialFunctions.beta with 2 arguments
...testing Dual{TestTag(),Int64,3} and Dual{TestTag(),Dual{TestTag(),Int64,0},3}
...testing Dual{TestTag(),Float32,3} and Dual{TestTag(),Dual{TestTag(),Float32,0},3}
...auto-testing Base.asind with 1 arguments
...auto-testing Base.log1p with 1 arguments
...auto-testing Base.acsch with 1 arguments
...auto-testing SpecialFunctions.erfc with 1 arguments
...auto-testing SpecialFunctions.digamma with 1 arguments
...auto-testing NaNMath.acos with 1 arguments
...auto-testing Base.asec with 1 arguments
...auto-testing Base.acosh with 1 arguments
...auto-testing Base.\ with 2 arguments
...auto-testing NaNMath.log10 with 1 arguments
...auto-testing Base.mod2pi with 1 arguments
...auto-testing Base.acsc with 1 arguments
...auto-testing SpecialFunctions.airybiprime with 1 arguments
...auto-testing Base.cscd with 1 arguments
...auto-testing SpecialFunctions.logbeta with 2 arguments
...auto-testing Base.hypot with 2 arguments
...auto-testing NaNMath.log with 1 arguments
...auto-testing Base.tand with 1 arguments
...auto-testing NaNMath.atanh with 1 arguments
...auto-testing Base.deg2rad with 1 arguments
...auto-testing Base.log10 with 1 arguments
...auto-testing Base.csch with 1 arguments
...auto-testing Base.asinh with 1 arguments
...auto-testing SpecialFunctions.airyai with 1 arguments
...auto-testing Base.abs2 with 1 arguments
...auto-testing SpecialFunctions.gamma with 1 arguments
...auto-testing SpecialFunctions.erfcx with 1 arguments
...auto-testing NaNMath.log1p with 1 arguments
...auto-testing SpecialFunctions.bessely0 with 1 arguments
...auto-testing Base.cosh with 1 arguments
...auto-testing NaNMath.sin with 1 arguments
...auto-testing Base.cos with 1 arguments
...auto-testing Base.atan with 2 arguments
...auto-testing Base.cospi with 1 arguments
...auto-testing Base.cbrt with 1 arguments
...auto-testing Base.acosd with 1 arguments
...auto-testing SpecialFunctions.bessely1 with 1 arguments
...auto-testing Base.acoth with 1 arguments
...auto-testing NaNMath.cos with 1 arguments
...auto-testing NaNMath.max with 2 arguments
...auto-testing SpecialFunctions.erfcinv with 1 arguments
...auto-testing SpecialFunctions.besselk with 2 arguments
...auto-testing NaNMath.pow with 2 arguments
...auto-testing SpecialFunctions.erf with 1 arguments
...auto-testing Base.sin with 1 arguments
...auto-testing Base.+ with 2 arguments
...auto-testing SpecialFunctions.dawson with 1 arguments
...auto-testing Base.inv with 1 arguments
...auto-testing Base.acotd with 1 arguments
...auto-testing SpecialFunctions.airyaiprime with 1 arguments
...auto-testing Base.min with 2 arguments
...auto-testing Base.+ with 1 arguments
...auto-testing SpecialFunctions.erfinv with 1 arguments
...auto-testing SpecialFunctions.trigamma with 1 arguments
...auto-testing Base.asecd with 1 arguments
...auto-testing Base.log with 1 arguments
...auto-testing NaNMath.acosh with 1 arguments
...auto-testing Base.rad2deg with 1 arguments
...auto-testing Base.mod with 2 arguments
...auto-testing SpecialFunctions.besselj1 with 1 arguments
...auto-testing Base.exp with 1 arguments
...auto-testing Base.acot with 1 arguments
...auto-testing NaNMath.sqrt with 1 arguments
...auto-testing Base.* with 2 arguments
...auto-testing Base.sind with 1 arguments
...auto-testing Base.sinpi with 1 arguments
...auto-testing Base.max with 2 arguments
...auto-testing Base.asech with 1 arguments
...auto-testing SpecialFunctions.bessely with 2 arguments
...auto-testing NaNMath.log2 with 1 arguments
...auto-testing NaNMath.tan with 1 arguments
...auto-testing NaNMath.lgamma with 1 arguments
...auto-testing Base.sqrt with 1 arguments
...auto-testing Base.^ with 2 arguments
...auto-testing SpecialFunctions.invdigamma with 1 arguments
...auto-testing SpecialFunctions.airybi with 1 arguments
...auto-testing Base.exp10 with 1 arguments
...auto-testing Base.rem with 2 arguments
...auto-testing Base.sech with 1 arguments
...auto-testing SpecialFunctions.erfi with 1 arguments
...auto-testing Base.coth with 1 arguments
...auto-testing Base.asin with 1 arguments
...auto-testing Base.cotd with 1 arguments
...auto-testing Base.cosd with 1 arguments
...auto-testing Base.sinh with 1 arguments
...auto-testing Base.abs with 1 arguments
...auto-testing SpecialFunctions.loggamma with 1 arguments
...auto-testing SpecialFunctions.besselj0 with 1 arguments
...auto-testing Base.transpose with 1 arguments
...auto-testing NaNMath.min with 2 arguments
...auto-testing Base.csc with 1 arguments
...auto-testing Base.tanh with 1 arguments
...auto-testing SpecialFunctions.besselj with 2 arguments
...auto-testing Base.log2 with 1 arguments
...auto-testing Base.atan with 1 arguments
...auto-testing Base.secd with 1 arguments
...auto-testing Base.atand with 1 arguments
...auto-testing SpecialFunctions.besseli with 2 arguments
...auto-testing NaNMath.asin with 1 arguments
...auto-testing Base.sec with 1 arguments
...auto-testing Base.acscd with 1 arguments
...auto-testing Base.tan with 1 arguments
...auto-testing SpecialFunctions.polygamma with 2 arguments
...auto-testing Base.- with 1 arguments
...auto-testing Base.cot with 1 arguments
...auto-testing Base.- with 2 arguments
...auto-testing Base.exp2 with 1 arguments
...auto-testing Base.expm1 with 1 arguments
...auto-testing Base.acos with 1 arguments
...auto-testing Base.atanh with 1 arguments
...auto-testing SpecialFunctions.beta with 2 arguments
...testing Dual{TestTag(),Int64,3} and Dual{TestTag(),Dual{TestTag(),Int64,4},3}
...testing Dual{TestTag(),Float32,3} and Dual{TestTag(),Dual{TestTag(),Float32,4},3}
...auto-testing Base.asind with 1 arguments
...auto-testing Base.log1p with 1 arguments
...auto-testing Base.acsch with 1 arguments
...auto-testing SpecialFunctions.erfc with 1 arguments
...auto-testing SpecialFunctions.digamma with 1 arguments
...auto-testing NaNMath.acos with 1 arguments
...auto-testing Base.asec with 1 arguments
...auto-testing Base.acosh with 1 arguments
...auto-testing Base.\ with 2 arguments
...auto-testing NaNMath.log10 with 1 arguments
...auto-testing Base.mod2pi with 1 arguments
...auto-testing Base.acsc with 1 arguments
...auto-testing SpecialFunctions.airybiprime with 1 arguments
...auto-testing Base.cscd with 1 arguments
...auto-testing SpecialFunctions.logbeta with 2 arguments
...auto-testing Base.hypot with 2 arguments
...auto-testing NaNMath.log with 1 arguments
...auto-testing Base.tand with 1 arguments
...auto-testing NaNMath.atanh with 1 arguments
...auto-testing Base.deg2rad with 1 arguments
...auto-testing Base.log10 with 1 arguments
...auto-testing Base.csch with 1 arguments
...auto-testing Base.asinh with 1 arguments
...auto-testing SpecialFunctions.airyai with 1 arguments
...auto-testing Base.abs2 with 1 arguments
...auto-testing SpecialFunctions.gamma with 1 arguments
...auto-testing SpecialFunctions.erfcx with 1 arguments
...auto-testing NaNMath.log1p with 1 arguments
...auto-testing SpecialFunctions.bessely0 with 1 arguments
...auto-testing Base.cosh with 1 arguments
...auto-testing NaNMath.sin with 1 arguments
...auto-testing Base.cos with 1 arguments
...auto-testing Base.atan with 2 arguments
...auto-testing Base.cospi with 1 arguments
...auto-testing Base.cbrt with 1 arguments
...auto-testing Base.acosd with 1 arguments
...auto-testing SpecialFunctions.bessely1 with 1 arguments
...auto-testing Base.acoth with 1 arguments
...auto-testing NaNMath.cos with 1 arguments
...auto-testing NaNMath.max with 2 arguments
...auto-testing SpecialFunctions.erfcinv with 1 arguments
...auto-testing SpecialFunctions.besselk with 2 arguments
...auto-testing NaNMath.pow with 2 arguments
...auto-testing SpecialFunctions.erf with 1 arguments
...auto-testing Base.sin with 1 arguments
...auto-testing Base.+ with 2 arguments
...auto-testing SpecialFunctions.dawson with 1 arguments
...auto-testing Base.inv with 1 arguments
...auto-testing Base.acotd with 1 arguments
...auto-testing SpecialFunctions.airyaiprime with 1 arguments
...auto-testing Base.min with 2 arguments
...auto-testing Base.+ with 1 arguments
...auto-testing SpecialFunctions.erfinv with 1 arguments
...auto-testing SpecialFunctions.trigamma with 1 arguments
...auto-testing Base.asecd with 1 arguments
...auto-testing Base.log with 1 arguments
...auto-testing NaNMath.acosh with 1 arguments
...auto-testing Base.rad2deg with 1 arguments
...auto-testing Base.mod with 2 arguments
...auto-testing SpecialFunctions.besselj1 with 1 arguments
...auto-testing Base.exp with 1 arguments
...auto-testing Base.acot with 1 arguments
...auto-testing NaNMath.sqrt with 1 arguments
...auto-testing Base.* with 2 arguments
...auto-testing Base.sind with 1 arguments
...auto-testing Base.sinpi with 1 arguments
...auto-testing Base.max with 2 arguments
...auto-testing Base.asech with 1 arguments
...auto-testing SpecialFunctions.bessely with 2 arguments
...auto-testing NaNMath.log2 with 1 arguments
...auto-testing NaNMath.tan with 1 arguments
...auto-testing NaNMath.lgamma with 1 arguments
...auto-testing Base.sqrt with 1 arguments
...auto-testing Base.^ with 2 arguments
...auto-testing SpecialFunctions.invdigamma with 1 arguments
...auto-testing SpecialFunctions.airybi with 1 arguments
...auto-testing Base.exp10 with 1 arguments
...auto-testing Base.rem with 2 arguments
...auto-testing Base.sech with 1 arguments
...auto-testing SpecialFunctions.erfi with 1 arguments
...auto-testing Base.coth with 1 arguments
...auto-testing Base.asin with 1 arguments
...auto-testing Base.cotd with 1 arguments
...auto-testing Base.cosd with 1 arguments
...auto-testing Base.sinh with 1 arguments
...auto-testing Base.abs with 1 arguments
...auto-testing SpecialFunctions.loggamma with 1 arguments
...auto-testing SpecialFunctions.besselj0 with 1 arguments
...auto-testing Base.transpose with 1 arguments
...auto-testing NaNMath.min with 2 arguments
...auto-testing Base.csc with 1 arguments
...auto-testing Base.tanh with 1 arguments
...auto-testing SpecialFunctions.besselj with 2 arguments
...auto-testing Base.log2 with 1 arguments
...auto-testing Base.atan with 1 arguments
...auto-testing Base.secd with 1 arguments
...auto-testing Base.atand with 1 arguments
...auto-testing SpecialFunctions.besseli with 2 arguments
...auto-testing NaNMath.asin with 1 arguments
...auto-testing Base.sec with 1 arguments
...auto-testing Base.acscd with 1 arguments
...auto-testing Base.tan with 1 arguments
...auto-testing SpecialFunctions.polygamma with 2 arguments
...auto-testing Base.- with 1 arguments
...auto-testing Base.cot with 1 arguments
...auto-testing Base.- with 2 arguments
...auto-testing Base.exp2 with 1 arguments
...auto-testing Base.expm1 with 1 arguments
...auto-testing Base.acos with 1 arguments
...auto-testing Base.atanh with 1 arguments
...auto-testing SpecialFunctions.beta with 2 arguments
Test Summary: | Pass Total
Exponentiation of zero | 3 3
done (took 33.822416751 seconds).
Testing derivative functionality...
...testing num2num_1
...testing num2num_2
...testing num2num_3
...testing num2num_4
...testing num2num_5
...testing identity
...testing num2arr_1
...testing num2arr_1!
Test Summary: | Pass Total
exponential function at base zero | 4 4
done (took 5.903610858 seconds).
Testing gradient functionality...
...running hardcoded test with chunk size = 1 and tag = nothing
...running hardcoded test with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...running hardcoded test with chunk size = 2 and tag = nothing
...running hardcoded test with chunk size = 2 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...running hardcoded test with chunk size = 3 and tag = nothing
...running hardcoded test with chunk size = 3 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing vec2num_1 with chunk size = 1 and tag = nothing
...testing vec2num_1 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_1),Float64}()
...testing vec2num_1 with chunk size = 4 and tag = nothing
...testing vec2num_1 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_1),Float64}()
...testing vec2num_1 with chunk size = 6 and tag = nothing
...testing vec2num_1 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_1),Float64}()
...testing vec2num_1 with chunk size = 12 and tag = nothing
...testing vec2num_1 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_1),Float64}()
...testing vec2num_1 with chunk size = 13 and tag = nothing
...testing vec2num_1 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_1),Float64}()
...testing vec2num_2 with chunk size = 1 and tag = nothing
...testing vec2num_2 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_2),Float64}()
...testing vec2num_2 with chunk size = 4 and tag = nothing
...testing vec2num_2 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_2),Float64}()
...testing vec2num_2 with chunk size = 6 and tag = nothing
...testing vec2num_2 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_2),Float64}()
...testing vec2num_2 with chunk size = 12 and tag = nothing
...testing vec2num_2 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_2),Float64}()
...testing vec2num_2 with chunk size = 13 and tag = nothing
...testing vec2num_2 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_2),Float64}()
...testing vec2num_3 with chunk size = 1 and tag = nothing
...testing vec2num_3 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_3),Float64}()
...testing vec2num_3 with chunk size = 4 and tag = nothing
...testing vec2num_3 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_3),Float64}()
...testing vec2num_3 with chunk size = 6 and tag = nothing
...testing vec2num_3 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_3),Float64}()
...testing vec2num_3 with chunk size = 12 and tag = nothing
...testing vec2num_3 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_3),Float64}()
...testing vec2num_3 with chunk size = 13 and tag = nothing
...testing vec2num_3 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_3),Float64}()
...testing vec2num_4 with chunk size = 1 and tag = nothing
...testing vec2num_4 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_4),Float64}()
...testing vec2num_4 with chunk size = 4 and tag = nothing
...testing vec2num_4 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_4),Float64}()
...testing vec2num_4 with chunk size = 6 and tag = nothing
...testing vec2num_4 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_4),Float64}()
...testing vec2num_4 with chunk size = 12 and tag = nothing
...testing vec2num_4 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_4),Float64}()
...testing vec2num_4 with chunk size = 13 and tag = nothing
...testing vec2num_4 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_4),Float64}()
...testing vec2num_5 with chunk size = 1 and tag = nothing
...testing vec2num_5 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_5),Float64}()
...testing vec2num_5 with chunk size = 4 and tag = nothing
...testing vec2num_5 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_5),Float64}()
...testing vec2num_5 with chunk size = 6 and tag = nothing
...testing vec2num_5 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_5),Float64}()
...testing vec2num_5 with chunk size = 12 and tag = nothing
...testing vec2num_5 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_5),Float64}()
...testing vec2num_5 with chunk size = 13 and tag = nothing
...testing vec2num_5 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_5),Float64}()
...testing vec2num_6 with chunk size = 1 and tag = nothing
...testing vec2num_6 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_6),Float64}()
...testing vec2num_6 with chunk size = 4 and tag = nothing
...testing vec2num_6 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_6),Float64}()
...testing vec2num_6 with chunk size = 6 and tag = nothing
...testing vec2num_6 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_6),Float64}()
...testing vec2num_6 with chunk size = 12 and tag = nothing
...testing vec2num_6 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_6),Float64}()
...testing vec2num_6 with chunk size = 13 and tag = nothing
...testing vec2num_6 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_6),Float64}()
...testing vec2num_7 with chunk size = 1 and tag = nothing
...testing vec2num_7 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_7),Float64}()
...testing vec2num_7 with chunk size = 4 and tag = nothing
...testing vec2num_7 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_7),Float64}()
...testing vec2num_7 with chunk size = 6 and tag = nothing
...testing vec2num_7 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_7),Float64}()
...testing vec2num_7 with chunk size = 12 and tag = nothing
...testing vec2num_7 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_7),Float64}()
...testing vec2num_7 with chunk size = 13 and tag = nothing
...testing vec2num_7 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.vec2num_7),Float64}()
...testing rosenbrock_1 with chunk size = 1 and tag = nothing
...testing rosenbrock_1 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing rosenbrock_1 with chunk size = 4 and tag = nothing
...testing rosenbrock_1 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing rosenbrock_1 with chunk size = 6 and tag = nothing
...testing rosenbrock_1 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing rosenbrock_1 with chunk size = 12 and tag = nothing
...testing rosenbrock_1 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing rosenbrock_1 with chunk size = 13 and tag = nothing
...testing rosenbrock_1 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_1),Float64}()
...testing rosenbrock_2 with chunk size = 1 and tag = nothing
...testing rosenbrock_2 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_2),Float64}()
...testing rosenbrock_2 with chunk size = 4 and tag = nothing
...testing rosenbrock_2 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_2),Float64}()
...testing rosenbrock_2 with chunk size = 6 and tag = nothing
...testing rosenbrock_2 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_2),Float64}()
...testing rosenbrock_2 with chunk size = 12 and tag = nothing
...testing rosenbrock_2 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_2),Float64}()
...testing rosenbrock_2 with chunk size = 13 and tag = nothing
...testing rosenbrock_2 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_2),Float64}()
...testing rosenbrock_3 with chunk size = 1 and tag = nothing
...testing rosenbrock_3 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_3),Float64}()
...testing rosenbrock_3 with chunk size = 4 and tag = nothing
...testing rosenbrock_3 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_3),Float64}()
...testing rosenbrock_3 with chunk size = 6 and tag = nothing
...testing rosenbrock_3 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_3),Float64}()
...testing rosenbrock_3 with chunk size = 12 and tag = nothing
...testing rosenbrock_3 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_3),Float64}()
...testing rosenbrock_3 with chunk size = 13 and tag = nothing
...testing rosenbrock_3 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_3),Float64}()
...testing rosenbrock_4 with chunk size = 1 and tag = nothing
...testing rosenbrock_4 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_4),Float64}()
...testing rosenbrock_4 with chunk size = 4 and tag = nothing
...testing rosenbrock_4 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_4),Float64}()
...testing rosenbrock_4 with chunk size = 6 and tag = nothing
...testing rosenbrock_4 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_4),Float64}()
...testing rosenbrock_4 with chunk size = 12 and tag = nothing
...testing rosenbrock_4 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_4),Float64}()
...testing rosenbrock_4 with chunk size = 13 and tag = nothing
...testing rosenbrock_4 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.rosenbrock_4),Float64}()
...testing ackley with chunk size = 1 and tag = nothing
...testing ackley with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.ackley),Float64}()
...testing ackley with chunk size = 4 and tag = nothing
...testing ackley with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.ackley),Float64}()
...testing ackley with chunk size = 6 and tag = nothing
...testing ackley with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.ackley),Float64}()
...testing ackley with chunk size = 12 and tag = nothing
...testing ackley with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.ackley),Float64}()
...testing ackley with chunk size = 13 and tag = nothing
...testing ackley with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.ackley),Float64}()
...testing self_weighted_logit with chunk size = 1 and tag = nothing
...testing self_weighted_logit with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.self_weighted_logit),Float64}()
...testing self_weighted_logit with chunk size = 4 and tag = nothing
...testing self_weighted_logit with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.self_weighted_logit),Float64}()
...testing self_weighted_logit with chunk size = 6 and tag = nothing
...testing self_weighted_logit with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.self_weighted_logit),Float64}()
...testing self_weighted_logit with chunk size = 12 and tag = nothing
...testing self_weighted_logit with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.self_weighted_logit),Float64}()
...testing self_weighted_logit with chunk size = 13 and tag = nothing
...testing self_weighted_logit with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.self_weighted_logit),Float64}()
...testing first with chunk size = 1 and tag = nothing
...testing first with chunk size = 1 and tag = ForwardDiff.Tag{typeof(first),Float64}()
...testing first with chunk size = 4 and tag = nothing
...testing first with chunk size = 4 and tag = ForwardDiff.Tag{typeof(first),Float64}()
...testing first with chunk size = 6 and tag = nothing
...testing first with chunk size = 6 and tag = ForwardDiff.Tag{typeof(first),Float64}()
...testing first with chunk size = 12 and tag = nothing
...testing first with chunk size = 12 and tag = ForwardDiff.Tag{typeof(first),Float64}()
...testing first with chunk size = 13 and tag = nothing
...testing first with chunk size = 13 and tag = ForwardDiff.Tag{typeof(first),Float64}()
...testing specialized StaticArray codepaths
Test Summary: | Pass Total
exponential function at base zero | 4 4
done (took 136.256088598 seconds).
Testing jacobian functionality...
...running hardcoded test with chunk size = 1 and tag = (nothing, nothing)
...running hardcoded test with chunk size = 1 and tag = (ForwardDiff.Tag{Main.JacobianTest.var"#3#4",Int64}(), ForwardDiff.Tag{Main.JacobianTest.var"#1#2",Int64}())
...running hardcoded test with chunk size = 2 and tag = (nothing, nothing)
...running hardcoded test with chunk size = 2 and tag = (ForwardDiff.Tag{Main.JacobianTest.var"#3#4",Int64}(), ForwardDiff.Tag{Main.JacobianTest.var"#1#2",Int64}())
...running hardcoded test with chunk size = 3 and tag = (nothing, nothing)
...running hardcoded test with chunk size = 3 and tag = (ForwardDiff.Tag{Main.JacobianTest.var"#3#4",Int64}(), ForwardDiff.Tag{Main.JacobianTest.var"#1#2",Int64}())
...testing - with chunk size = 1 and tag = nothing
...testing - with chunk size = 1 and tag = ForwardDiff.Tag{typeof(-),Float64}()
...testing - with chunk size = 4 and tag = nothing
...testing - with chunk size = 4 and tag = ForwardDiff.Tag{typeof(-),Float64}()
...testing - with chunk size = 6 and tag = nothing
...testing - with chunk size = 6 and tag = ForwardDiff.Tag{typeof(-),Float64}()
...testing - with chunk size = 12 and tag = nothing
...testing - with chunk size = 12 and tag = ForwardDiff.Tag{typeof(-),Float64}()
...testing - with chunk size = 13 and tag = nothing
...testing - with chunk size = 13 and tag = ForwardDiff.Tag{typeof(-),Float64}()
...testing chebyquad with chunk size = 1 and tag = nothing
...testing chebyquad with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad),Float64}()
...testing chebyquad with chunk size = 4 and tag = nothing
...testing chebyquad with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad),Float64}()
...testing chebyquad with chunk size = 6 and tag = nothing
...testing chebyquad with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad),Float64}()
...testing chebyquad with chunk size = 12 and tag = nothing
...testing chebyquad with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad),Float64}()
...testing chebyquad with chunk size = 13 and tag = nothing
...testing chebyquad with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad),Float64}()
...testing brown_almost_linear with chunk size = 1 and tag = nothing
...testing brown_almost_linear with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear),Float64}()
...testing brown_almost_linear with chunk size = 4 and tag = nothing
...testing brown_almost_linear with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear),Float64}()
...testing brown_almost_linear with chunk size = 6 and tag = nothing
...testing brown_almost_linear with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear),Float64}()
...testing brown_almost_linear with chunk size = 12 and tag = nothing
...testing brown_almost_linear with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear),Float64}()
...testing brown_almost_linear with chunk size = 13 and tag = nothing
...testing brown_almost_linear with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear),Float64}()
...testing trigonometric with chunk size = 1 and tag = nothing
...testing trigonometric with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric),Float64}()
...testing trigonometric with chunk size = 4 and tag = nothing
...testing trigonometric with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric),Float64}()
...testing trigonometric with chunk size = 6 and tag = nothing
...testing trigonometric with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric),Float64}()
...testing trigonometric with chunk size = 12 and tag = nothing
...testing trigonometric with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric),Float64}()
...testing trigonometric with chunk size = 13 and tag = nothing
...testing trigonometric with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric),Float64}()
...testing arr2arr_1 with chunk size = 1 and tag = nothing
...testing arr2arr_1 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_1),Float64}()
...testing arr2arr_1 with chunk size = 4 and tag = nothing
...testing arr2arr_1 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_1),Float64}()
...testing arr2arr_1 with chunk size = 6 and tag = nothing
...testing arr2arr_1 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_1),Float64}()
...testing arr2arr_1 with chunk size = 12 and tag = nothing
...testing arr2arr_1 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_1),Float64}()
...testing arr2arr_1 with chunk size = 13 and tag = nothing
...testing arr2arr_1 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_1),Float64}()
...testing arr2arr_2 with chunk size = 1 and tag = nothing
...testing arr2arr_2 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_2),Float64}()
...testing arr2arr_2 with chunk size = 4 and tag = nothing
...testing arr2arr_2 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_2),Float64}()
...testing arr2arr_2 with chunk size = 6 and tag = nothing
...testing arr2arr_2 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_2),Float64}()
...testing arr2arr_2 with chunk size = 12 and tag = nothing
...testing arr2arr_2 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_2),Float64}()
...testing arr2arr_2 with chunk size = 13 and tag = nothing
...testing arr2arr_2 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.arr2arr_2),Float64}()
...testing mutation_test_1 with chunk size = 1 and tag = nothing
...testing mutation_test_1 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1),Float64}()
...testing mutation_test_1 with chunk size = 4 and tag = nothing
...testing mutation_test_1 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1),Float64}()
...testing mutation_test_1 with chunk size = 6 and tag = nothing
...testing mutation_test_1 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1),Float64}()
...testing mutation_test_1 with chunk size = 12 and tag = nothing
...testing mutation_test_1 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1),Float64}()
...testing mutation_test_1 with chunk size = 13 and tag = nothing
...testing mutation_test_1 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1),Float64}()
...testing mutation_test_2 with chunk size = 1 and tag = nothing
...testing mutation_test_2 with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2),Float64}()
...testing mutation_test_2 with chunk size = 4 and tag = nothing
...testing mutation_test_2 with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2),Float64}()
...testing mutation_test_2 with chunk size = 6 and tag = nothing
...testing mutation_test_2 with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2),Float64}()
...testing mutation_test_2 with chunk size = 12 and tag = nothing
...testing mutation_test_2 with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2),Float64}()
...testing mutation_test_2 with chunk size = 13 and tag = nothing
...testing mutation_test_2 with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2),Float64}()
...testing identity with chunk size = 1 and tag = nothing
...testing identity with chunk size = 1 and tag = ForwardDiff.Tag{typeof(identity),Float64}()
...testing identity with chunk size = 4 and tag = nothing
...testing identity with chunk size = 4 and tag = ForwardDiff.Tag{typeof(identity),Float64}()
...testing identity with chunk size = 6 and tag = nothing
...testing identity with chunk size = 6 and tag = ForwardDiff.Tag{typeof(identity),Float64}()
...testing identity with chunk size = 12 and tag = nothing
...testing identity with chunk size = 12 and tag = ForwardDiff.Tag{typeof(identity),Float64}()
...testing identity with chunk size = 13 and tag = nothing
...testing identity with chunk size = 13 and tag = ForwardDiff.Tag{typeof(identity),Float64}()
...testing chebyquad! with chunk size = 1 and tag = nothing
...testing chebyquad! with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad!),Float64}()
...testing chebyquad! with chunk size = 4 and tag = nothing
...testing chebyquad! with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad!),Float64}()
...testing chebyquad! with chunk size = 6 and tag = nothing
...testing chebyquad! with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad!),Float64}()
...testing chebyquad! with chunk size = 12 and tag = nothing
...testing chebyquad! with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad!),Float64}()
...testing chebyquad! with chunk size = 13 and tag = nothing
...testing chebyquad! with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.chebyquad!),Float64}()
...testing brown_almost_linear! with chunk size = 1 and tag = nothing
...testing brown_almost_linear! with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear!),Float64}()
...testing brown_almost_linear! with chunk size = 4 and tag = nothing
...testing brown_almost_linear! with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear!),Float64}()
...testing brown_almost_linear! with chunk size = 6 and tag = nothing
...testing brown_almost_linear! with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear!),Float64}()
...testing brown_almost_linear! with chunk size = 12 and tag = nothing
...testing brown_almost_linear! with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear!),Float64}()
...testing brown_almost_linear! with chunk size = 13 and tag = nothing
...testing brown_almost_linear! with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.brown_almost_linear!),Float64}()
...testing trigonometric! with chunk size = 1 and tag = nothing
...testing trigonometric! with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric!),Float64}()
...testing trigonometric! with chunk size = 4 and tag = nothing
...testing trigonometric! with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric!),Float64}()
...testing trigonometric! with chunk size = 6 and tag = nothing
...testing trigonometric! with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric!),Float64}()
...testing trigonometric! with chunk size = 12 and tag = nothing
...testing trigonometric! with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric!),Float64}()
...testing trigonometric! with chunk size = 13 and tag = nothing
...testing trigonometric! with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.trigonometric!),Float64}()
...testing mutation_test_1! with chunk size = 1 and tag = nothing
...testing mutation_test_1! with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1!),Float64}()
...testing mutation_test_1! with chunk size = 4 and tag = nothing
...testing mutation_test_1! with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1!),Float64}()
...testing mutation_test_1! with chunk size = 6 and tag = nothing
...testing mutation_test_1! with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1!),Float64}()
...testing mutation_test_1! with chunk size = 12 and tag = nothing
...testing mutation_test_1! with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1!),Float64}()
...testing mutation_test_1! with chunk size = 13 and tag = nothing
...testing mutation_test_1! with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_1!),Float64}()
...testing mutation_test_2! with chunk size = 1 and tag = nothing
...testing mutation_test_2! with chunk size = 1 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2!),Float64}()
...testing mutation_test_2! with chunk size = 4 and tag = nothing
...testing mutation_test_2! with chunk size = 4 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2!),Float64}()
...testing mutation_test_2! with chunk size = 6 and tag = nothing
...testing mutation_test_2! with chunk size = 6 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2!),Float64}()
...testing mutation_test_2! with chunk size = 12 and tag = nothing
...testing mutation_test_2! with chunk size = 12 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2!),Float64}()
...testing mutation_test_2! with chunk size = 13 and tag = nothing
...testing mutation_test_2! with chunk size = 13 and tag = ForwardDiff.Tag{typeof(DiffTests.mutation_test_2!),Float64}()
...testing specialized StaticArray codepaths
done (took 113.976857237 seconds).
Testing hessian functionality...
...running hardcoded test with chunk size = 1 and tag = nothing
...running hardcoded test with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...running hardcoded test with chunk size = 2 and tag = nothing
...running hardcoded test with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...running hardcoded test with chunk size = 3 and tag = nothing
...running hardcoded test with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_1 with chunk size = 1 and tag = nothing
...testing vec2num_1 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_1),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_1 with chunk size = 2 and tag = nothing
...testing vec2num_1 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_1),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_1 with chunk size = 3 and tag = nothing
...testing vec2num_1 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_1),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_2 with chunk size = 1 and tag = nothing
...testing vec2num_2 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_2),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_2 with chunk size = 2 and tag = nothing
...testing vec2num_2 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_2),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_2 with chunk size = 3 and tag = nothing
...testing vec2num_2 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_2),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_3 with chunk size = 1 and tag = nothing
...testing vec2num_3 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_3),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_3 with chunk size = 2 and tag = nothing
...testing vec2num_3 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_3),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_3 with chunk size = 3 and tag = nothing
...testing vec2num_3 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_3),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_4 with chunk size = 1 and tag = nothing
...testing vec2num_4 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_4),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_4 with chunk size = 2 and tag = nothing
...testing vec2num_4 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_4),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_4 with chunk size = 3 and tag = nothing
...testing vec2num_4 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_4),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_5 with chunk size = 1 and tag = nothing
...testing vec2num_5 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_5),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_5 with chunk size = 2 and tag = nothing
...testing vec2num_5 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_5),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_5 with chunk size = 3 and tag = nothing
...testing vec2num_5 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_5),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_6 with chunk size = 1 and tag = nothing
...testing vec2num_6 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_6),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_6 with chunk size = 2 and tag = nothing
...testing vec2num_6 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_6),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_6 with chunk size = 3 and tag = nothing
...testing vec2num_6 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_6),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_7 with chunk size = 1 and tag = nothing
...testing vec2num_7 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_7),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_7 with chunk size = 2 and tag = nothing
...testing vec2num_7 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_7),typeof(ForwardDiff.gradient)},Float64}()
...testing vec2num_7 with chunk size = 3 and tag = nothing
...testing vec2num_7 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.vec2num_7),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_1 with chunk size = 1 and tag = nothing
...testing rosenbrock_1 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_1 with chunk size = 2 and tag = nothing
...testing rosenbrock_1 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_1 with chunk size = 3 and tag = nothing
...testing rosenbrock_1 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_1),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_2 with chunk size = 1 and tag = nothing
...testing rosenbrock_2 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_2),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_2 with chunk size = 2 and tag = nothing
...testing rosenbrock_2 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_2),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_2 with chunk size = 3 and tag = nothing
...testing rosenbrock_2 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_2),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_3 with chunk size = 1 and tag = nothing
...testing rosenbrock_3 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_3),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_3 with chunk size = 2 and tag = nothing
...testing rosenbrock_3 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_3),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_3 with chunk size = 3 and tag = nothing
...testing rosenbrock_3 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_3),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_4 with chunk size = 1 and tag = nothing
...testing rosenbrock_4 with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_4),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_4 with chunk size = 2 and tag = nothing
...testing rosenbrock_4 with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_4),typeof(ForwardDiff.gradient)},Float64}()
...testing rosenbrock_4 with chunk size = 3 and tag = nothing
...testing rosenbrock_4 with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.rosenbrock_4),typeof(ForwardDiff.gradient)},Float64}()
...testing ackley with chunk size = 1 and tag = nothing
...testing ackley with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.ackley),typeof(ForwardDiff.gradient)},Float64}()
...testing ackley with chunk size = 2 and tag = nothing
...testing ackley with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.ackley),typeof(ForwardDiff.gradient)},Float64}()
...testing ackley with chunk size = 3 and tag = nothing
...testing ackley with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.ackley),typeof(ForwardDiff.gradient)},Float64}()
...testing self_weighted_logit with chunk size = 1 and tag = nothing
...testing self_weighted_logit with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.self_weighted_logit),typeof(ForwardDiff.gradient)},Float64}()
...testing self_weighted_logit with chunk size = 2 and tag = nothing
...testing self_weighted_logit with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.self_weighted_logit),typeof(ForwardDiff.gradient)},Float64}()
...testing self_weighted_logit with chunk size = 3 and tag = nothing
...testing self_weighted_logit with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(DiffTests.self_weighted_logit),typeof(ForwardDiff.gradient)},Float64}()
...testing first with chunk size = 1 and tag = nothing
...testing first with chunk size = 1 and tag = ForwardDiff.Tag{Tuple{typeof(first),typeof(ForwardDiff.gradient)},Float64}()
...testing first with chunk size = 2 and tag = nothing
...testing first with chunk size = 2 and tag = ForwardDiff.Tag{Tuple{typeof(first),typeof(ForwardDiff.gradient)},Float64}()
...testing first with chunk size = 3 and tag = nothing
...testing first with chunk size = 3 and tag = ForwardDiff.Tag{Tuple{typeof(first),typeof(ForwardDiff.gradient)},Float64}()
...testing specialized StaticArray codepaths
done (took 222.013037527 seconds).
Testing perturbation confusion functionality...
done (took 9.96478855 seconds).
Testing miscellaneous functionality...
done (took 20.303971646 seconds).
Testing SIMD vectorization...
Test Summary: | Pass Total
SIMD ForwardDiff.Dual{Nothing,Float64,3} | 10 10
Test Summary: | Pass Total
SIMD ForwardDiff.Dual{Nothing,Float64,4} | 10 10
SIMD ForwardDiff.Dual{Nothing,ForwardDiff.Dual{Nothing,Float64,1},1}: Test Failed at /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/test/SIMDTest.jl:33
Expression: occursin(r"fadd \<.*?x double\>", div_bitcode)
Evaluated: occursin(r"fadd \<.*?x double\>", "\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:134 within `/'\ndefine void @\"julia_/_521\"({ { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* noalias nocapture sret, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* nocapture nonnull readonly dereferenceable(32), { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* nocapture nonnull readonly dereferenceable(32)) {\ntop:\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:423\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; │┌ @ Base.jl:33 within `getproperty'\n %3 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 0, i32 0\n %4 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 0, i32 0\n; └└\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 @ float.jl:407\n %5 = load double, double addrspace(11)* %3, align 8\n %6 = load double, double addrspace(11)* %4, align 8\n %7 = fdiv double %5, %6\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │┌ @ number.jl:199 within `inv'\n; ││┌ @ float.jl:407 within `/'\n %8 = fdiv double 1.000000e+00, %6\n; │└└\n; │┌ @ float.jl:405 within `*'\n %9 = fmul double %6, %6\n; │└\n; │┌ @ float.jl:407 within `/'\n %10 = fdiv double %5, %9\n; │└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││┌ @ tuple.jl:24 within `getindex'\n %11 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 0, i32 1, i64 0, i64 0\n; ││││└\n; ││││┌ @ float.jl:405 within `*'\n %12 = load double, double addrspace(11)* %11, align 8\n %13 = fmul double %8, %12\n; ││││└\n; ││││┌ @ tuple.jl:24 within `getindex'\n %14 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 0, i32 1, i64 0, i64 0\n; ││││└\n; ││││┌ @ float.jl:405 within `*'\n %15 = load double, double addrspace(11)* %14, align 8\n %16 = fmul double %10, %15\n; ││││└\n; ││││┌ @ float.jl:401 within `+'\n %17 = fsub double %13, %16\n; └└└└└\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/'\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:203 within `inv'\n; ││┌ @ number.jl:133 within `abs2'\n; │││┌ @ float.jl:405 within `*'\n %18 = fmul double %8, %8\n; ││└└\n; ││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:204 within `inv'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:84 within `*' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:111\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:201 within `scale_tuple'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││┌ @ float.jl:405 within `*'\n %19 = fmul double %15, %18\n; │└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││┌ @ float.jl:405 within `*'\n %20 = fmul double %15, %6\n; │││││└\n; │││││┌ @ float.jl:401 within `+'\n %21 = fadd double %20, %20\n; │└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │││┌ @ number.jl:199 within `inv'\n; ││││┌ @ float.jl:407 within `/'\n %22 = fdiv double 1.000000e+00, %9\n; │││└└\n; │││┌ @ float.jl:405 within `*'\n %23 = fmul double %9, %9\n; │││└\n; │││┌ @ float.jl:407 within `/'\n %24 = fdiv double %5, %23\n; │││└\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││┌ @ float.jl:405 within `*'\n %25 = fmul double %22, %12\n %26 = fmul double %21, %24\n; ││││││└\n; ││││││┌ @ float.jl:401 within `+'\n %27 = fsub double %25, %26\n; │└└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:407 within `-' @ float.jl:393\n %28 = fsub double -0.000000e+00, %10\n; │└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:232 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; ││││││┌ @ Base.jl:33 within `getproperty'\n %29 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 1, i64 0, i64 0, i32 0\n; │││││└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:233 within `*' @ float.jl:405\n %30 = load double, double addrspace(11)* %29, align 8\n %31 = fmul double %8, %30\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││││┌ @ float.jl:405 within `*'\n %32 = fmul double %19, %30\n; ││││││││└\n; ││││││││┌ @ tuple.jl:24 within `getindex'\n %33 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n; ││││││││└\n; ││││││││┌ @ float.jl:405 within `*'\n %34 = load double, double addrspace(11)* %33, align 8\n %35 = fmul double %8, %34\n; ││││││││└\n; ││││││││┌ @ float.jl:401 within `+'\n %36 = fsub double %35, %32\n; │││││└└└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:232 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; ││││││┌ @ Base.jl:33 within `getproperty'\n %37 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 1, i64 0, i64 0, i32 0\n; │││││└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:233 within `*' @ float.jl:405\n %38 = load double, double addrspace(11)* %37, align 8\n %39 = fmul double %38, %28\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││││┌ @ float.jl:405 within `*'\n %40 = fmul double %27, %38\n; ││││││││└\n; ││││││││┌ @ tuple.jl:24 within `getindex'\n %41 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n; ││││││││└\n; ││││││││┌ @ float.jl:405 within `*'\n %42 = load double, double addrspace(11)* %41, align 8\n %43 = fmul double %42, %28\n; ││││││││└\n; ││││││││┌ @ float.jl:401 within `+'\n %44 = fsub double %43, %40\n; ││││└└└└└\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:391 within `+' @ float.jl:401\n %45 = fadd double %31, %39\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:391 within `+' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:81\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:209 within `add_tuples'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││││┌ @ float.jl:401 within `+'\n %46 = fadd double %36, %44\n; └└└└└└└└\n %.sroa.0.sroa.019.0..sroa.0.0..sroa_cast.sroa_idx = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 0, i32 0\n store double %7, double* %.sroa.0.sroa.019.0..sroa.0.0..sroa_cast.sroa_idx, align 8\n %.sroa.0.sroa.220.0..sroa.0.0..sroa_cast.sroa_idx21 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 0, i32 1, i64 0, i64 0\n store double %17, double* %.sroa.0.sroa.220.0..sroa.0.0..sroa_cast.sroa_idx21, align 8\n %.sroa.211.0..sroa_idx12 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 1, i64 0, i64 0, i32 0\n store double %45, double* %.sroa.211.0..sroa_idx12, align 8\n %.sroa.3.0..sroa_idx13 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n store double %46, double* %.sroa.3.0..sroa_idx13, align 8\n ret void\n}\n")
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/test/SIMDTest.jl:33
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1188
[3] include(::Function, ::Module, ::String) at ./Base.jl:380
[4] include(::Module, ::String) at ./Base.jl:368
[5] exec_options(::Base.JLOptions) at ./client.jl:288
[6] _start() at ./client.jl:490
SIMD ForwardDiff.Dual{Nothing,ForwardDiff.Dual{Nothing,Float64,1},1}: Test Failed at /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/test/SIMDTest.jl:34
Expression: occursin(r"fmul \<.*?x double\>", div_bitcode)
Evaluated: occursin(r"fmul \<.*?x double\>", "\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:134 within `/'\ndefine void @\"julia_/_521\"({ { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* noalias nocapture sret, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* nocapture nonnull readonly dereferenceable(32), { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* nocapture nonnull readonly dereferenceable(32)) {\ntop:\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:423\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; │┌ @ Base.jl:33 within `getproperty'\n %3 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 0, i32 0\n %4 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 0, i32 0\n; └└\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 @ float.jl:407\n %5 = load double, double addrspace(11)* %3, align 8\n %6 = load double, double addrspace(11)* %4, align 8\n %7 = fdiv double %5, %6\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │┌ @ number.jl:199 within `inv'\n; ││┌ @ float.jl:407 within `/'\n %8 = fdiv double 1.000000e+00, %6\n; │└└\n; │┌ @ float.jl:405 within `*'\n %9 = fmul double %6, %6\n; │└\n; │┌ @ float.jl:407 within `/'\n %10 = fdiv double %5, %9\n; │└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││┌ @ tuple.jl:24 within `getindex'\n %11 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 0, i32 1, i64 0, i64 0\n; ││││└\n; ││││┌ @ float.jl:405 within `*'\n %12 = load double, double addrspace(11)* %11, align 8\n %13 = fmul double %8, %12\n; ││││└\n; ││││┌ @ tuple.jl:24 within `getindex'\n %14 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 0, i32 1, i64 0, i64 0\n; ││││└\n; ││││┌ @ float.jl:405 within `*'\n %15 = load double, double addrspace(11)* %14, align 8\n %16 = fmul double %10, %15\n; ││││└\n; ││││┌ @ float.jl:401 within `+'\n %17 = fsub double %13, %16\n; └└└└└\n; @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/'\n; ┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:203 within `inv'\n; ││┌ @ number.jl:133 within `abs2'\n; │││┌ @ float.jl:405 within `*'\n %18 = fmul double %8, %8\n; ││└└\n; ││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:204 within `inv'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:84 within `*' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:111\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:201 within `scale_tuple'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││┌ @ float.jl:405 within `*'\n %19 = fmul double %15, %18\n; │└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││┌ @ float.jl:405 within `*'\n %20 = fmul double %15, %6\n; │││││└\n; │││││┌ @ float.jl:401 within `+'\n %21 = fadd double %20, %20\n; │└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:424 within `/'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:87 within `_div_partials'\n; │││┌ @ number.jl:199 within `inv'\n; ││││┌ @ float.jl:407 within `/'\n %22 = fdiv double 1.000000e+00, %9\n; │││└└\n; │││┌ @ float.jl:405 within `*'\n %23 = fmul double %9, %9\n; │││└\n; │││┌ @ float.jl:407 within `/'\n %24 = fdiv double %5, %23\n; │││└\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││┌ @ float.jl:405 within `*'\n %25 = fmul double %22, %12\n %26 = fmul double %21, %24\n; ││││││└\n; ││││││┌ @ float.jl:401 within `+'\n %27 = fsub double %25, %26\n; │└└└└└└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:407 within `-' @ float.jl:393\n %28 = fsub double -0.000000e+00, %10\n; │└\n; │┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:232 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; ││││││┌ @ Base.jl:33 within `getproperty'\n %29 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 1, i64 0, i64 0, i32 0\n; │││││└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:233 within `*' @ float.jl:405\n %30 = load double, double addrspace(11)* %29, align 8\n %31 = fmul double %8, %30\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││││┌ @ float.jl:405 within `*'\n %32 = fmul double %19, %30\n; ││││││││└\n; ││││││││┌ @ tuple.jl:24 within `getindex'\n %33 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %1, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n; ││││││││└\n; ││││││││┌ @ float.jl:405 within `*'\n %34 = load double, double addrspace(11)* %33, align 8\n %35 = fmul double %8, %34\n; ││││││││└\n; ││││││││┌ @ float.jl:401 within `+'\n %36 = fsub double %35, %32\n; │││││└└└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:232 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:81 within `value'\n; ││││││┌ @ Base.jl:33 within `getproperty'\n %37 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 1, i64 0, i64 0, i32 0\n; │││││└└\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:233 within `*' @ float.jl:405\n %38 = load double, double addrspace(11)* %37, align 8\n %39 = fmul double %38, %28\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:234 within `*'\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:119 within `_mul_partials'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:221 within `mul_tuples'\n; │││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; ││││││││┌ @ float.jl:405 within `*'\n %40 = fmul double %27, %38\n; ││││││││└\n; ││││││││┌ @ tuple.jl:24 within `getindex'\n %41 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] } addrspace(11)* %2, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n; ││││││││└\n; ││││││││┌ @ float.jl:405 within `*'\n %42 = load double, double addrspace(11)* %41, align 8\n %43 = fmul double %42, %28\n; ││││││││└\n; ││││││││┌ @ float.jl:401 within `+'\n %44 = fsub double %43, %40\n; ││││└└└└└\n; ││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:391 within `+' @ float.jl:401\n %45 = fadd double %31, %39\n; │││││ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/dual.jl:391 within `+' @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:81\n; │││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:209 within `add_tuples'\n; ││││││┌ @ /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/src/partials.jl:157 within `macro expansion'\n; │││││││┌ @ float.jl:401 within `+'\n %46 = fadd double %36, %44\n; └└└└└└└└\n %.sroa.0.sroa.019.0..sroa.0.0..sroa_cast.sroa_idx = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 0, i32 0\n store double %7, double* %.sroa.0.sroa.019.0..sroa.0.0..sroa_cast.sroa_idx, align 8\n %.sroa.0.sroa.220.0..sroa.0.0..sroa_cast.sroa_idx21 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 0, i32 1, i64 0, i64 0\n store double %17, double* %.sroa.0.sroa.220.0..sroa.0.0..sroa_cast.sroa_idx21, align 8\n %.sroa.211.0..sroa_idx12 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 1, i64 0, i64 0, i32 0\n store double %45, double* %.sroa.211.0..sroa_idx12, align 8\n %.sroa.3.0..sroa_idx13 = getelementptr inbounds { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }, { { double, [1 x [1 x double]] }, [1 x [1 x { double, [1 x [1 x double]] }]] }* %0, i64 0, i32 1, i64 0, i64 0, i32 1, i64 0, i64 0\n store double %46, double* %.sroa.3.0..sroa_idx13, align 8\n ret void\n}\n")
Stacktrace:
[1] top-level scope at /home/pkgeval/.julia/packages/ForwardDiff/vt5F1/test/SIMDTest.jl:34
[2] top-level scope at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:1188