Hacker News new | ask | show | jobs
by Certhas 634 days ago
The question really is if one couldn't make multiprocess better instead of multithreaded. I did a ton of MPI work with python ten years ago already.

What's more I am now seeing in Julia that multithreading doesn't scale to larger core counts (like 128) due to the garbage collector. I had to revert to multithreaded again.

1 comments

I assume you meant you had to revert to multiprocess?
Yes exactly. Thanks.