Slashdot Mirror


Blue Gene/L Tops Its Own Supercomputer Record

DIY News writes "Lawrence Livermore National Laboratory and IBM unveiled the Blue Gene/L supercomputer Thursday and announced it's broken its own record again for the world's fastest supercomputer. The 65,536-processor machine can sustain 280.6 teraflops. That's the top end of the range IBM forecast and more than twice the previous Blue Gene/L record of 136.8 teraflops, set when only half the machine was installed."

13 of 238 comments (clear)

  1. Perhaps we could use it to.. by 278MorkandMindy · · Score: 3, Interesting

    ..figure out what the hell we are going to be doing for energy in 15 years??

    "Look to the future and the present will be safe"

  2. That's a bloody fast supercomputer... by kyle90 · · Score: 4, Interesting

    The damn thing's smarter than I am. Well, that's taking an estimate of 100 teraflops for the human brain, which seems to be popular.

    --
    Real_men_don't_need_spacebars.
    1. Re:That's a bloody fast supercomputer... by Anonymous Coward · · Score: 1, Interesting

      Some of the replies below comment on the operations-per-second estimates of the brain, so I won't. There is, however, a really interesting project at the Brain Mind Institute in Switzerland to simulate, in large detail, a full neocortical column of the brain on several BG/L racks, donated by IBM for this cause. As a consequence, this project is called the "Blue Brain Project", and you can read a bit more about it here:

      IBM
      http://domino.research.ibm.com/comm/pr.nsf/pages/n ews.20050606_CognitiveIntelligence.html

      New Scientist
      http://www.newscientist.com/article.ns?id=dn7470

      Main site (which doesn't seem to be working at this moment!)
      http://bluebrainproject.epfl.ch/

  3. Re:hmmm by CuteVlogger · · Score: 2, Interesting

    Because it's at IBM, it's possible that it'll be used for their World Community Grid at some point, probably when it's idle... The current project there is, in fact, protein folding.

  4. Why'd they get the prediction wrong? by hansreiser · · Score: 2, Interesting

    The legitimate thing that I can imagine is if it was a cost based contract that was given out before the cost of the hardware was known.

    Was it?

  5. Re:hmmm by QuantumG · · Score: 2, Interesting

    I think this is more appropriate.

    --
    How we know is more important than what we know.
  6. Cool by sheuer · · Score: 4, Interesting

    Back when It was only half installed I got to take a tour of it while it was in Rochester, MN... Got to walk through it and touch it. Turns out the computer that controls blue gene takes up about half as much space as blue gene itself.

  7. Re:compiler? by joib · · Score: 3, Interesting

    Actually, the system is provided with the IBM XL family of compilers.

  8. Notice that performance had increased per cpu... by Anonymous Coward · · Score: 5, Interesting

    Notice that the performance has actually increased PER proccessor as you add more proccessors... This is very remarkable in computer technology.

    Normally when you add cpus to a computer you get a increase in performance, but it doesn't increase linearly with each cpu. You have one cpu you have 100% performance, add one more and you may have 180% the performance and add 2 more you may have 300% of the performance etc etc.

    Notice that with half the machine there it got 138 GFlops.

    So if you doubled the size of the machine you'd expect to get something like 260 Gflops per second.

    But you have 280 Gflops per second.

    This pretty much means that as you add cpus the performance of each cpu actually increases slightly. That's a exponentional growth rate, at the beginning of the curve.

    Of course there has to be a technical limit to the system and the amount of space, heat, and electricity it can handle.. but technically if you double the size of the cluster again I wouldn't be suprised if you'd get close to 750 GFlops per second performance.

    This is some seriously hardcore stuff, the future of computing hardware. Todays supercomputer, tomorrow's desktop.. I can't wait.

  9. am i the only one to notice ? by naden · · Score: 2, Interesting

    65536 processors = 64K processors.

    damn that IBM, they take geekiness to just a whole different place.

    --
    Funtage Factor: Purple
  10. Re:still en vogue? by lightversusdark · · Score: 2, Interesting

    What do you think this machine is doing? You use this machine to calculate how far you can push your reactors to provide the energy you're talking about.

    --
    "There is nothing nice about Steve Jobs and nothing evil about Bill Gates." - Chuck Peddle
  11. Weather by Voltageaav · · Score: 2, Interesting

    The main drawback to forecasting models is that it takes soo long to run all the data, so we have to cut back on the data so that we can actually see what's forecast before it happens. With this this thing running an expanded version of the GFS with 10KM resolution, we might be able to actually get it right for once. ;)

    --
    Someone save me from this sanity.
  12. Re:compiler? by Anonymous Coward · · Score: 1, Interesting

    In theory, OpenMP allows you to do some nice things you can't accomplish well in MPI - load balancing the work being done on several CPUs on a node being one of the most important. However, in practice, the addition of OpenMP often complicates a code for little benefit because:

      a) If your code load balances on a node but not between nodes, you're still rate-limited in domain decomposition type of problems by the data taking the longest step. There are strategies to minimize this, but when we're talking about codes running on 64K processors, this is already a big worry!

      b) More importantly, the early benefit OpenMP gave over MPI when running on shared memory is no longer there! Most modern MPI distributions can optimise communication from one CPU to another (via MPI calls) that happen to be on the same node to use shared memory segments instead of sending the message out to the wire.

        The added complexity of hybrid models are rarely worth it in these days of (generally speaking) large numbers of small-way SMP nodes. Perhaps systems like NASA's 20 x 512-CPU system are more amenable to such things, and with the upcoming Horus chipset for up to 32-way Opterons, this could see a revival, but MPI is by far the dominant paradigm, and rightfully so.