Hacker News new | ask | show | jobs
by bwackwat 3413 days ago
Modern C++ has some great, simple constructs like std::thread and std::mutex.

What kind of parallelization do you need?

1 comments

seems like OP wants something without explicit threads/locks if they mentioned Kokkos/OpenMP type constructs...just a hunch.
Right. I think it is quite practical to wrap std::thread into "tasks" using std::mutex and/or std::atomic<T>.

If anyone has a multi-threaded conundrum, I'd be glad to discuss it.