Slashdot Mirror


Scaling To a Million Cores and Beyond

mattaw writes "In my blog post I describe a system designed to test a route to the potential future of computing. What do we do when we have computers with 1 million cores? What about a billion? How about 100 billion? None of our current programming models or computer architecture models apply to machines of this complexity (and with their corresponding component failure rate and other scaling issues). The current model of coherent memory/identical time/everything can route to everywhere; it just can't scale to machines of this size. So the scientists at the University of Manchester (including Steve Furber, one of the ARM founders) and the University of Southampton turned to the brain for a new model. Our brains just don't work like any computers we currently make. Our brains have a lot more than 1 million processing elements (more like the 100 billion), all of which don't have any precise idea of time (vague ordering of events maybe) nor a shared memory; and not everything routes to everything else. But anyone who argues the brain isn't a pretty spiffy processing system ends up looking pretty silly. In effect, modern computing bears as much relation to biological computing as the ordered world of sudoku does to the statistical chaos of quantum mechanics.

1 of 206 comments (clear)

  1. Re:Reminds me of Hillis by swilver · · Score: 0, Troll

    And what these researchers don't seem to get is that for application flow and implementing business logic, which is what most programmers are concerned with, there's no need for programming for multiple CPU's.

    Everything that really sucks the life out of your CPU/GPU is usually trivial to run in parallel (and the most time critical stuff is doing so already), and it perhaps represent as little as 5% of all code run by these processors. All the other code that most programmers concern themselves with daily does not need a new programming model.