-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1.6.0-DEV-bac321d949.log
1833 lines (1821 loc) · 79.9 KB
/
1.6.0-DEV-bac321d949.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
Current time is 2020-10-26T09:59:44.123
Julia Version 1.6.0-DEV.1331
Commit bac321d949 (2020-10-25 22:53 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
JULIA_PKG_SERVER =
Starting installation at 2020-10-26T09:59:46.640
Resolving package versions...
Installed CodecBzip2 ─────────── v0.7.2
Installed ZipFile ────────────── v0.9.3
Installed PolynomialRoots ────── v1.0.0
Installed GenericLinearAlgebra ─ v0.2.4
Installed JSON ───────────────── v0.21.1
Installed MbedTLS ────────────── v1.0.2
Installed IterativeSolvers ───── v0.8.4
Installed Hypatia ────────────── v0.1.1
Installed Zlib_jll ───────────── v1.2.11+18
Installed Bzip2_jll ──────────── v1.0.6+5
Installed Requires ───────────── v1.1.0
Installed JLLWrappers ────────── v1.1.3
Installed LinearMaps ─────────── v2.7.0
Installed BenchmarkTools ─────── v0.5.0
Installed MutableArithmetics ─── v0.2.10
Installed MbedTLS_jll ────────── v2.16.8+0
Installed JSONSchema ─────────── v0.3.2
Installed Parsers ────────────── v1.0.11
Installed MathOptInterface ───── v0.9.17
Installed RecipesBase ────────── v1.1.0
Installed OrderedCollections ─── v1.3.1
Installed CodecZlib ──────────── v0.7.0
Installed IniFile ────────────── v0.5.0
Installed TranscodingStreams ─── v0.9.5
Installed HTTP ───────────────── v0.8.19
Installed Combinatorics ──────── v1.0.2
Updating `~/.julia/environments/v1.6/Project.toml`
[b99e6be6] + Hypatia v0.1.1
Updating `~/.julia/environments/v1.6/Manifest.toml`
[6e4b80f9] + BenchmarkTools v0.5.0
[523fee87] + CodecBzip2 v0.7.2
[944b1d66] + CodecZlib v0.7.0
[861a8166] + Combinatorics v1.0.2
[14197337] + GenericLinearAlgebra v0.2.4
[cd3eb016] + HTTP v0.8.19
[b99e6be6] + Hypatia v0.1.1
[83e8ac13] + IniFile v0.5.0
[42fd0dbc] + IterativeSolvers v0.8.4
[692b3bcd] + JLLWrappers v1.1.3
[682c06a0] + JSON v0.21.1
[7d188eb4] + JSONSchema v0.3.2
[7a12625a] + LinearMaps v2.7.0
[b8f27783] + MathOptInterface v0.9.17
[739be429] + MbedTLS v1.0.2
[d8a4904e] + MutableArithmetics v0.2.10
[bac558e1] + OrderedCollections v1.3.1
[69de0a69] + Parsers v1.0.11
[3a141323] + PolynomialRoots v1.0.0
[3cdcf5f2] + RecipesBase v1.1.0
[ae029012] + Requires v1.1.0
[3bb67fe8] + TranscodingStreams v0.9.5
[a5390f91] + ZipFile v0.9.3
[6e34b625] + Bzip2_jll v1.0.6+5
[c8ffd9c3] + MbedTLS_jll v2.16.8+0
[83775a58] + Zlib_jll v1.2.11+18
[0dad84c5] + ArgTools
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[f43a241f] + Downloads
[b77e0a4c] + InteractiveUtils
[b27032c2] + LibCURL
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[4607b0f0] + SuiteSparse
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
[deac9b47] + LibCURL_jll
[14a3606d] + MozillaCACerts_jll
Precompiling project... (tip: to disable auto-precompilation set ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0)
[32m ✓ [39m[90mRecipesBase[39m
[32m ✓ [39m[90mIniFile[39m
[32m ✓ [39m[90mRequires[39m
[32m ✓ [39m[90mJLLWrappers[39m
[32m ✓ [39m[90mOrderedCollections[39m
[32m ✓ [39m[90mPolynomialRoots[39m
[32m ✓ [39m[90mTranscodingStreams[39m
[32m ✓ [39m[90mCombinatorics[39m
[32m ✓ [39m[90mGenericLinearAlgebra[39m
[32m ✓ [39m[90mMbedTLS_jll[39m
[32m ✓ [39m[90mBzip2_jll[39m
[32m ✓ [39m[90mZlib_jll[39m
[32m ✓ [39m[90mIterativeSolvers[39m
[32m ✓ [39m[90mMbedTLS[39m
[32m ✓ [39m[90mLinearMaps[39m
[32m ✓ [39m[90mParsers[39m
[32m ✓ [39m[90mHTTP[39m
[32m ✓ [39m[90mCodecBzip2[39m
[32m ✓ [39m[90mZipFile[39m
[32m ✓ [39m[90mMutableArithmetics[39m
[91m ✗ [39m[90mCodecZlib[39m
[32m ✓ [39m[90mJSON[39m
[32m ✓ [39m[90mBenchmarkTools[39m
[32m ✓ [39m[90mJSONSchema[39m
[91m ✗ [39m[90mMathOptInterface[39m
[91m ✗ [39mHypatia
23 dependencies successfully precompiled, 3 errored
Starting tests at 2020-10-26T10:03:34.591
Testing Hypatia
Status `/tmp/jl_hTP4CW/Project.toml`
[336ed68f] CSV v0.7.7
[861a8166] Combinatorics v1.0.2
[a93c6f00] DataFrames v0.21.8
[864edb3b] DataStructures v0.18.8
[31c24e10] Distributions v0.24.1
[7c1d4256] DynamicPolynomials v0.3.14
[92c85e6c] GSL v1.0.0
[14197337] GenericLinearAlgebra v0.2.4
[b99e6be6] Hypatia v0.1.1
[42fd0dbc] IterativeSolvers v0.8.4
[4076af6c] JuMP v0.21.5
[7a12625a] LinearMaps v2.7.0
[b8f27783] MathOptInterface v0.9.17
[ddf597a6] PolyJuMP v0.4.1
[3a141323] PolynomialRoots v1.0.0
[ae029012] Requires v1.1.0
[8e049039] SemialgebraicSets v0.2.2
[4b9e565b] SumOfSquares v0.4.2
[8bb1440f] DelimitedFiles
[37e2e46d] LinearAlgebra
[de0858da] Printf
[9a3f8284] Random
[2f01184e] SparseArrays
[4607b0f0] SuiteSparse
[8dfed614] Test
Status `/tmp/jl_hTP4CW/Manifest.toml`
[6e4b80f9] BenchmarkTools v0.5.0
[336ed68f] CSV v0.7.7
[49dc2e85] Calculus v0.5.1
[324d7699] CategoricalArrays v0.8.3
[523fee87] CodecBzip2 v0.7.2
[944b1d66] CodecZlib v0.7.0
[861a8166] Combinatorics v1.0.2
[bbf7d656] CommonSubexpressions v0.3.0
[34da2185] Compat v3.22.0
[9a962f9c] DataAPI v1.3.0
[a93c6f00] DataFrames v0.21.8
[864edb3b] DataStructures v0.18.8
[e2d170a0] DataValueInterfaces v1.0.0
[163ba53b] DiffResults v1.0.2
[b552c78f] DiffRules v1.0.1
[31c24e10] Distributions v0.24.1
[7c1d4256] DynamicPolynomials v0.3.14
[1a297f60] FillArrays v0.9.7
[f6369f11] ForwardDiff v0.10.12
[92c85e6c] GSL v1.0.0
[14197337] GenericLinearAlgebra v0.2.4
[cd3eb016] HTTP v0.8.19
[b99e6be6] Hypatia v0.1.1
[83e8ac13] IniFile v0.5.0
[41ab1584] InvertedIndices v1.0.0
[42fd0dbc] IterativeSolvers v0.8.4
[82899510] IteratorInterfaceExtensions v1.0.0
[692b3bcd] JLLWrappers v1.1.3
[682c06a0] JSON v0.21.1
[7d188eb4] JSONSchema v0.3.2
[4076af6c] JuMP v0.21.5
[7a12625a] LinearMaps v2.7.0
[1914dd2f] MacroTools v0.5.6
[b8f27783] MathOptInterface v0.9.17
[739be429] MbedTLS v1.0.2
[e1d29d7a] Missings v0.4.4
[be282fd4] MultivariateBases v0.1.2
[f4abf1af] MultivariateMoments v0.3.3
[102ac46a] MultivariatePolynomials v0.3.11
[d8a4904e] MutableArithmetics v0.2.10
[77ba4419] NaNMath v0.3.4
[bac558e1] OrderedCollections v1.3.1
[90014a1f] PDMats v0.10.1
[69de0a69] Parsers v1.0.11
[ddf597a6] PolyJuMP v0.4.1
[3a141323] PolynomialRoots v1.0.0
[2dfb63ee] PooledArrays v0.5.3
[1fd47b50] QuadGK v2.4.1
[3cdcf5f2] RecipesBase v1.1.0
[189a3867] Reexport v0.2.0
[ae029012] Requires v1.1.0
[79098fc4] Rmath v0.6.1
[af85af4c] RowEchelon v0.2.1
[8e049039] SemialgebraicSets v0.2.2
[91c51154] SentinelArrays v1.2.16
[a2af1166] SortingAlgorithms v0.3.1
[276daf66] SpecialFunctions v0.10.3
[90137ffa] StaticArrays v0.12.4
[2913bbd2] StatsBase v0.33.2
[4c63d2b9] StatsFuns v0.9.5
[856f2bd8] StructTypes v1.1.0
[4b9e565b] SumOfSquares v0.4.2
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.1.0
[3bb67fe8] TranscodingStreams v0.9.5
[a5390f91] ZipFile v0.9.3
[6e34b625] Bzip2_jll v1.0.6+5
[e66e0078] CompilerSupportLibraries_jll v0.3.4+0
[1b77fbbe] GSL_jll v2.6.0+3
[c8ffd9c3] MbedTLS_jll v2.16.8+0
[efe28fd5] OpenSpecFun_jll v0.5.3+4
[f50d1b31] Rmath_jll v0.2.2+1
[83775a58] Zlib_jll v1.2.11+18
[0dad84c5] ArgTools
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[f43a241f] Downloads
[9fa8497b] Future
[b77e0a4c] InteractiveUtils
[b27032c2] LibCURL
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[4607b0f0] SuiteSparse
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
[deac9b47] LibCURL_jll
[14a3606d] MozillaCACerts_jll
Testing Running tests...
[ Info: starting all tests
[ Info: starting modelutilities tests
Float64 ...
1.88e+01 seconds
Float32 ...
1.36e+01 seconds
BigFloat ...
1.87e+01 seconds
[ Info: finished modelutilities tests in 5.42e+01 seconds
[ Info: starting barrier tests
nonnegative: Float64 ...
5.14e+00 seconds
nonnegative: Float32 ...
5.05e+00 seconds
nonnegative: BigFloat ...
5.02e+00 seconds
epinorminf: Float64 ...
2.66e+01 seconds
epinorminf: Float32 ...
2.27e+01 seconds
epinorminf: BigFloat ...
1.89e+01 seconds
epinormeucl: Float64 ...
5.33e+00 seconds
epinormeucl: Float32 ...
5.95e+00 seconds
epinormeucl: BigFloat ...
8.07e+00 seconds
epipersquare: Float64 ...
5.57e+00 seconds
epipersquare: Float32 ...
9.13e+00 seconds
epipersquare: BigFloat ...
3.97e+00 seconds
episumperentropy: Float64 ...
2.57e+01 seconds
episumperentropy: Float32 ...
2.76e+01 seconds
episumperentropy: BigFloat ...
2.83e+01 seconds
hypoperlog: Float64 ...
1.02e+01 seconds
hypoperlog: Float32 ...
1.03e+01 seconds
hypoperlog: BigFloat ...
1.57e+01 seconds
power: Float64 ...
9.36e+00 seconds
power: Float32 ...
9.11e+00 seconds
power: BigFloat ...
7.41e+00 seconds
hypopowermean: Float64 ...
1.02e+01 seconds
hypopowermean: Float32 ...
8.75e+00 seconds
hypopowermean: BigFloat ...
1.17e+01 seconds
hypogeomean: Float64 ...
4.05e+00 seconds
hypogeomean: Float32 ...
4.39e+00 seconds
hypogeomean: BigFloat ...
4.81e+00 seconds
epinormspectral: Float64 ...
2.44e+01 seconds
epinormspectral: Float32 ...
2.35e+01 seconds
epinormspectral: BigFloat ...
2.43e+01 seconds
linmatrixineq: Float64 ...
1.68e+01 seconds
linmatrixineq: Float32 ...
1.66e+01 seconds
linmatrixineq: BigFloat ...
1.41e-02 seconds
possemideftri: Float64 ...
5.33e+00 seconds
possemideftri: Float32 ...
6.71e+00 seconds
possemideftri: BigFloat ...
1.18e+01 seconds
possemideftrisparse: Float64 ...
1.80e+02 seconds
possemideftrisparse: Float32 ...
1.93e+02 seconds
possemideftrisparse: BigFloat ...
7.75e-02 seconds
doublynonnegativetri: Float64 ...
1.41e+01 seconds
doublynonnegativetri: Float32 ...
1.31e+01 seconds
doublynonnegativetri: BigFloat ...
1.49e+01 seconds
matrixepipersquare: Float64 ...
6.22e+01 seconds
matrixepipersquare: Float32 ...
4.68e+01 seconds
matrixepipersquare: BigFloat ...
4.09e+01 seconds
hypoperlogdettri: Float64 ...
2.20e+01 seconds
hypoperlogdettri: Float32 ...
2.31e+01 seconds
hypoperlogdettri: BigFloat ...
2.47e+01 seconds
hyporootdettri: Float64 ...
3.38e+01 seconds
hyporootdettri: Float32 ...
3.39e+01 seconds
hyporootdettri: BigFloat ...
4.45e+01 seconds
wsosinterpnonnegative: Float64 ...
4.62e+00 seconds
wsosinterpnonnegative: Float32 ...
4.41e+00 seconds
wsosinterpnonnegative: BigFloat ...
4.43e+00 seconds
wsosinterpepinormone: Float64 ...
1.54e+01 seconds
wsosinterpepinormone: Float32 ...
1.52e+01 seconds
wsosinterpepinormone: BigFloat ...
2.84e+01 seconds
wsosinterpepinormeucl: Float64 ...
9.53e+00 seconds
wsosinterpepinormeucl: Float32 ...
9.77e+00 seconds
wsosinterpepinormeucl: BigFloat ...
1.12e+01 seconds
wsosinterppossemideftri: Float64 ...
1.83e+01 seconds
wsosinterppossemideftri: Float32 ...
1.96e+01 seconds
wsosinterppossemideftri: BigFloat ...
1.98e+01 seconds
[ Info: finished barrier tests in 1.35e+03 seconds
[ Info: starting native tests
┌ Warning: Module MutableArithmetics with build ID 559149605232641 is missing from the cache.
│ This may mean MutableArithmetics [d8a4904e-b15c-11e9-3269-09a3773c0cb0] does not support precompilation but is imported by a module that does.
└ @ Base loading.jl:1020
┌ Warning: Module MutableArithmetics with build ID 559149605232641 is missing from the cache.
│ This may mean MutableArithmetics [d8a4904e-b15c-11e9-3269-09a3773c0cb0] does not support precompilation but is imported by a module that does.
└ @ Base loading.jl:1020
┌ Warning: Module MutableArithmetics with build ID 559149605232641 is missing from the cache.
│ This may mean MutableArithmetics [d8a4904e-b15c-11e9-3269-09a3773c0cb0] does not support precompilation but is imported by a module that does.
└ @ Base loading.jl:1020
starting default options tests
dimension1 Float64 ...
7.94e+01 seconds
consistent1 Float64 ...
6.85e+00 seconds
inconsistent1 Float64 ...
8.65e-01 seconds
inconsistent2 Float64 ...
6.26e-01 seconds
primalinfeas1 Float64 ...
2.67e+00 seconds
primalinfeas2 Float64 ...
1.08e+01 seconds
primalinfeas3 Float64 ...
2.79e+00 seconds
dualinfeas1 Float64 ...
2.24e+00 seconds
dualinfeas2 Float64 ...
4.72e+00 seconds
dualinfeas3 Float64 ...
2.41e+00 seconds
nonnegative1 Float64 ...
1.85e+01 seconds
nonnegative2 Float64 ...
nonnegative2 Float64 : Test Failed at /home/pkgeval/.julia/packages/Hypatia/JHymW/test/nativeinstances.jl:190
Expression: r.status == Solvers.Optimal
Evaluated: Hypatia.Solvers.DualInfeasible == Hypatia.Solvers.Optimal
Stacktrace:
[1] nonnegative2(T::Type{Float64}; options::Base.Iterators.Pairs{Symbol, Hypatia.Solvers.Solver{Float64}, Tuple{Symbol}, NamedTuple{(:solver,), Tuple{Hypatia.Solvers.Solver{Float64}}}})
@ Main ~/.julia/packages/Hypatia/JHymW/test/nativeinstances.jl:190
[2] macro expansion
@ ./timing.jl:266 [inlined]
[3] macro expansion
@ ~/.julia/packages/Hypatia/JHymW/test/runnativetests.jl:43 [inlined]
[4] macro expansion
@ /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
[5] test_instance_solver(inst_name::String, T::Type{Float64}, options::NamedTuple{(:verbose, :default_tol_relax), Tuple{Bool, Int64}}, test_info::String)
@ Main ~/.julia/packages/Hypatia/JHymW/test/runnativetests.jl:41
6.01e+00 seconds
nonnegative3 Float64 ...
1.83e+00 seconds
nonnegative4 Float64 ...
1.92e+00 seconds
epinorminf1 Float64 ...
1.68e+01 seconds
epinorminf2 Float64 ...
2.82e+00 seconds
epinorminf3 Float64 ...
4.45e+00 seconds
epinorminf4 Float64 ...
4.38e-01 seconds
epinorminf5 Float64 ...
3.63e-01 seconds
epinorminf6 Float64 ...
1.65e+01 seconds
epinorminf7 Float64 ...
2.04e+00 seconds
epinorminf8 Float64 ...
1.22e+00 seconds
epinormeucl1 Float64 ...
5.64e-01 seconds
epinormeucl2 Float64 ...
2.10e-01 seconds
epinormeucl3 Float64 ...
1.36e-01 seconds
epipersquare1 Float64 ...
5.72e-01 seconds
epipersquare2 Float64 ...
4.54e-01 seconds
epipersquare3 Float64 ...
2.31e-01 seconds
epipersquare4 Float64 ...
5.68e-01 seconds
episumperentropy1 Float64 ...
2.00e+01 seconds
episumperentropy2 Float64 ...
3.13e-01 seconds
episumperentropy3 Float64 ...
3.62e-01 seconds
episumperentropy4 Float64 ...
4.01e-01 seconds
episumperentropy5 Float64 ...
1.27e+00 seconds
hypoperlog1 Float64 ...
9.13e-01 seconds
hypoperlog2 Float64 ...
1.39e-01 seconds
hypoperlog3 Float64 ...
4.31e-01 seconds
hypoperlog4 Float64 ...
7.01e-01 seconds
hypoperlog5 Float64 ...
4.99e-01 seconds
hypoperlog6 Float64 ...
3.11e-01 seconds
hypoperlog7 Float64 ...
3.01e-01 seconds
power1 Float64 ...
5.02e+00 seconds
power2 Float64 ...
1.13e+00 seconds
power3 Float64 ...
1.47e+00 seconds
power4 Float64 ...
4.65e-01 seconds
hypopowermean1 Float64 ...
4.64e+00 seconds
hypopowermean2 Float64 ...
1.20e+00 seconds
hypopowermean3 Float64 ...
5.01e-01 seconds
hypopowermean4 Float64 ...
1.30e+00 seconds
hypopowermean5 Float64 ...
2.90e-01 seconds
hypopowermean6 Float64 ...
5.27e-01 seconds
hypogeomean1 Float64 ...
5.97e+00 seconds
hypogeomean2 Float64 ...
6.37e-01 seconds
hypogeomean3 Float64 ...
3.10e-01 seconds
hypogeomean4 Float64 ...
4.27e-01 seconds
hypogeomean5 Float64 ...
3.56e-01 seconds
hypogeomean6 Float64 ...
5.15e-01 seconds
epinormspectral1 Float64 ...
4.04e+00 seconds
epinormspectral2 Float64 ...
1.18e+00 seconds
epinormspectral3 Float64 ...
7.50e-01 seconds
epinormspectral4 Float64 ...
9.62e-01 seconds
linmatrixineq1 Float64 ...
8.78e+00 seconds
linmatrixineq2 Float64 ...
1.76e+00 seconds
linmatrixineq3 Float64 ...
┌ Warning: Hessian Bunch-Kaufman factorization failed after recovery
└ @ Hypatia.Cones ~/.julia/packages/Hypatia/JHymW/src/Cones/Cones.jl:125
┌ Warning: Hessian Bunch-Kaufman factorization failed after recovery
└ @ Hypatia.Cones ~/.julia/packages/Hypatia/JHymW/src/Cones/Cones.jl:125
┌ Warning: Hessian Bunch-Kaufman factorization failed after recovery
└ @ Hypatia.Cones ~/.julia/packages/Hypatia/JHymW/src/Cones/Cones.jl:125
┌ Warning: Hessian Bunch-Kaufman factorization failed after recovery
└ @ Hypatia.Cones ~/.julia/packages/Hypatia/JHymW/src/Cones/Cones.jl:125
┌ Warning: Hessian Bunch-Kaufman factorization failed after recovery
└ @ Hypatia.Cones ~/.julia/packages/Hypatia/JHymW/src/Cones/Cones.jl:125
1.94e+01 seconds
possemideftri1 Float64 ...
1.92e+00 seconds
possemideftri2 Float64 ...
3.19e-01 seconds
possemideftri3 Float64 ...
6.91e-01 seconds
possemideftri4 Float64 ...
1.01e+00 seconds
possemideftri5 Float64 ...
2.20e+00 seconds
possemideftri6 Float64 ...
6.90e-01 seconds
possemideftri7 Float64 ...
4.24e-01 seconds
possemideftri8 Float64 ...
1.48e+00 seconds
possemideftri9 Float64 ...
6.87e-01 seconds
possemideftrisparse1 Float64 ...
9.39e+00 seconds
possemideftrisparse2 Float64 ...
8.39e+00 seconds
possemideftrisparse3 Float64 ...
4.04e+01 seconds
possemideftrisparse4 Float64 ...
2.14e+00 seconds
possemideftrisparse5 Float64 ...
1.21e+00 seconds
doublynonnegativetri1 Float64 ...
7.86e+00 seconds
doublynonnegativetri2 Float64 ...
9.94e-01 seconds
doublynonnegativetri3 Float64 ...
1.10e-01 seconds
matrixepipersquare1 Float64 ...
2.26e+01 seconds
matrixepipersquare2 Float64 ...
5.96e+00 seconds
matrixepipersquare3 Float64 ...
2.24e+00 seconds
hypoperlogdettri1 Float64 ...
3.59e+01 seconds
hypoperlogdettri2 Float64 ...
9.42e-01 seconds
hypoperlogdettri3 Float64 ...
5.49e-01 seconds
hypoperlogdettri4 Float64 ...
3.38e-01 seconds
hyporootdettri1 Float64 ...
3.33e+01 seconds
hyporootdettri2 Float64 ...
9.42e+00 seconds
hyporootdettri3 Float64 ...
9.71e-01 seconds
hyporootdettri4 Float64 ...
3.84e-01 seconds
wsosinterpnonnegative1 Float64 ...
1.55e+01 seconds
wsosinterpnonnegative2 Float64 ...
4.12e+00 seconds
wsosinterpnonnegative3 Float64 ...
7.79e-01 seconds
wsosinterpepinormone1 Float64 ...
6.25e+00 seconds
wsosinterpepinormone2 Float64 ...
9.00e-01 seconds
wsosinterpepinormone3 Float64 ...
7.31e+00 seconds
wsosinterpepinormeucl1 Float64 ...
1.40e+00 seconds
wsosinterpepinormeucl2 Float64 ...
6.88e-01 seconds
wsosinterpepinormeucl3 Float64 ...
9.33e-01 seconds
wsosinterppossemideftri1 Float64 ...
1.39e+00 seconds
wsosinterppossemideftri2 Float64 ...
4.72e+00 seconds
wsosinterppossemideftri3 Float64 ...
9.24e+00 seconds
starting no preprocess tests
nonnegative1 Float64 ...
2.94e+00 seconds
nonnegative1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
5.13e+01 seconds
epinorminf4 Float64 ...
1.52e+00 seconds
epinorminf4 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.56e+01 seconds
epinorminf6 Float64 ...
6.21e-01 seconds
epinorminf6 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.33e+01 seconds
epinormeucl1 Float64 ...
1.48e+00 seconds
epinormeucl1 BigFloat ...
7.20e+00 seconds
epipersquare1 Float64 ...
9.18e-01 seconds
epipersquare1 BigFloat ...
2.58e+00 seconds
episumperentropy4 Float64 ...
1.35e+00 seconds
episumperentropy4 BigFloat ...
1.57e+01 seconds
hypoperlog1 Float64 ...
1.68e-02 seconds
hypoperlog1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
4.72e+00 seconds
power1 Float64 ...
2.47e-02 seconds
power1 BigFloat ...
4.65e+00 seconds
hypogeomean1 Float64 ...
3.41e-02 seconds
hypogeomean1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
4.57e+00 seconds
hypopowermean1 Float64 ...
3.06e-02 seconds
hypopowermean1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
4.33e+00 seconds
epinormspectral1 Float64 ...
3.40e-01 seconds
epinormspectral1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
2.19e+01 seconds
matrixepipersquare2 Float64 ...
4.51e-01 seconds
matrixepipersquare2 BigFloat ...
2.20e+01 seconds
linmatrixineq1 Float64 ...
1.76e-01 seconds
linmatrixineq1 BigFloat ...
1.68e+01 seconds
possemideftri1 Float64 ...
1.29e-01 seconds
possemideftri1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.38e+00 seconds
possemideftri5 Float64 ...
6.13e-02 seconds
possemideftri5 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
3.71e+00 seconds
possemideftrisparse2 Float64 ...
5.03e-02 seconds
possemideftrisparse2 BigFloat ...
1.17e-01 seconds
possemideftrisparse5 Float64 ...
2.55e-01 seconds
possemideftrisparse5 BigFloat ...
5.75e-01 seconds
doublynonnegativetri1 Float64 ...
4.50e-02 seconds
doublynonnegativetri1 BigFloat ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
5.65e+00 seconds
hypoperlogdettri1 Float64 ...
6.34e-02 seconds
hypoperlogdettri1 BigFloat ...
3.31e+01 seconds
hyporootdettri1 Float64 ...
4.11e-02 seconds
hyporootdettri1 BigFloat ...
3.53e+01 seconds
wsosinterpnonnegative1 Float64 ...
1.04e+00 seconds
wsosinterpnonnegative1 BigFloat ...
8.07e+00 seconds
wsosinterppossemideftri1 Float64 ...
2.66e-02 seconds
wsosinterppossemideftri1 BigFloat ...
1.67e+00 seconds
wsosinterpepinormeucl2 Float64 ...
3.52e-02 seconds
wsosinterpepinormeucl2 BigFloat ...
2.67e+00 seconds
wsosinterpepinormone1 Float64 ...
8.03e-02 seconds
wsosinterpepinormone1 BigFloat ...
1.20e+01 seconds
starting indirect solvers tests
indirect1 Float64 ...
1.50e+01 seconds
indirect1 BigFloat ...
1.26e+01 seconds
indirect2 Float64 ...
2.03e+01 seconds
indirect2 BigFloat ...
2.19e+01 seconds
indirect3 Float64 ...
3.90e+00 seconds
indirect3 BigFloat ...
4.24e+00 seconds
indirect4 Float64 ...
1.10e+01 seconds
indirect4 BigFloat ...
1.23e+01 seconds
indirect5 Float64 ...
2.59e+00 seconds
indirect5 BigFloat ...
2.03e+00 seconds
starting system solvers tests
nonnegative1 Float64 NaiveDenseSystemSolver ...
1.01e+01 seconds
nonnegative1 BigFloat NaiveDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
9.90e+00 seconds
nonnegative1 Float64 NaiveSparseSystemSolver ...
1.22e+01 seconds
nonnegative1 Float64 NaiveElimDenseSystemSolver ...
3.27e+00 seconds
nonnegative1 BigFloat NaiveElimDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
4.11e+00 seconds
nonnegative1 Float64 NaiveElimSparseSystemSolver ...
3.20e+00 seconds
nonnegative1 Float32 SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
6.28e+01 seconds
nonnegative1 Float64 SymIndefDenseSystemSolver ...
4.46e-03 seconds
nonnegative1 BigFloat SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
7.77e-02 seconds
nonnegative1 Float64 SymIndefSparseSystemSolver ...
4.43e+00 seconds
nonnegative1 Float32 QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.58e+01 seconds
nonnegative1 Float64 QRCholDenseSystemSolver ...
3.39e+00 seconds
nonnegative1 BigFloat QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.51e+01 seconds
epinorminf4 Float64 NaiveDenseSystemSolver ...
1.97e+00 seconds
epinorminf4 BigFloat NaiveDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.91e+00 seconds
epinorminf4 Float64 NaiveSparseSystemSolver ...
1.60e+00 seconds
epinorminf4 Float64 NaiveElimDenseSystemSolver ...
2.24e-01 seconds
epinorminf4 BigFloat NaiveElimDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
3.63e-01 seconds
epinorminf4 Float64 NaiveElimSparseSystemSolver ...
1.76e-01 seconds
epinorminf4 Float32 SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.80e+01 seconds
epinorminf4 Float64 SymIndefDenseSystemSolver ...
3.07e-03 seconds
epinorminf4 BigFloat SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
6.85e-02 seconds
epinorminf4 Float64 SymIndefSparseSystemSolver ...
2.26e+00 seconds
epinorminf4 Float32 QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.16e+01 seconds
epinorminf4 Float64 QRCholDenseSystemSolver ...
6.01e-01 seconds
epinorminf4 BigFloat QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.19e+01 seconds
epinorminf6 Float64 NaiveDenseSystemSolver ...
6.73e-02 seconds
epinorminf6 BigFloat NaiveDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
3.56e-01 seconds
epinorminf6 Float64 NaiveSparseSystemSolver ...
9.49e-02 seconds
epinorminf6 Float64 NaiveElimDenseSystemSolver ...
2.32e-01 seconds
epinorminf6 BigFloat NaiveElimDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
5.64e-01 seconds
epinorminf6 Float64 NaiveElimSparseSystemSolver ...
2.20e-01 seconds
epinorminf6 Float32 SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.46e+01 seconds
epinorminf6 Float64 SymIndefDenseSystemSolver ...
1.41e-02 seconds
epinorminf6 BigFloat SymIndefDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
1.15e-01 seconds
epinorminf6 Float64 SymIndefSparseSystemSolver ...
5.33e-01 seconds
epinorminf6 Float32 QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type Float32 is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
8.07e+00 seconds
epinorminf6 Float64 QRCholDenseSystemSolver ...
7.58e-03 seconds
epinorminf6 BigFloat QRCholDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108
8.89e+00 seconds
epinormeucl1 Float64 NaiveDenseSystemSolver ...
4.41e-01 seconds
epinormeucl1 BigFloat NaiveDenseSystemSolver ...
8.93e-01 seconds
epinormeucl1 Float64 NaiveSparseSystemSolver ...
1.01e+00 seconds
epinormeucl1 Float64 NaiveElimDenseSystemSolver ...
4.72e-01 seconds
epinormeucl1 BigFloat NaiveElimDenseSystemSolver ...
5.01e-01 seconds
epinormeucl1 Float64 NaiveElimSparseSystemSolver ...
3.96e-01 seconds
epinormeucl1 Float32 SymIndefDenseSystemSolver ...
7.07e+00 seconds
epinormeucl1 Float64 SymIndefDenseSystemSolver ...
2.52e-03 seconds
epinormeucl1 BigFloat SymIndefDenseSystemSolver ...
7.60e-02 seconds
epinormeucl1 Float64 SymIndefSparseSystemSolver ...
8.50e-02 seconds
epinormeucl1 Float32 QRCholDenseSystemSolver ...
3.79e+00 seconds
epinormeucl1 Float64 QRCholDenseSystemSolver ...
1.64e-02 seconds
epinormeucl1 BigFloat QRCholDenseSystemSolver ...
3.68e+00 seconds
epipersquare1 Float64 NaiveDenseSystemSolver ...
1.78e-02 seconds
epipersquare1 BigFloat NaiveDenseSystemSolver ...
4.13e-01 seconds
epipersquare1 Float64 NaiveSparseSystemSolver ...
6.02e-02 seconds
epipersquare1 Float64 NaiveElimDenseSystemSolver ...
8.99e-03 seconds
epipersquare1 BigFloat NaiveElimDenseSystemSolver ...
1.05e-01 seconds
epipersquare1 Float64 NaiveElimSparseSystemSolver ...
6.77e-02 seconds
epipersquare1 Float32 SymIndefDenseSystemSolver ...
3.09e+00 seconds
epipersquare1 Float64 SymIndefDenseSystemSolver ...
4.05e-03 seconds
epipersquare1 BigFloat SymIndefDenseSystemSolver ...
8.57e-02 seconds
epipersquare1 Float64 SymIndefSparseSystemSolver ...
3.55e-02 seconds
epipersquare1 Float32 QRCholDenseSystemSolver ...
3.35e+00 seconds
epipersquare1 Float64 QRCholDenseSystemSolver ...
1.00e-02 seconds
epipersquare1 BigFloat QRCholDenseSystemSolver ...
3.71e+00 seconds
episumperentropy4 Float64 NaiveDenseSystemSolver ...
5.37e-02 seconds
episumperentropy4 BigFloat NaiveDenseSystemSolver ...
5.67e-01 seconds
episumperentropy4 Float64 NaiveSparseSystemSolver ...
9.83e-02 seconds
episumperentropy4 Float64 NaiveElimDenseSystemSolver ...
1.34e-02 seconds
episumperentropy4 BigFloat NaiveElimDenseSystemSolver ...
1.72e-01 seconds
episumperentropy4 Float64 NaiveElimSparseSystemSolver ...
3.86e-02 seconds
episumperentropy4 Float32 SymIndefDenseSystemSolver ...
1.66e+01 seconds
episumperentropy4 Float64 SymIndefDenseSystemSolver ...
1.66e-02 seconds
episumperentropy4 BigFloat SymIndefDenseSystemSolver ...
1.67e-01 seconds
episumperentropy4 Float64 SymIndefSparseSystemSolver ...
4.24e-02 seconds
episumperentropy4 Float32 QRCholDenseSystemSolver ...
7.38e+00 seconds
episumperentropy4 Float64 QRCholDenseSystemSolver ...
2.72e-02 seconds
episumperentropy4 BigFloat QRCholDenseSystemSolver ...
8.25e+00 seconds
hypoperlog1 Float64 NaiveDenseSystemSolver ...
1.15e-01 seconds
hypoperlog1 BigFloat NaiveDenseSystemSolver ...
┌ Warning: using dense factorization of [A; G] in preprocessing and initial point finding because sparse factorization for number type BigFloat is not supported by SuiteSparse packages
└ @ Hypatia.Solvers ~/.julia/packages/Hypatia/JHymW/src/Solvers/process.jl:108