Intel's "Unwelcome Advice"

Miscellaneous Forums/General Discussion/Intel's "Unwelcome Advice"

Just found this and thought that maybe you guys will find it interesting, too:

http://blogs.intel.com/research/2008/06/unwelcome_advice.php


Ultimately, the advice I’ll offer is that these developers should start thinking about tens, hundreds, and thousands of cores now in their algorithmic development and deployment pipeline. This starts at a pretty early stage of development; usually, the basic logic of the application should be influenced because it drives the asymptotic parallelism behaviors. Consider a common pattern of optimization we’ve seen in single core tuning: the use of locally adaptive algorithms to heuristically reduce the computation time. By definition, this introduces dependences in the computation that are beneficial in the single core case but limit parallelism for multi-core. Similar choices are made about libraries and programming languages that optimize for single core performance (or even small-way parallelism), but sacrifice long-term scalability.



An interesting read. Looking forward to the day that Erlang is considered more performance minded than C. :o>

Very interesting. Strange hearing Intel thrash Nvidia's cuda effort one day and then come out for parallelism the next.
@Flameduck Erlang is certainly in need of some performance enhancing somewhere :) I really,really like Stackless Python. Same situation as Erlang, though. Needs some performance tweaking. I really like threadlets. Now if each was dispatched to it's own proc ... that would be very nice.