On Jul 4, 2:52 am, Neal <nealcr
...@gmail.com> wrote:
> I've just started working on programming models for many-core
many-core = MIMD and not SIMD
> machines, and was wondering what the state of the art in terms of
the state of the art is somewhat dated.
> parallelization of serial code is. I'm most interested in SIMD
> vectorization right now... does anyone have a point to articles,
> websites, research etc on this topic? Thanks!
http://portal.acm.org/citation.cfm?id=30396 this book describes how one can create a hypothetical architecture of
processors -optimized for certain algorithms eg kalman filters/fast
fourier transforms etc..
you can use the same thing in reverse fashion to decompose a program
into fragments that execute on different processors in an SIMD
machine.
regards
-kamal