Comment What makes the K-computer fast? (Score 2) 179
Comment Re:Parallelism is very easy,provided you don't do (Score 1) 196
Comment Re:Parallel programming is garbage (Score 1) 196
Comment Re:Parallel programming *NOT* widely needed (Score 1) 196
Comment Re:Parallel programming *NOT* widely needed (Score 1) 196
Comment Re:Parallelism is very easy,provided you don't do (Score 1) 196
Comment Re:Poor choice of language (Score 1) 196
Comment Re:Parallel programming *NOT* widely needed (Score 1) 196
Comment Re:Honestly... (Score 1) 196
Comment Re:Parallel programming is garbage (Score 1) 196
Comment Re:PLC programmers have been doing this for years. (Score 1) 196
Comment Re:Functional programming (Score 1) 196
Comment Re:Honestly... (Score 1) 196
...very simple article...was expecting something more technical!
Anyway, cheers for the effort to write it!
Ps. Looks like he discovered an open secret
In my defense, I wasn't targeting parallel programming experts:-) The theme of my post was to familiarize people who don't know parallel programming with the challenges.
Comment Re:The problem: too much data sharing (Score 1) 196
The basic problem with parallel programming is that, in most widely used languages, all data is by default shared by all threads. C, C++, and Python all work that way. The usual bug is race conditions.
There have been many languages for parallel programming which don't have default sharing, but they've never taken over outside some narrow niches. Partly because most of them weren't that useful outside their niche.
The other classic problem is that in most shared-data languages with locks, the language doesn't know what the lock is protecting. So you can still code race conditions by accident.
Hey, my concern is that there is lots of code where I do want to assume sharing (since its easier to think that way for some problems). MPI is kind of like what you are saying and programming in MPI is not much fine either.