From: "Mr. Herr" <misterherr@freenet.de>
To: caml-list@inria.fr
Subject: Re: [Caml-list] Comparing floats
Date: Thu, 23 Jul 2015 11:54:38 +0200 [thread overview]
Message-ID: <55B0B9DE.2070609@freenet.de> (raw)
In-Reply-To: <55B0AD74.2030302@inria.fr>
On 23.07.2015 11:01, Xavier Leroy wrote:
> On 23/07/2015 10:35, Sébastien Hinderer wrote:
>> What's the most efficient way to compare floats, please?
>> Is it the polymorphic compare function, or is there a more specialized
>> version of it?
> You'll get good performance by type-specializing Pervasives.compare:
>
> let compare_float (x: float) (y: float) = compare x y
>
> If you're absolutely sure your floats are not NaN, you can shave a few
> CPU cycles:
>
> let compare_float (x: float) (y: float) =
> if x < y then -1 else if x > y then 1 else 0
>
The assembler code says compare_float is directly compiled to a function that
compares the 2 values
in xmm0 and xmm1 registers, while Pervasives.compare is a library function written in
C doing the same thing.
The assembler code looks very very good.
But I doubt that you could measure a difference. The type system will always
yield the float_compare function, doesn't it? So far my quickcheck...
--- Assembler code of your suggested function:
camlTest_comparefl3__compare_float_1008:
.cfi_startproc
.L102:
movsd (%rbx), %xmm0
movsd (%rax), %xmm1
comisd %xmm1, %xmm0
jbe .L101
movq $-1, %rax
ret
.align 4
.L101:
comisd %xmm0, %xmm1
jbe .L100
movq $3, %rax
ret
.align 4
.L100:
movq $1, %rax
ret
.cfi_endproc
--- C code of library function:
CAMLprim value caml_float_compare(value vf, value vg)
{
double f = Double_val(vf);
double g = Double_val(vg);
if (f == g) return Val_int(0);
if (f < g) return Val_int(-1);
if (f > g) return Val_int(1);
/* One or both of f and g is NaN. Order according to the
convention NaN = NaN and NaN < x for all other floats x. */
if (f == f) return Val_int(1); /* f is not NaN, g is NaN */
if (g == g) return Val_int(-1); /* g is not NaN, f is NaN */
return Val_int(0); /* both f and g are NaN */
}
next prev parent reply other threads:[~2015-07-23 9:58 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-23 8:35 Sébastien Hinderer
2015-07-23 8:46 ` Francois Berenger
2015-07-23 9:05 ` Mr. Herr
2015-07-23 9:01 ` Xavier Leroy
2015-07-23 9:35 ` Sébastien Hinderer
2015-07-23 9:54 ` Mr. Herr [this message]
2015-08-04 9:06 ` Goswin von Brederlow
2015-07-23 11:34 ` Boris Yakobowski
2015-07-23 15:14 ` Jacques-Henri Jourdan
2015-07-23 16:34 ` Boris Yakobowski
2015-07-23 17:00 ` Xavier Leroy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55B0B9DE.2070609@freenet.de \
--to=misterherr@freenet.de \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox