Re: [Caml-list] Re: Shared memory parallel application: kernel threads

2010-03-13 Thread Hugo Ferreira
Philippe Wang wrote: Hi, If your program doesn't need usage-proved stability, you may be interested in the OCaml for Multicore project which provides an alternative runtime library (prototype quality) which allows threads to compute in parallel. http://www.algo-prog.info/ocmc/ Appreciate the

[Caml-list] Re: Shared memory parallel application: kernel threads

2010-03-12 Thread Sylvain Le Gall
On 12-03-2010, Hugo Ferreira h...@inescporto.pt wrote: Hello, I have opted to use kernel-level threads that allow use of the (multi-core) processors but still allow easy access to shared memory. I have done a cursory look at: - Ocaml.Threads - Ocaml.Unix (LinuxThreads) - coThreads -

Re: [Caml-list] Re: Shared memory parallel application: kernel threads

2010-03-12 Thread Hugo Ferreira
Sylvain Le Gall wrote: On 12-03-2010, Hugo Ferreira h...@inescporto.pt wrote: Hello, I have opted to use kernel-level threads that allow use of the (multi-core) processors but still allow easy access to shared memory. I have done a cursory look at: - Ocaml.Threads - Ocaml.Unix (LinuxThreads)