Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a book or books about multicore, multithreaded programming. The perfect book should focus on best practices and maybe include a bit of theory background. I'm not interested in a book which only describes a single library and focuses on its API.

OS actually doesn't matter.

share|improve this question
Is there a specific OS you're looking for? – unforgiven3 Aug 12 '09 at 19:07

closed as not constructive by Jeremy Banks, Kev Sep 17 '11 at 22:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 24 down vote accepted

Herb Sutter has been writing an on-going, monthly column for Dr. Dobbs called Effective Concurrency. It is a series of very useful articles on concurrency theory and practice that could very well form a book.

His blog, Sutter's Mill, has links to all of the articles (22+) that have been published thus far.

Oh, yeah and its free (as in beer).

share|improve this answer
3  
+1 For linking the superb Herb Sutter's pappers – fco.javier.sanz Aug 12 '09 at 21:51

Technical Books for Multi-Core Software Developers is a great list of books on parallel programming that are recommended by Intel. The list includes:

  • The Art of Concurrency - A Thread Monkey's Guide to Writing Parallel Applications, by Clay Breshears
  • Intel® Threading Building Blocks: Outfitting C++ for Multi-core Processor Parallelism, by James Reinders
  • Patterns for Parallel Programming, by Timothy G. Mattson, Beverly A. Sanders, Berna L. Massingill
  • Principles of Parallel Programming, by Calvin Lin and Larry Snyder.
  • Concurrent Programming on Windows, by Joe Duffy.
  • Multi-Core Programming Increasing Performance through Software Multi-threading, by Shameem Akhter and Jason Roberts.
  • Software Development for Embedded Multi-Core Systems, by Max Domeika
  • Real World Haskell, by John Goerzen, Bryan O'Sullivan, Donald Bruce Stewart
  • Using OpenMP Portable Shared Memory Parallel Programming, by Barbara Chapman, Gabriel Jost and Ruud Van Der Pas
  • Programming with POSIX® Threads, by David R. Butenhof
  • Win32 Multithreaded Programming, by Cohen and Woodring
  • Java Concurrency in Practice, by Brian Goetz et al.
  • Concurrent Programming in Java, by Douglas Lea
  • Principles of Concurrent Programming, by M. Ben-Ari
  • Principles of Concurrent and Distributed Programming (2nd edition), *by M. Ben-Ari
  • Parallel Programming in C with MPI and OpenMP,* by Michael J. Quinn

It's available at http://softwarecommunity.intel.com/articles/eng/1567.htm with a short description of each book.

share|improve this answer

One of my old professors, Doug Lea, at SUNY Oswego wrote this book: Concurrent Programming in Java: Design Principles and Pattern. I highly recommend it, even if you don't necessarily work in Java. It has a lot of very good, generalized information that can be adapted (with a little bit of creativity) to other languages/development environments.

share|improve this answer
1  
+1 excellent book – iain Aug 12 '09 at 22:45

Try my book "The practice of parallel programming", available online at https://sourceforge.net/projects/tpopp/ . Though it doesn't go into the theory at all, it's all about the best practices. The printed version will be coming soon.

share|improve this answer
3  
+1 for writing your own book – devin May 7 '10 at 20:16
+1 reason same as devin – Pranit P Kothari Mar 11 at 8:06

This is one of only a handful of books that show you how code can be parallelized to take advantage of multi-cores. The Art of Concurrency

share|improve this answer
This looks like a good book. Any thoughts on how this compares to other books like Java Concurrency in Practice or The Art of Multiprocessor Programming? – Adam Jaskiewicz Aug 12 '09 at 20:04
@Adam not sure, but I have the latter and I really like it. – Jeremy Powell Aug 12 '09 at 20:43

My university uses Concurrency: State Models and Java Programs in the course that discusses concurrent applications.

share|improve this answer

I like this one:

Art of Multiprocessor Programming

But haven't checked the other recommendations.

It's quite nitty-gritty, covering memory bus issues (not cache so much), lock-free algorithms, and theory. It uses Java but you can look up the original algorithms and re-implement them in C++ if you need to. If you need an introduction to threading this might not be for you but for a more serious look at how to get the most out of a shared memory, multi-processor machine it's great.

share|improve this answer

Consider the functional programming and unique software transactional memory combo that is Clojure; see online info and relevant chapters of Programming Clojure for more info. http://www.pragprog.com/titles/shcloj/programming-clojure

share|improve this answer

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