Browse thread
64-bit OCaml?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | John Carr <jfc@M...> |
| Subject: | Re: [Caml-list] 64-bit OCaml? |
> Also, the only situations where 64-bit code is beneficial are 1- large > integer arithmetic (bignums, crypto), and 2- exploiting more than 4 Gb > of RAM. 3 - some floating point intensive code if unaligned accesses are slow On 32 bit machines heap values are only 32 bit aligned and loads and stores of 64 bit floats may be slower due to misalignment. The performance impact varies by CPU.