Hacker News new | ask | show | jobs
by rbehrends 3354 days ago
Strictly speaking, it's not parallelism, but multi-threaded code that operates on shared memory and which is not limited to arrays over scalars.
1 comments

You're talking about data parallelism, the OP is talking about task parallelism. Since in both cases things are occurring in parallel it makes sense to use 'parallelism' as an umbrella term for both and it was clear from context here that it was task parallelism under discussion.
I am talking about both. You can have task parallelism in a distributed system with no shared memory, after all.