I\'m interested in using OCaml for a project, however I\'m not sure about where its parallelization capabilities are anymore. Is there a message passing ability in OCaml? Is O
BSMLlib provides a simplified programming interface for data-parallel programming in OCaml. Its execution amounts to BSP-style message passing but it is deterministic and even declarative for a subset of OCaml. The key concept is the 'a par type which corresponds to a vector of values, one per process.
http://traclifo.univ-orleans.fr/BSML/ http://fr.wikipedia.org/wiki/Bulk_Synchronous_Parallel_ML
Gaétan Hains University Paris-Est