Thread: Any good books on multi-threading or programming for dual processors?

  1. #1
    Registered User
    Join Date
    Jun 2007
    Posts
    14

    Any good books on multi-threading or programming for dual processors?

    Does anyone know of any good books for programming for dual processors? Or any good websites that show general programming for multiple processors?

  2. #2
    Registered User
    Join Date
    Nov 2005
    Posts
    673
    This would depend greatly on the platform you are developing on.

  3. #3
    Registered User
    Join Date
    Jun 2007
    Posts
    14

    Multi threading for a pc

    Platform is for a PC.

  4. #4
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    Windows? Linux? Solaris? Proprietary OS?

    The options are almost endless.

    I'm pretty sure both Intel and AMD's optimization guides will have SOME information on the subject.

    However, the solutions for a particular type of problem depends very much on the problem itself - it's relatively easy if it's a math problem with many calculations that are relatively independent (FEM - Finite Element Method is a typical example, where some structure is "sliced" into many thin slices and each slice is calculated independently of other slices). Calculations which depends on the result of a previous calculation, or processing data that is shared between threads gets much harder.

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

  5. #5
    Registered User
    Join Date
    Jun 2007
    Posts
    9

    Here's a couple

    Hey bud, here's a couple of books for ya to try out.

    Intel threading building blocks
    Modern multithreading

    Hope it helps!

  6. #6

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Good C Books
    By mattz in forum C Programming
    Replies: 10
    Last Post: 12-05-2001, 11:59 AM
  2. Looking for some good tutorials or books
    By Unregistered in forum C++ Programming
    Replies: 2
    Last Post: 11-21-2001, 01:24 PM
  3. Good Books?
    By Unregistered in forum C++ Programming
    Replies: 8
    Last Post: 11-07-2001, 05:41 PM
  4. Good programming with windows books?
    By Zoopy in forum Windows Programming
    Replies: 3
    Last Post: 09-20-2001, 01:44 PM
  5. Good C++ books?
    By Violent Ben in forum C++ Programming
    Replies: 4
    Last Post: 09-19-2001, 06:32 AM