Sudha Parimala
Sudha Parimala
@bcc32 you can install the compiler with: ``` opam switch create 5.00.0+trunk ```
@kit-ty-kate any idea why I'm getting this error on trunk (is it missing some patched dependency?) ``` src/.base.objs/byte/base__Import.cmo [...] # File "src/import.ml", line 3, characters 8-40: # 3 | include...
Fixed by #38.
Thanks for the report! Could you please mention which version of `opam` you're on? I'm not able to reproduce this error on a `5.0.0` switch.
Hey @nikochiko, thanks for your interest! MSQueue is a good one to start with. The examples can go to a new `examples` directory.
This is covering more functionality now. I like how the examples are self contained - it will be easy to move this to another format of documentation/tutorial if needed (not...
I've rebased the PR to reflect updates in the repo and the name change. Will merge once the CI is happy.
> This "lockfree" word is very misleading I don't agree that it's misleading. Lockfree programming has been around for a while and practised by folks doing concurrent programming even in...
Hi @tjazerzen, One can do a naive version of `parallel_map` with a `parallel_for`. ```ocaml let parallel_map f arr pool = let len = Array.length arr in let res = Array.make...
> Your default choice of `recommended_count - 1` assumes that there is a single pool, and that there is a single non-pool domain. Are those reasonable assumptions? I think that's...