forked from ocaml/ocaml
-
Notifications
You must be signed in to change notification settings - Fork 1
/
float.ml
511 lines (454 loc) · 15.4 KB
/
float.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
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* Nicolas Ojeda Bar, LexiFi *)
(* *)
(* Copyright 2018 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
external neg : float -> float = "%negfloat"
external add : float -> float -> float = "%addfloat"
external sub : float -> float -> float = "%subfloat"
external mul : float -> float -> float = "%mulfloat"
external div : float -> float -> float = "%divfloat"
external rem : float -> float -> float = "caml_fmod_float" "fmod"
[@@unboxed] [@@noalloc]
external fma : float -> float -> float -> float = "caml_fma_float" "caml_fma"
[@@unboxed] [@@noalloc]
external abs : float -> float = "%absfloat"
let zero = 0.
let one = 1.
let minus_one = -1.
let infinity = Stdlib.infinity
let neg_infinity = Stdlib.neg_infinity
let nan = Stdlib.nan
let is_finite (x: float) = x -. x = 0.
let is_infinite (x: float) = 1. /. x = 0.
let is_nan (x: float) = x <> x
let pi = 0x1.921fb54442d18p+1
let max_float = Stdlib.max_float
let min_float = Stdlib.min_float
let epsilon = Stdlib.epsilon_float
external of_int : int -> float = "%floatofint"
external to_int : float -> int = "%intoffloat"
external of_string : string -> float = "caml_float_of_string"
let of_string_opt = Stdlib.float_of_string_opt
let to_string = Stdlib.string_of_float
type fpclass = Stdlib.fpclass =
FP_normal
| FP_subnormal
| FP_zero
| FP_infinite
| FP_nan
external classify_float : (float [@unboxed]) -> fpclass =
"caml_classify_float" "caml_classify_float_unboxed" [@@noalloc]
external pow : float -> float -> float = "caml_power_float" "pow"
[@@unboxed] [@@noalloc]
external sqrt : float -> float = "caml_sqrt_float" "sqrt"
[@@unboxed] [@@noalloc]
external exp : float -> float = "caml_exp_float" "exp" [@@unboxed] [@@noalloc]
external log : float -> float = "caml_log_float" "log" [@@unboxed] [@@noalloc]
external log10 : float -> float = "caml_log10_float" "log10"
[@@unboxed] [@@noalloc]
external expm1 : float -> float = "caml_expm1_float" "caml_expm1"
[@@unboxed] [@@noalloc]
external log1p : float -> float = "caml_log1p_float" "caml_log1p"
[@@unboxed] [@@noalloc]
external cos : float -> float = "caml_cos_float" "cos" [@@unboxed] [@@noalloc]
external sin : float -> float = "caml_sin_float" "sin" [@@unboxed] [@@noalloc]
external tan : float -> float = "caml_tan_float" "tan" [@@unboxed] [@@noalloc]
external acos : float -> float = "caml_acos_float" "acos"
[@@unboxed] [@@noalloc]
external asin : float -> float = "caml_asin_float" "asin"
[@@unboxed] [@@noalloc]
external atan : float -> float = "caml_atan_float" "atan"
[@@unboxed] [@@noalloc]
external atan2 : float -> float -> float = "caml_atan2_float" "atan2"
[@@unboxed] [@@noalloc]
external hypot : float -> float -> float
= "caml_hypot_float" "caml_hypot" [@@unboxed] [@@noalloc]
external cosh : float -> float = "caml_cosh_float" "cosh"
[@@unboxed] [@@noalloc]
external sinh : float -> float = "caml_sinh_float" "sinh"
[@@unboxed] [@@noalloc]
external tanh : float -> float = "caml_tanh_float" "tanh"
[@@unboxed] [@@noalloc]
external trunc : float -> float = "caml_trunc_float" "caml_trunc"
[@@unboxed] [@@noalloc]
external round : float -> float = "caml_round_float" "caml_round"
[@@unboxed] [@@noalloc]
external ceil : float -> float = "caml_ceil_float" "ceil"
[@@unboxed] [@@noalloc]
external floor : float -> float = "caml_floor_float" "floor"
[@@unboxed] [@@noalloc]
let is_integer x = x = trunc x && is_finite x
external next_after : float -> float -> float
= "caml_nextafter_float" "caml_nextafter" [@@unboxed] [@@noalloc]
let succ x = next_after x infinity
let pred x = next_after x neg_infinity
external copy_sign : float -> float -> float
= "caml_copysign_float" "caml_copysign"
[@@unboxed] [@@noalloc]
external sign_bit : (float [@unboxed]) -> bool
= "caml_signbit_float" "caml_signbit" [@@noalloc]
external frexp : float -> float * int = "caml_frexp_float"
external ldexp : (float [@unboxed]) -> (int [@untagged]) -> (float [@unboxed]) =
"caml_ldexp_float" "caml_ldexp_float_unboxed" [@@noalloc]
external modf : float -> float * float = "caml_modf_float"
type t = float
external compare : float -> float -> int = "%compare"
let equal x y = compare x y = 0
let[@inline] min (x: float) (y: float) =
if y > x || (not(sign_bit y) && sign_bit x) then
if is_nan y then y else x
else if is_nan x then x else y
let[@inline] max (x: float) (y: float) =
if y > x || (not(sign_bit y) && sign_bit x) then
if is_nan x then x else y
else if is_nan y then y else x
let[@inline] min_max (x: float) (y: float) =
if is_nan x || is_nan y then (nan, nan)
else if y > x || (not(sign_bit y) && sign_bit x) then (x, y) else (y, x)
let[@inline] min_num (x: float) (y: float) =
if y > x || (not(sign_bit y) && sign_bit x) then
if is_nan x then y else x
else if is_nan y then x else y
let[@inline] max_num (x: float) (y: float) =
if y > x || (not(sign_bit y) && sign_bit x) then
if is_nan y then x else y
else if is_nan x then y else x
let[@inline] min_max_num (x: float) (y: float) =
if is_nan x then (y,y)
else if is_nan y then (x,x)
else if y > x || (not(sign_bit y) && sign_bit x) then (x,y) else (y,x)
external seeded_hash_param : int -> int -> int -> float -> int
= "caml_hash" [@@noalloc]
let hash x = seeded_hash_param 10 100 0 x
module Array = struct
type t = floatarray
external length : t -> int = "%floatarray_length"
external get : t -> int -> float = "%floatarray_safe_get"
external set : t -> int -> float -> unit = "%floatarray_safe_set"
external create : int -> t = "caml_floatarray_create"
external unsafe_get : t -> int -> float = "%floatarray_unsafe_get"
external unsafe_set : t -> int -> float -> unit = "%floatarray_unsafe_set"
let unsafe_fill a ofs len v =
for i = ofs to ofs + len - 1 do unsafe_set a i v done
let unsafe_blit src sofs dst dofs len =
for i = 0 to len - 1 do
unsafe_set dst (dofs + i) (unsafe_get src (sofs + i))
done
let check a ofs len msg =
if ofs < 0 || len < 0 || ofs + len < 0 || ofs + len > length a then
invalid_arg msg
let make n v =
let result = create n in
unsafe_fill result 0 n v;
result
let init l f =
if l < 0 then invalid_arg "Float.Array.init"
else
let res = create l in
for i = 0 to l - 1 do
unsafe_set res i (f i)
done;
res
let append a1 a2 =
let l1 = length a1 in
let l2 = length a2 in
let result = create (l1 + l2) in
unsafe_blit a1 0 result 0 l1;
unsafe_blit a2 0 result l1 l2;
result
(* next 3 functions: modified copy of code from string.ml *)
let ensure_ge (x:int) y =
if x >= y then x else invalid_arg "Float.Array.concat"
let rec sum_lengths acc = function
| [] -> acc
| hd :: tl -> sum_lengths (ensure_ge (length hd + acc) acc) tl
let concat l =
let len = sum_lengths 0 l in
let result = create len in
let rec loop l i =
match l with
| [] -> assert (i = len)
| hd :: tl ->
let hlen = length hd in
unsafe_blit hd 0 result i hlen;
loop tl (i + hlen)
in
loop l 0;
result
let sub a ofs len =
check a ofs len "Float.Array.sub";
let result = create len in
unsafe_blit a ofs result 0 len;
result
let copy a =
let l = length a in
let result = create l in
unsafe_blit a 0 result 0 l;
result
let fill a ofs len v =
check a ofs len "Float.Array.fill";
unsafe_fill a ofs len v
let blit src sofs dst dofs len =
check src sofs len "Float.array.blit";
check dst dofs len "Float.array.blit";
unsafe_blit src sofs dst dofs len
let to_list a =
List.init (length a) (unsafe_get a)
let of_list l =
let result = create (List.length l) in
let rec fill i l =
match l with
| [] -> result
| h :: t -> unsafe_set result i h; fill (i + 1) t
in
fill 0 l
(* duplicated from array.ml *)
let iter f a =
for i = 0 to length a - 1 do f (unsafe_get a i) done
(* duplicated from array.ml *)
let iter2 f a b =
if length a <> length b then
invalid_arg "Float.Array.iter2: arrays must have the same length"
else
for i = 0 to length a - 1 do f (unsafe_get a i) (unsafe_get b i) done
let map f a =
let l = length a in
let r = create l in
for i = 0 to l - 1 do
unsafe_set r i (f (unsafe_get a i))
done;
r
let map2 f a b =
let la = length a in
let lb = length b in
if la <> lb then
invalid_arg "Float.Array.map2: arrays must have the same length"
else begin
let r = create la in
for i = 0 to la - 1 do
unsafe_set r i (f (unsafe_get a i) (unsafe_get b i))
done;
r
end
(* duplicated from array.ml *)
let iteri f a =
for i = 0 to length a - 1 do f i (unsafe_get a i) done
let mapi f a =
let l = length a in
let r = create l in
for i = 0 to l - 1 do
unsafe_set r i (f i (unsafe_get a i))
done;
r
(* duplicated from array.ml *)
let fold_left f x a =
let r = ref x in
for i = 0 to length a - 1 do
r := f !r (unsafe_get a i)
done;
!r
(* duplicated from array.ml *)
let fold_right f a x =
let r = ref x in
for i = length a - 1 downto 0 do
r := f (unsafe_get a i) !r
done;
!r
(* duplicated from array.ml *)
let exists p a =
let n = length a in
let rec loop i =
if i = n then false
else if p (unsafe_get a i) then true
else loop (i + 1) in
loop 0
(* duplicated from array.ml *)
let for_all p a =
let n = length a in
let rec loop i =
if i = n then true
else if p (unsafe_get a i) then loop (i + 1)
else false in
loop 0
(* duplicated from array.ml *)
let mem x a =
let n = length a in
let rec loop i =
if i = n then false
else if compare (unsafe_get a i) x = 0 then true
else loop (i + 1)
in
loop 0
(* mostly duplicated from array.ml, but slightly different *)
let mem_ieee x a =
let n = length a in
let rec loop i =
if i = n then false
else if x = (unsafe_get a i) then true
else loop (i + 1)
in
loop 0
(* duplicated from array.ml *)
exception Bottom of int
let sort cmp a =
let maxson l i =
let i31 = i+i+i+1 in
let x = ref i31 in
if i31+2 < l then begin
if cmp (get a i31) (get a (i31+1)) < 0 then x := i31+1;
if cmp (get a !x) (get a (i31+2)) < 0 then x := i31+2;
!x
end else
if i31+1 < l && cmp (get a i31) (get a (i31+1)) < 0
then i31+1
else if i31 < l then i31 else raise (Bottom i)
in
let rec trickledown l i e =
let j = maxson l i in
if cmp (get a j) e > 0 then begin
set a i (get a j);
trickledown l j e;
end else begin
set a i e;
end;
in
let trickle l i e = try trickledown l i e with Bottom i -> set a i e in
let rec bubbledown l i =
let j = maxson l i in
set a i (get a j);
bubbledown l j
in
let bubble l i = try bubbledown l i with Bottom i -> i in
let rec trickleup i e =
let father = (i - 1) / 3 in
assert (i <> father);
if cmp (get a father) e < 0 then begin
set a i (get a father);
if father > 0 then trickleup father e else set a 0 e;
end else begin
set a i e;
end;
in
let l = length a in
for i = (l + 1) / 3 - 1 downto 0 do trickle l i (get a i); done;
for i = l - 1 downto 2 do
let e = (get a i) in
set a i (get a 0);
trickleup (bubble i 0) e;
done;
if l > 1 then (let e = (get a 1) in set a 1 (get a 0); set a 0 e)
(* duplicated from array.ml, except for the call to [create] *)
let cutoff = 5
let stable_sort cmp a =
let merge src1ofs src1len src2 src2ofs src2len dst dstofs =
let src1r = src1ofs + src1len and src2r = src2ofs + src2len in
let rec loop i1 s1 i2 s2 d =
if cmp s1 s2 <= 0 then begin
set dst d s1;
let i1 = i1 + 1 in
if i1 < src1r then
loop i1 (get a i1) i2 s2 (d + 1)
else
blit src2 i2 dst (d + 1) (src2r - i2)
end else begin
set dst d s2;
let i2 = i2 + 1 in
if i2 < src2r then
loop i1 s1 i2 (get src2 i2) (d + 1)
else
blit a i1 dst (d + 1) (src1r - i1)
end
in loop src1ofs (get a src1ofs) src2ofs (get src2 src2ofs) dstofs;
in
let isortto srcofs dst dstofs len =
for i = 0 to len - 1 do
let e = (get a (srcofs + i)) in
let j = ref (dstofs + i - 1) in
while (!j >= dstofs && cmp (get dst !j) e > 0) do
set dst (!j + 1) (get dst !j);
decr j;
done;
set dst (!j + 1) e;
done;
in
let rec sortto srcofs dst dstofs len =
if len <= cutoff then isortto srcofs dst dstofs len else begin
let l1 = len / 2 in
let l2 = len - l1 in
sortto (srcofs + l1) dst (dstofs + l1) l2;
sortto srcofs a (srcofs + l2) l1;
merge (srcofs + l2) l1 dst (dstofs + l1) l2 dst dstofs;
end;
in
let l = length a in
if l <= cutoff then isortto 0 a 0 l else begin
let l1 = l / 2 in
let l2 = l - l1 in
let t = create l2 in
sortto l1 t 0 l2;
sortto 0 a l2 l1;
merge l2 l1 t 0 l2 a 0;
end
let fast_sort = stable_sort
(* duplicated from array.ml *)
let to_seq a =
let rec aux i () =
if i < length a
then
let x = unsafe_get a i in
Seq.Cons (x, aux (i+1))
else Seq.Nil
in
aux 0
(* duplicated from array.ml *)
let to_seqi a =
let rec aux i () =
if i < length a
then
let x = unsafe_get a i in
Seq.Cons ((i,x), aux (i+1))
else Seq.Nil
in
aux 0
(* mostly duplicated from array.ml *)
let of_rev_list l =
let len = List.length l in
let a = create len in
let rec fill i = function
[] -> a
| hd::tl -> unsafe_set a i hd; fill (i-1) tl
in
fill (len-1) l
(* duplicated from array.ml *)
let of_seq i =
let l = Seq.fold_left (fun acc x -> x::acc) [] i in
of_rev_list l
let map_to_array f a =
let l = length a in
if l = 0 then [| |] else begin
let r = Array.make l (f (unsafe_get a 0)) in
for i = 1 to l - 1 do
Array.unsafe_set r i (f (unsafe_get a i))
done;
r
end
let map_from_array f a =
let l = Array.length a in
let r = create l in
for i = 0 to l - 1 do
unsafe_set r i (f (Array.unsafe_get a i))
done;
r
end
module ArrayLabels = Array