6

!rant
Julia's mutlithreading macro is soooo awesome and clean for when you want to do computation work :3

Comments
  • 3
    I kinda hate that syntax, similar with for inside array in python, I have to break it down first to understand that
  • 1
    @devTea I am looking at this for running mathematical computation. I honestly couldn't care about the back-end here so long as I can make my computation faster by adding a macro to my for-loop.
  • 1
    Intel Threaded Building Blocks makes this trivial to do in C++ too, you just have to pass in ranges and a lambda which will be run on the threads. Super simple, and has common stuff like parallel for.
Add Comment