package carray
Install
Dune Dependency
Authors
Maintainers
Sources
md5=28991f1b5a3f1c2ba18b085e7e8da5a3
sha512=497ee34ec4108bbe3c8c5531b940c7a2b19c628adbd9d2af6d97f5a25a6ea80999cc20e885a9a9ddfb39993eda91eb66e05fb65fd7b4e1d9bd19bdd4ba5982ec
README.md.html
ocaml-carray: contiguous C arrays in OCaml
Motivation
OCaml arrays are not always contiguous piece of memory, requiring accessing different chunks of memory when accessing individual elements. When requiring a value in memory, the CPU will fetch the RAM and load not only the particular value but a memory page (a contiguous piece of memory) and add it to its cache. The CPU will use its cache to load the values in its registers. It is not efficient with large OCaml arrays as the CPU will constantly fetch the RAM to load different memory pages in its cache.
Also, when using the C FFI, the user must know the memory representation of an array and use the non user-friendly low-level interface macro Field
.
This work
This library provides a polymorphic interface mocking a subset of the Array
interface to work with contiguous piece of memory. Using the library should be as easy as adding module Array = Carray
.
A C macro Carray_val
is also provided for developers writing bindings and requires to simply cast in the underlying C type.
It has also been observed sub arrays are sometimes used for read-only operations. However, Array.sub
allocates a fresh copy of the requested sub part. Carray
leverages this memory cost by providing noalloc variants, like sub_noalloc
.
Performances
The concept has been tested and used in real world applications like the polynomial library used by Nomadic Labs to implement zk-rollups. A speed up of around 50% has been observed when using contiguous arrays compared to OCaml arrays to compute NTT/FFT.
Usage
This library is experimental. Use this library with caution. The interface might change in the future.
opam install carray.0.0.1