Linked by Thom Holwerda on Tue 1st Apr 2008 15:52 UTC, submitted by Dan Warne
Intel Intel today revealed it can convert single threaded software to multithreaded mode without any code modification. The new 'speculative parallel threading' process monitors software and examines whether its processes can be run in parallel. If they can execute succesfully, the software can be recompiled to run as a multithreaded app. Intel says it has realised that programmers are going to need machine help to get software running as multithreaded. "We can't blame the programmers," an Intel spokesman said. "The industry has been complaining for 30 years about how difficult parallel programming is."
Thread beginning with comment 307592
To view parent comment, click here.
To read all comments associated with this story, please click here.
It's true but...
by Mapou on Tue 1st Apr 2008 18:09 UTC in reply to "Hope it's true..."
Mapou
Member since:
2006-05-09

It's true. There is at least one startup in Massachussets that has been trying the same approach. The problem is, it's just not very effective. For example, I doubt that it can parallelize a quicksort algorithm, a perfect candidate for parallel processing. If it were any good, Intel, Microsoft and AMD would not continue to pour hundreds of millions of dollars into research labs around the world to find a solution to the parallel programming problem.

Truth is, Intel is scared. They are already comitted to the multithreaded route and, at this late stage of the game, they can't go back and change their multicore strategy without losing billions of dollars. Too bad. In my opinion, that's exactly what's going to happen. To find out why multithreading is not part of the future of parallel programming, read 'Nightmare on Core Street':

http://rebelscience.blogspot.com/2008/03/nightmare-on-core-street.h...

Reply Parent Bookmark Score: 5

RE: It's true but...
by flanque on Tue 1st Apr 2008 20:32 in reply to "It's true but..."
flanque Member since:
2005-12-15

I read that article as well as the alternative it suggested. It's actually really really good reading for a quiet evening in.

I'm still having difficulties getting my head around the alternative approach with signals, nodes, etc

I'd highly recommend anyone who's interested in programming to read it.

Reply Parent Bookmark Score: 2

RE: It's true but...
by Almafeta on Wed 2nd Apr 2008 01:33 in reply to "It's true but..."
Almafeta Member since:
2007-02-22

It's true. There is at least one startup in Massachussets that has been trying the same approach. The problem is, it's just not very effective.


For now, it's not very effective.

10 to 20 years down the road, compilers producing multithreaded apps out of singlethread code might just be another type of optimization.

Reply Parent Bookmark Score: 2

RE[2]: It's true but...
by Morph on Wed 2nd Apr 2008 14:54 in reply to "RE: It's true but..."
Morph Member since:
2007-08-20

10 to 20 years down the road, programmers producing singlethreaded code might just be another type of anachronism ;)

Reply Parent Bookmark Score: 1

RE: It's true but...
by Frobozz on Wed 2nd Apr 2008 02:49 in reply to "It's true but..."
Frobozz Member since:
2005-12-04

For example, I doubt that it can parallelize a quicksort algorithm, a perfect candidate for parallel processing.

Should it really have to though? Wouldn't it be better to have a standard library of routines and have it designed to use threads so the developer doesn't have to think about it?

Something I don't understand is why the C++ standard library hasn't been updated to include a threading API.

Reply Parent Bookmark Score: 1

RE: It's true but...
by PlatformAgnostic on Wed 2nd Apr 2008 07:17 in reply to "It's true but..."
PlatformAgnostic Member since:
2006-01-02

After following the large number of links with repeated information to get to that author's point, I think it's pretty mundane. They've tried this fine-grained message passing approach before in high performance computing applications (there was a company called Thinking Machines that did this) and found it to be difficult to program for a useful task. A bunch of DoD money was wasted on these projects.

There are cool algorithms which you can do in such fine-grained systems (for instance, GPGPU algorithms for data processing), but most day-to-day computer operations do not really require this work. Maybe if this sort of research pays off, we might have a good speech or vision recognition system, but it won't make MSWord run faster.

Reply Parent Bookmark Score: 2