up vote 0 down vote favorite
2
share [g+] share [fb]

I am looking for strong references on parallel computing and numerical methods. While there are a lot of questions and posted references on these topics independently, I would like to find a body of knowledge dedicated to their intersection.

For example

  • What algorithms (such as an eigen decomposition or a matrix inverse) are well suited for parallelization and which aren't?
  • What is the best algorithm for solving a linear program on a given parallel architecture?
  • What are standard approaches and notation for decomposing an algorithm into units of execution?

My desire is to find authoritative sources that move beyond fundamentals and get more into hardcore algorithm design and understanding of the state-of-the-art.

Do you have any suggestions?

link|improve this question

1  
I suggest you get two books and read them both at the same time. – Noon Silk Sep 8 '09 at 2:25
feedback

3 Answers

Parallel Programming in C with MPI and OpenMP by Michael J. Quinn

Hope this fulfills your needs

link|improve this answer
feedback

You may find this book interesting, as Functional Programming is big into parallel processing. :)

http://www.ffconsultancy.com/products/fsharp_for_numerics/

link|improve this answer
feedback
up vote 0 down vote accepted

To list a few resources, check out

  1. Sutter's Mill - Series on Effective Concurrency - Basic overview of a lot of issues around concurrent programming
  2. Top500 - Books
  3. Top 500 - Papers
  4. IEEE Signal Processing Magazine had a 2 part series on modern parallelization in 2010
  5. Introduction to Parellel Computing
  6. Sourcebook for Parallel Computing
  7. The Art of Multiprocessor Computing
  8. Programming Massively Parallel Processors: A Hands-on Approach - an introductory course in NVIDIA's CUDA
  9. CUDA by Example - an alternate to the above. Covers some additional topics like graphics interop.
  10. Patterns for Parallel Programming - kinda boring but methodical in its approach
  11. Browse through the library references. There are a number of journals on parallel computing that range from obscure hardware issues to general algorithm development.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.