forked from pascal-cuoq/abstract_floats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.ml
1081 lines (959 loc) · 34.1 KB
/
test.ml
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
open Float
let ppa fmt a =
Format.fprintf fmt "%a\n" pretty a
let ppf fmt f =
Format.fprintf fmt "%.16e" f
let custom_eq f1 f2 =
if f1 = 0. && f2 = 0. then
Int64.bits_of_float f1 = Int64.bits_of_float f2
else if f1 = nan && f2 = nan then true
(* assume all NaNs result from arithmetic operation are the same
see "Notes on arithmetic involving NaN" in float.ml *)
else
f1 = f2
let fsucc f = Int64.(float_of_bits @@ succ @@ bits_of_float f)
let fpred f = Int64.(float_of_bits @@ pred @@ bits_of_float f)
let dump_af a =
let l = Array.length a in
Format.printf "[|";
for i = 0 to l - 1 do
if i = 0 || l = 2
then Format.printf "0x%016Lx" (Int64.bits_of_float a.(i))
else Format.printf "%.16e" a.(i);
if i < l - 1
then Format.printf ","
done;
Format.printf "|]@\n";
module RandomAF = struct
let () = Random.self_init ()
let shuffle a =
for i = pred (Array.length a) downto 1 do
let j = Random.int (succ i) in
if i <> j then (
let tmp = Array.unsafe_get a i in
Array.unsafe_set a i (Array.unsafe_get a j);
Array.unsafe_set a j tmp
)
done
let flags = Header.([|negative_inf; positive_inf;
negative_zero; positive_zero|])
let cnter = ref 0
let shuffle_flags () =
cnter := 0;
shuffle flags
let get_flag () =
let f = flags.(!cnter) in
incr cnter;
f
let rand_set_flag h =
let f = get_flag () in
if Random.bool () then
Header.(set_flag h f)
else h
let rand_n_flags h n =
let rec loop h i =
if i = n then h
else loop (rand_set_flag h) (i + 1) in
loop h 0
(* not really random, but we should write in this way *)
let random_NaN () =
if Random.bool () then Int64.float_of_bits 0x7FF0000024560001L else
if Random.bool () then Int64.float_of_bits 0xFFF0000005743001L else
Int64.float_of_bits 0x7FF1234569876121L
let rand_add_NaNs h =
match Random.int 3 with
| 0 -> Header.(allocate_abstract_float_with_NaN h No_NaN)
| 1 -> let h = Header.(set_flag h at_least_one_NaN) in
let n = Int64.bits_of_float (random_NaN ()) in
Header.(allocate_abstract_float_with_NaN h (One_NaN n))
| _ -> let h = Header.set_all_NaNs h in
Header.(allocate_abstract_float_with_NaN h All_NaN)
let fsucc f = Int64.(float_of_bits @@ succ @@ bits_of_float f)
let fpred f = Int64.(float_of_bits @@ pred @@ bits_of_float f)
let random_pos_normalish () =
let f =
match Random.int 15 with
| 0 -> min_float
| 1 -> max_float
| 2 -> Random.float min_float
| 3 | 4 -> Random.float max_float
| 5 -> Random.float 2e-308
| 6 -> 2e-308
| 7 -> begin
match Random.int 3 with
| 0 -> Dichotomy.pos_cp
| 1 -> fsucc Dichotomy.pos_cp
| _ -> fpred Dichotomy.pos_cp
end
| 9 -> fsucc Dichotomy.pos_cp
| _ -> Random.float 1_000_00. in
if f = 0. then 4.94e-324 else f
let random_float () =
match Random.int 7 with
| 0 | 1 | 2 -> random_pos_normalish ()
| 3 -> 0.0
| 4 -> infinity
| _ -> random_NaN ()
let add_some_ulps f n =
let rec loop f n =
if n = 0 then f else
loop (fsucc f) (n - 1) in
loop f (1 + Random.int n)
let random_pos_range () =
match Random.int 5 with
| 0 | 1 ->
let l = 4.94e-324 +. Random.float 2e-308 in
let u = add_some_ulps l 10 in
l, u
| 2 | 3 ->
let l = 10. +. Random.float 10. in
let u = add_some_ulps l 100 in
l, u
| _ ->
let u = random_pos_normalish () in
Random.float u, u
let random_neg_range () =
let l, u = random_pos_range () in
(-.u, -.l)
let abstract_float () =
shuffle_flags ();
match Random.int 10 with
| 0 | 1 -> let f = random_float () in
inject_float (if Random.bool () then f else (-. f))
| 2 -> begin
match Random.int 3 with
| 0 ->
let h = Header.(set_flag bottom (get_flag ())) in
let h = Header.(set_flag h (get_flag ())) in
let h = rand_n_flags h 2 in
Header.(allocate_abstract_float_with_NaN h No_NaN)
| 1 ->
let h = Header.(set_flag bottom (get_flag ())) in
let h = rand_n_flags h 3 in
let h = Header.(set_flag h at_least_one_NaN) in
let rNaN = Int64.bits_of_float (random_NaN ()) in
Header.(allocate_abstract_float_with_NaN h (One_NaN rNaN))
| _ ->
let h = rand_n_flags Header.bottom 4 in
let h = Header.set_all_NaNs h in
Header.(allocate_abstract_float_with_NaN h All_NaN)
end
| 3 | 4 -> begin
let h = Header.(set_flag bottom positive_normalish) in
let a = rand_add_NaNs (rand_n_flags h 4) in
let l, u = random_pos_range () in
set_pos a l u; a
end
| 5 | 6 -> begin
let h = Header.(set_flag bottom negative_normalish) in
let a = rand_add_NaNs (rand_n_flags h 4) in
let l, u = random_neg_range () in
set_neg a l u; a
end
| _ -> begin
let h = Header.(set_flag bottom negative_normalish) in
let h = Header.(set_flag h positive_normalish) in
let a = rand_add_NaNs (rand_n_flags h 4) in
let l, u = random_pos_range () in
set_pos a l u;
let l, u = random_neg_range () in
set_neg a l u; a
end
let select (a:abstract_float) : float =
match Array.length a with
| 1 -> a.(0)
| _ ->
let h = Header.of_abstract_float a in
let all_flags =
Header.([at_least_one_NaN; all_NaNs; negative_normalish;
positive_normalish; negative_inf; positive_inf;
negative_zero; positive_zero]) in
let eflgs = List.fold_left (fun acc f ->
if Header.test h f then f :: acc else acc) [] all_flags in
let fa = Array.of_list eflgs in
let rflg = fa.(Random.int (Array.length fa)) in
if Header.(equal rflg all_NaNs) then random_NaN () else
if Header.(equal rflg at_least_one_NaN) then
match Header.reconstruct_NaN a with
| Header.One_NaN n -> (Int64.float_of_bits n)
| Header.All_NaN -> random_NaN ()
| _ -> assert false else begin
if Header.(equal rflg negative_normalish) then
let l, u = (-. (get_opp_neg_lower a)), get_neg_upper a in
match Random.int 10 with
| 0 -> l
| 1 -> u
| _ -> l +. Random.float (u -. l) else
if Header.(equal rflg positive_normalish) then
let l, u = (-. (get_opp_pos_lower a)), get_pos_upper a in
match Random.int 10 with
| 0 -> l
| 1 -> u
| _ -> l +. Random.float (u -. l) else
if Header.(equal rflg negative_inf) then neg_infinity else
if Header.(equal rflg positive_inf) then infinity else
if Header.(equal rflg negative_zero) then -0.0 else
if Header.(equal rflg positive_zero) then +0.0 else
assert false
end
let test_validity () =
for i = 0 to 1_000_000_000 do
assert(Header.check (abstract_float ()))
done;
print_endline "RandomAF checked"
let pair () =
let af = abstract_float () in
if Random.int 20 < 1 then af, af else af, abstract_float ()
let pos_range a =
(-. get_opp_pos_lower a), get_pos_upper a
let neg_range a =
(-. get_opp_neg_lower a), get_neg_upper a
(* for pos *)
let random_float l u =
if l = smallest_neg && u = largest_neg
then l +. (Random.float (largest_neg -. l)) else
if l = smallest_pos && u = largest_pos
then l +. (Random.float (largest_pos -. l)) else
try (
Int64.(float_of_bits (add (bits_of_float l)
(Random.int64 (succ (sub (bits_of_float u) (bits_of_float l)))))))
with _ -> Format.printf "%a %a\n" ppf l ppf u; assert false
let random_float l u =
if u < 0. then -.(random_float (-.u) (-.l)) else
random_float l u
let fsucc_ f = Int64.(float_of_bits @@ succ @@ bits_of_float f)
let fpred_ f = Int64.(float_of_bits @@ pred @@ bits_of_float f)
let fsucc f = if is_pos f then fsucc_ f else fpred_ f
let fpred f = if is_pos f then fpred_ f else fsucc_ f
let random_float_without_f l u f =
if f < l || f > u then Some (fun () -> random_float l u) else begin
if l = u then None else
if l = f then Some (fun () -> random_float (fsucc f) u) else
if u = f then Some (fun () -> random_float l (fpred f)) else
Some (fun () ->
if Random.bool () then random_float l (fpred f) else
random_float (fsucc f) u)
end
let random_float_without_range l u l1 u1 =
if u1 < l || l1 > u then Some (fun () -> random_float l u) else begin
if l = u then None else
if l1 <= l then
let u1s = fsucc u1 in
if u1s > u then None else
Some (fun () -> random_float (fsucc u1) u) else
if u1 >= u then
let l1p = fpred l1 in
if l1p < l then None else Some (fun () -> random_float l l1p)
else
Some (fun () ->
if Random.bool () then random_float l (fpred l1)
else random_float (fsucc u1) u)
end
let diff_selector x nx =
if is_singleton x then
let f = Array.get x 0 in
if Array.length nx = 2 then
let h = Header.of_abstract_float nx in
if Header.is_bottom h then
Some (fun () -> f)
else
None
else None
else begin
let h = Header.of_abstract_float x in
let p =
if Header.(test h positive_normalish) then
let l, u = pos_range x in
if is_singleton nx then
let f = Array.get nx 0 in
match classify_float f with
| FP_normal | FP_subnormal ->
random_float_without_f l u f
| _ -> Some (fun () -> random_float l u)
else
let nh = Header.of_abstract_float nx in
if not Header.(test nh positive_normalish) then
Some (fun () -> random_float l u)
else
let ln, un = pos_range nx in
random_float_without_range l u ln un
else None in
let n =
if Header.(test h negative_normalish) then
let l, u = neg_range x in
if is_singleton nx then
let f = Array.get nx 0 in
match classify_float f with
| FP_normal | FP_subnormal ->
random_float_without_f l u f
| _ -> Some (fun () -> random_float l u)
else
let nh = Header.of_abstract_float nx in
if not Header.(test nh negative_normalish) then
Some (fun () -> random_float l u)
else None
else None in
let select_header p f =
if Header.(test h p) then
if is_singleton nx then
if nx.(0) <> f then Some (fun () -> f) else None
else
let nh = Header.of_abstract_float nx in
if Header.(test nh p) then None else Some (fun () -> f)
else None in
let pz, nz, pinf, ninf =
select_header Header.positive_zero 0.0,
select_header Header.negative_zero (-0.0),
select_header Header.positive_inf infinity,
select_header Header.negative_inf neg_infinity in
let _NaN =
match Header.reconstruct_NaN x with
| Header.All_NaN -> begin
if is_singleton nx then
if classify_float nx.(0) = FP_nan then
Some (fun () -> Int64.float_of_bits 0x7FF1234569876222L)
else
Some (fun () -> random_NaN ())
else
match Header.reconstruct_NaN nx with
| Header.No_NaN -> Some (fun () -> random_NaN ())
| Header.All_NaN -> None
| Header.One_NaN _ ->
Some (fun () ->Int64.float_of_bits 0x7FF1234569876222L)
end
| _ -> None in
let rec filter_map acc = function
| [] -> acc
| Some x :: tl -> filter_map (x :: acc) tl
| None :: tl -> filter_map acc tl in
let sources =
filter_map [] [p; n; pz; nz; pinf; ninf; _NaN] |> Array.of_list in
let len = Array.length sources in
if sources = [||] then None else
Some (fun () -> Array.get sources (Random.int len) ())
end
end
module TestNeg = struct
let test () =
let a = RandomAF.abstract_float () in
let f = RandomAF.select a in
let nf = (-. f) in
let na = neg a in
assert(float_in_abstract_float nf na)
let test_rand () =
print_endline "Neg: start random tests";
for i = 0 to 1_000_000 do
test ()
done;
print_endline "Neg: random tests successful"
end
module TestJoins = struct
let test_rand () =
print_endline "Join: start random tests";
for i = 0 to 1000000 do
let a1, a2 = RandomAF.pair () in
let a12 = join a1 a2 in
let a21 = join a2 a1 in
assert(Header.check a12);
assert(Header.check a21);
assert(compare a12 a21 = 0);
assert(is_included a1 a12);
assert(is_included a2 a12);
done;
for i = 0 to 1000000 do
let a1 = RandomAF.abstract_float () in
let f = RandomAF.select a1 in
assert (float_in_abstract_float f a1)
done;
print_endline "Join: random tests successful"
let test_others () =
let a = inject_float (2e-308) in
assert(Header.check (join a a));
let h = Header.(set_flag (of_flag positive_zero) negative_inf) in
let a = Header.allocate_abstract_float h in
assert(not @@ float_in_abstract_float nan a)
(* bug 1: RH's bug in ``merge_float``. Fixed.
bug 2: opened issue on PC's repo. Fixed here. *)
let test_bugged1 () =
let h = Header.(set_flag bottom positive_inf) in
let h = Header.(set_flag h negative_zero) in
let a1 = Header.(allocate_abstract_float h) in
let a2 = [|-1.5262258223503298e+3|] in
assert(Header.check (join a1 a2))
(* RH's bug in ``merge_float``. fixed *)
let test_bugged2 () =
let h = Header.(set_flag bottom positive_normalish) in
let a1 = Header.allocate_abstract_float h in
set_pos a1 4.6307227104214865e+307 9.3849706504711684e+307;
let a2 = [|-2.2396553445019165e+307|] in
assert (Header.check (join a1 a2))
end
module TestMeet = struct
let test () =
let a1, a2 = RandomAF.pair () in
let ma = meet a1 a2 in
assert(is_included ma a1 && is_included ma a2)
let test_rand () =
print_endline "Meet: start random tests";
for i = 0 to 1000000 do
test ()
done;
print_endline "Meet: random tests successful"
end
module TestSqrt = struct
let test_rand () =
print_endline "Sqrt: start random tests";
for i = 0 to 1000000 do
let a = RandomAF.abstract_float () in
let f1 = RandomAF.select a in
assert (float_in_abstract_float (sqrt f1) (abstract_sqrt a))
done;
print_endline "Sqrt: random tests successful"
end
module TestArithmetic = struct
let test op1 op2 a1 a2 =
let srf = RandomAF.select in
let a12 = op2 a1 a2 in
if not (Header.check a12) then begin
dump_af a1; dump_af a2;
Format.printf "a1: %a\na2: %a\n" pretty a1 pretty a2;
assert false
end;
for i = 0 to 1000 do
let rf1, rf2 = srf a1, srf a2 in
let rf12 = op1 rf1 rf2 in
if not (float_in_abstract_float rf12 a12)
then begin
Format.printf "%a\n%a\n%a\n\n%.16e\n%.16e\n%.16e\n"
pretty a1 pretty a2 pretty a12
rf1 rf2 rf12;
assert false;
end;
done
let regress_add1 () =
let srf = RandomAF.select in
let a = inject_float (-2.9914765924740740e+307) in
let hb = Header.(of_flags [negative_normalish; positive_zero]) in
let b = Header.allocate_abstract_float hb in
set_neg b (-9.4771152698724269e+04) (-2.7803418452892169e+04);
let a12 = add a b in
for i = 0 to 100 do
let rf1, rf2 = srf a, srf b in
let rf12 = rf1 +. rf2 in
if not (float_in_abstract_float rf12 a12)
then begin
Format.printf "%a\n%a\n%a\n\n%.16e\n%.16e\n%.16e\n"
pretty a pretty b pretty a12
rf1 rf2 rf12;
assert false;
end
done
let test_rand () =
print_endline "Arithmetic: start random tests";
for i = 0 to 10000 do
let a1, a2 = RandomAF.pair () in
test ( +. ) add a1 a2;
test ( -. ) sub a1 a2;
test ( *. ) mult a1 a2;
test ( /. ) div a1 a2
done;
print_endline "Arithmetic: random tests successful"
end
module TestPretty = struct
let test_rand () =
print_endline "Pretty: start random tests";
for i = 0 to 1_000_00 do
let a1 = RandomAF.abstract_float () in
ignore (Format.asprintf "%a" pretty a1)
done;
print_endline "Pretty: random tests successful"
end
module TestReverseAdd = struct
let debug = false
let test x a b =
if debug then begin
print_endline (String.make 15 '-');
Format.printf "a: %a\nb: %a\n" pretty a pretty b;
Format.printf "x: %a\n" pretty x end;
let nx = reverse_add x a b in
assert(Header.check nx);
if debug then Format.printf "x': %a\n" pretty nx;
if (not (is_included nx x)) then begin
dump_af x; dump_af nx; assert false
end;
match RandomAF.diff_selector x nx with
| None ->
if not (is_included nx x) then
(dump_internal x; dump_internal nx; assert false)
else ()
| Some f -> begin
for i = 0 to 1000 do
let fa, fb = RandomAF.(select a, select b) in
let nxf = f () in
if custom_eq (nxf +. fa) fb then begin
Format.printf "%s\n" (String.make 10 '~');
Format.printf "x : %a\nx': %a\na : %a\nb : %a\n\n"
pretty x pretty nx pretty a pretty b;
Format.printf "fx': %a\nfa : %a\nfb : %a\n\n"
ppf nxf ppf fa ppf fb;
assert false
end
done
end
let test_rand () =
print_endline "ReverseAdd: start random tests";
for i = 0 to 100000 do
let a, b = RandomAF.pair () in
let x = RandomAF.abstract_float () in
test x a b
done;
print_endline "ReverseAdd: random tests successful"
(* bug in join: joining two single NaNs *)
let test_bug1 () =
let a = [| 0.0 |] in
let b =
let h = Header.(set_all_NaNs bottom) in
let h = Header.(set_flag h positive_inf) in
let h = Header.(set_flag h negative_inf) in
let h = Header.(set_flag h negative_normalish) in
let a = Header.allocate_abstract_float h in
set_neg a (-5.) (-4.);
a in
let x = [| Int64.float_of_bits 0x7ff0000024560001L |] in
test x a b
(* bug in narrow_range: should not use meet *)
let test_bug2 () =
let a = [|1.|] in
let h = Header.(set_all_NaNs bottom) in
let h = Header.(set_flag h positive_normalish) in
let b = Header.allocate_abstract_float h in
set_pos b 2. 3.;
let x = [| 1.8401032236488259e-308 |] in
test x a b
let test_bug3 () =
let ha = Header.(set_all_NaNs (of_flag negative_zero)) in
let ha = Header.(set_flag ha positive_normalish) in
let a = Header.allocate_abstract_float ha in
set_pos a 3.7286649853047806e+04 5.2488920238158935e+04;
let hb = Header.(set_flag (of_flag positive_inf) positive_zero) in
let hb = Header.(set_flag hb negative_zero) in
let hb = Header.(set_flag hb positive_normalish) in
let b = Header.allocate_abstract_float hb in
set_pos b 6.2039083778571396e+307 1.1710442810843075e+308;
let hx =
Header.(set_flag (of_flag positive_zero) negative_zero) in
let hx =
Header.(set_flag hx positive_inf) in
let hx =
Header.(set_flag hx negative_inf) in
let hx = Header.(set_all_NaNs hx) in
let x = Header.allocate_abstract_float hx in
test x a b
(* fixed, Header.reverse_add first true branch *)
let test_bug4 () =
let ha = Header.(set_flag (of_flag negative_inf) positive_zero) in
let ha = Header.(set_all_NaNs ha) in
let a = Header.allocate_abstract_float ha in
let hb = Header.(set_flag (of_flag negative_inf) positive_zero) in
let hb = Header.(set_flag hb at_least_one_NaN) in
let hb = Header.(set_flag hb positive_normalish) in
let b = Header.allocate_abstract_float_with_NaN hb
(Header.One_NaN (0xfff0000005743001L)) in
set_pos b 2.3072254309300213e+04 3.6047259748806195e+04;
let hx = Header.(set_flag (of_flag positive_zero) negative_zero) in
let hx = Header.(set_flag hx positive_inf) in
let hx = Header.(set_all_NaNs hx) in
let hx = Header.(set_flag hx negative_normalish) in
let x = Header.allocate_abstract_float hx in
set_neg x (-2.5895361791812356e+04) (-1.7694993162971678e+04);
test x a b
(* bug in reverse_add, neg_overflow *)
let test_bug5 () =
let ha =
Header.(of_flags [negative_zero; negative_inf;
at_least_one_NaN; negative_normalish]) in
let a = Header.(allocate_abstract_float_with_NaN
ha (One_NaN 0x7ff0000024560001L)) in
set_neg a (-1.5108707789796620e+308) (-1.8130866911409611e+307);
let hb =
Header.(of_flags [positive_zero; positive_inf; negative_inf]) in
let hb = Header.(set_all_NaNs hb) in
let b = Header.allocate_abstract_float hb in
let hx =
Header.(of_flags [positive_zero; negative_zero;
positive_inf; negative_normalish;
positive_normalish]) in
let x = Header.allocate_abstract_float hx in
set_neg x (-4.2308300236767202e+04) (-1.4184781505518549e+04);
set_pos x 5.4694215793246267e-309 2.2250738585072014e-308;
test x a b
(* fixed in fold_range *)
let test_bug6 () =
let ha = Header.(set_flag (of_flag positive_inf) positive_normalish) in
let a = Header.allocate_abstract_float ha in
set_pos a 2.0677600541151282e+04 9.7177780825627851e+04;
let hb =
Header.(of_flags [negative_zero; positive_zero;
positive_inf; positive_normalish]) in
let hb = Header.(set_all_NaNs hb) in
let b = Header.allocate_abstract_float hb in
set_pos b 1.1185516275125372e-308 1.1844009154295606e-308;
let hx = Header.(set_all_NaNs (of_flags [positive_zero;
negative_normalish])) in
let x = Header.allocate_abstract_float hx in
set_neg x (-2.6989508761250097e+04) (-3.9173820305161257e+03);
test x a b
let test_bug7 () =
let ha = Header.(set_all_NaNs (of_flag positive_zero)) in
let hb = Header.(of_flags [negative_zero; positive_inf; negative_inf]) in
let hx = Header.(of_flags [negative_zero; positive_inf]) in
let hx = Header.(set_flag hx at_least_one_NaN) in
let x = Header.(allocate_abstract_float_with_NaN
hx (One_NaN 0x7ff0000024560001L)) in
let a = Header.allocate_abstract_float ha in
let b = Header.allocate_abstract_float hb in
test x a b
(* fix range combine, fix zero setting *)
let test_bug8 () =
let x = inject_float 0.0 in
let a = inject_float 2.2250738585072014e-308 in
let b = inject_float 2.2250738585072014e-308 in
test x a b
let test_bug9 () =
let hx = Header.(of_flag positive_normalish) in
let x = Header.allocate_abstract_float hx in
set_pos x 3.0707164255425355e+03 7.8646307536638469e+03;
let ha = Header.(set_flag (of_flag positive_normalish) positive_zero) in
let a = Header.allocate_abstract_float ha in
let b = Header.allocate_abstract_float ha in
set_pos a 9.9928593609454120e+305 4.1172212759061929e+306;
set_pos b 9.9928593609454120e+305 4.1172212759061929e+306;
test x a b
let test_bug10 () =
let x = inject_float 1.0 in
let h = Header.(of_flag positive_normalish) in
let a = Header.allocate_abstract_float h in
let b = Header.allocate_abstract_float h in
set_pos a 0.4 1.8;
set_pos b 0.4 1.8;
test x a b
let test_bug11 () =
let x = top () in
let a = abstract_all_NaNs in
let b = abstract_all_NaNs in
test x a b
let ntest1 () =
let x = top () in
let a = inject_float 0.4 in
let b = inject_float 1.8 in
test x a b
let ntest2 () =
let x = Header.(allocate_abstract_float (of_flag positive_normalish)) in
set_pos x 1.0 5.0;
let a = inject_float 1.0 in
let b = inject_float 11.0 in
test x a b
let test_norm_all () =
test_bug1 ();
test_bug2 ();
test_bug3 ();
test_bug4 ();
test_bug5 ();
test_bug6 ();
test_bug7 ();
test_bug8 ();
test_bug9 ();
test_bug10 ();
test_bug11 ();
ntest1 ();
ntest2 ()
end
module TestReverseMult = struct
let debug = false
let test x a b =
if debug then begin
print_endline (String.make 15 '-');
Format.printf "a: %a\nb: %a\n" pretty a pretty b;
Format.printf "x: %a\n" pretty x end;
let nx = reverse_mult x a b in
assert(Header.check nx);
if debug then Format.printf "x': %a\n" pretty nx;
if (not (is_included nx x)) then begin
dump_af x; dump_af nx; assert false
end;
match RandomAF.diff_selector x nx with
| None ->
if not (is_included nx x) then
(dump_internal x; dump_internal nx; assert false)
else ()
| Some f -> begin
for i = 0 to 1000 do
let fa, fb = RandomAF.(select a, select b) in
let nxf = f () in
if custom_eq (nxf *. fa) fb then begin
Format.printf "%s\n" (String.make 10 '~');
Format.printf "x : %a\nx': %a\na : %a\nb : %a\n\n"
pretty x pretty nx pretty a pretty b;
Format.printf "fx': %a\nfa : %a\nfb : %a\n\n"
ppf nxf ppf fa ppf fb;
assert false
end
done
end
let test_rand () =
print_endline "ReverseMult: start random tests";
for i = 0 to 100000 do
let a, b = RandomAF.pair () in
let x = RandomAF.abstract_float () in
test x a b
done;
print_endline "ReverseMult: random tests successful"
let test_bug11 () =
let x = top () in
let a = abstract_all_NaNs in
let b = abstract_all_NaNs in
test x a b
let test_norm_all () =
test_bug11 ()
end
module TestReverseDiv = struct
let debug = false
let test x ?loop:(loop=1000) a b =
if debug then begin
print_endline (String.make 15 '-');
Format.printf "a: %a\nb: %a\n" pretty a pretty b;
Format.printf "x: %a\n" pretty x end;
let nx = reverse_div1 x a b in
assert(Header.check nx);
if debug then Format.printf "x': %a\n" pretty nx;
if (not (is_included nx x)) then begin
dump_af x; dump_af nx; assert false
end;
match RandomAF.diff_selector x nx with
| None -> (* div special case does not handle *)
if not (is_included nx x) then
(dump_internal x; dump_internal nx; assert false)
(*
if is_singleton x && is_singleton nx then
let f = nx.(0) in
match classify_float f with
| FP_normal | FP_subnormal ->
*)
| Some f -> begin
for i = 0 to loop do
let fa, fb = RandomAF.(select a, select b) in
let nxf = f () in
if custom_eq (nxf /. fa) fb then begin
Format.printf "%s\n" (String.make 10 '~');
Format.printf "x : %a\nx': %a\na : %a\nb : %a\n\n"
pretty x pretty nx pretty a pretty b;
Format.printf "fx': %a\nfa : %a\nfb : %a\n\n"
ppf nxf ppf fa ppf fb;
assert false
end
done
end
let test_rand () =
print_endline "ReverseDiv: start random tests";
for i = 0 to 100000 do
let a, b = RandomAF.pair () in
let x = RandomAF.abstract_float () in
assert(Header.check a);
assert(Header.check b);
assert(Header.check x);
test x a b
done;
print_endline "ReverseDiv: random tests successful"
let test_bug1 () =
let x = top () in
let a = abstract_all_NaNs in
let b = abstract_all_NaNs in
test x a b
let test_loss_accuracy1 () =
let ha = Header.(set_flag bottom positive_normalish) in
let a = Header.allocate_abstract_float ha in
set_pos a 0.3 0.6;
let b = inject_float 1.8 in
(* from a and b, x should be narrowed by
range: [5.4000000000000037e-01, 1.0799999999999998e+00]
however, due to the current imperfect algorithm, x is narrowed by
range: [5.4000000000000004e-01, 1.0799999999999998e+00] *)
let x = inject_float 5.4000000000000015e-01 in
let nx = reverse_div1 x a b in
Format.printf "%a\n" ppa nx;
let f = RandomAF.select nx in
let f1 = 0.3
and f2 = (fsucc 0.3)
and f3 = (fsucc @@ fsucc 0.3)
and f4 = (fsucc @@ fsucc @@ fsucc 0.3)
and f5 = (fsucc @@ fsucc @@ fsucc @@ fsucc 0.3) in
let ff1 = f /. f1 in
let ff2 = f /. f2 in
let ff3 = f /. f3 in
let ff4 = f /. f4 in
let ff5 = f /. f5 in
Format.printf "[f1]: %a /. %a = %a in B: %b\n"
ppf f ppf f1 ppf ff1 (float_in_abstract_float ff1 b);
Format.printf "[f2]: %a /. %a = %a in B: %b\n"
ppf f ppf f2 ppf ff2 (float_in_abstract_float ff2 b);
Format.printf "[f3]: %a /. %a = %a in B: %b\n"
ppf f ppf f3 ppf ff3 (float_in_abstract_float ff3 b);
Format.printf "[f4]: %a /. %a = %a in B: %b\n"
ppf f ppf f4 ppf ff4 (float_in_abstract_float ff4 b);
Format.printf "[f5]: %a /. %a = %a in B: %b\n"
ppf f ppf f5 ppf ff5 (float_in_abstract_float ff5 b);
assert false
let test_norm_all () =
test_loss_accuracy1 ()
end
module TestReverseDiv2 = struct
let debug = false
let test x ?loop:(loop=1000) a b =
if debug then begin
print_endline (String.make 15 '-');
Format.printf "a: %a\nb: %a\n" pretty a pretty b;
Format.printf "x: %a\n" pretty x end;
let nx = reverse_div2 x a b in
assert(Header.check nx);
if debug then Format.printf "x': %a\n" pretty nx;
if (not (is_included nx x)) then begin
dump_af x; dump_af nx; assert false
end;
match RandomAF.diff_selector x nx with
| None -> (* div special case does not handle *)
if not (is_included nx x) then
(dump_internal x; dump_internal nx; assert false)
| Some f -> begin
for i = 0 to loop do
let fa, fb = RandomAF.(select a, select b) in
let nxf = f () in
if custom_eq (fa /. nxf) fb then begin
Format.printf "%s\n" (String.make 10 '~');
Format.printf "x : %a\nx': %a\na : %a\nb : %a\n\n"
pretty x pretty nx pretty a pretty b;
Format.printf "fx': %a\nfa : %a\nfb : %a\n\n"
ppf nxf ppf fa ppf fb;
assert false
end
done
end
let test_rand () =
print_endline "ReverseDiv2: start random tests";
for i = 0 to 100000 do
let a, b = RandomAF.pair () in
let x = RandomAF.abstract_float () in
assert(Header.check a);
assert(Header.check b);
assert(Header.check x);
test x a b
done;
print_endline "ReverseDiv2: random tests successful"
let test_bug1 () =
let x = top () in
let a = abstract_all_NaNs in
let b = abstract_all_NaNs in
test x a b
let test_norm_all () = test_bug1 ()
end
module TestFmod = struct
let srf = RandomAF.select
let test a1 a2 =
let a12 = fmod a1 a2 in
assert(Header.check a12);
let rf1, rf2 = srf a1, srf a2 in
let rf12 = mod_float rf1 rf2 in
if not (float_in_abstract_float rf12 a12) then begin
Format.printf "%a\n%a\n%a\n\n%.16e\n%.16e\n%.16e\n"
pretty a1 pretty a2 pretty a12 rf1 rf2 rf12;
assert false
end
let test_rand () =
print_endline "Fmod: start random tests";
for i = 0 to 100000000000000 do
let a1, a2 = RandomAF.pair () in
test a1 a2
done
(*
{-2.7783965750357370e+307}
{±0,±∞,NaN:7ff0000024560001} ∪ [-1.5162948824415059e+01 ... -1.5162948824415057e+01]
{NaN} ∪ [-2.7783965750357370e+307 ... -1.1971026701032343e+01]
-2.7783965750357370e+307
-1.5162948824415057e+01
-1.0522307013944967e+01
*)
let loop_test a b ab =
Format.printf "%a\n%a\n%a\n@." pretty a pretty b pretty ab;
for i = 0 to 100000 do