What is the state of OCaml's parallelization abilities?

后端 未结 3 1645
我寻月下人不归
我寻月下人不归 2021-01-31 15:04

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

3条回答
  •  后悔当初
    2021-01-31 15:41

    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

提交回复
热议问题