You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
This project aims to add support for executing multiple threads of OCaml
code in parallel within the same process. There are two sides to this
project:
Creating a multicore OCaml runtime.
Creating programming models and libraries to support parallel
programming in OCaml.
Multicore runtime
The basic idea of this runtime is to allow multiple OCaml runtimes
(called contexts) to exist in the same process, and then to add a
shared heap for objects that can be accessed by multiple contexts.