Slashdot Mirror


FASTRA II Puts 13 GPUs In a Desktop Supercomputer

An anonymous reader writes "Last year tomography researchers of the ASTRA group at the University of Antwerp developed a desktop supercomputer with four NVIDIA GeForce 9800 GX2 graphics cards. The performance of the FASTRA GPGPU system was amazing; it was slightly faster than the university's 512-core supercomputer and cost less than 4000EUR. Today the researchers announce FASTRA II, a new 6000EUR GPGPU computing beast with six dual-GPU NVIDIA GeForce GTX 295 graphics cards and one GeForce GTX 275. The development of the new system was more complicated and there are still some stability issues, but tests reveal the 13 GPUs deliver 3.75x more performance than the old system. For the tomography reconstruction calculations these researchers need to do, the compact FASTRA II is four times faster than the university's supercomputer cluster, while being roughly 300 times more energy efficient."

8 of 127 comments (clear)

  1. Awesome by enderjsv · · Score: 5, Funny

    Almost meets the minimum requirements for Crysis 2

    1. Re:Awesome by sadness203 · · Score: 4, Funny

      Only if you imagine a beowolf cluster of these
      Here goes the redundant and offtopic mod.

  2. Re:Easy money to be made? by Chirs · · Score: 4, Informative

    Um...read the article?

    The motherboard is a ASUS P6T7 WS Supercomputer.

  3. Re:How fast is this really? by jandrese · · Score: 5, Informative

    If you read the article it tells you that the supercomputer has 256 Opteron 250s (2.4Ghz) and was built 3 years ago. If you have a parallizable problem that can be solved with CUDA, you can get absolutely incredible performance out of off-of-the-shelf GPUs these days.

    --

    I read the internet for the articles.
  4. times less by Tubal-Cain · · Score: 4, Funny

    ...consuming 300 times less power.

    *sigh*

    1. Re:times less by timeOday · · Score: 4, Insightful

      Can we please just officially define "n times less" as "1/n" and not feel bad about it anymore?

  5. Re:GPU accuracy by kpesler · · Score: 5, Informative

    Presently the G200 GPUs in this machine support double-precision, but at about 1/8 the peak rate of single-precision. In practice, since most codes tend to be bandwidth limited, and pointer arithmetic is the same for single and double precision, double-precision performance is usually closer to 1/2 that of single-precision performance, but not always. With the Fermi GPUs to be released early next year, double-precision peak FLOPS will be 1/2 of single-precision peak, just like on present X86 processors. Also note that many scientific research groups, such as my own, have found that contrary to dogma, single-precision is good enough for most of the computation, and that a judicious mix of single and double-precision arithmetic gives high-performance with sufficient accuracy. This is true for some, but not all, computational methods.

  6. Re:That's why I have a problem with the comparison by timeOday · · Score: 4, Insightful

    Take a problem that is all 64-bit integer math and has a branch every couple hundred instructions and GPUs will do for crap on it. However a supercomputer with general purpose CPUs will do as well on it as basically anything else.

    That was always true of supercomputers. In fact the stuff that runs well on CUDA now is almost precisely the same stuff that ran well on Cray vector machines - the classic stereotype of "Supercomputer"! Thus I do not see your point. The best computer for any particular task will always be one specialized for that task, and thus compromised for other tasks.

    BTW, newer GPUs support double precision.