<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GigaOM &#187; supercomputer</title>
	<atom:link href="http://gigaom.com/tag/supercomputer/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 03:16:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gigaom.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0db8f6557d022075dbbf010c54d46d93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GigaOM &#187; supercomputer</title>
		<link>http://gigaom.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gigaom.com/osd.xml" title="GigaOM" />
	<atom:link rel='hub' href='http://gigaom.com/?pushpress=hub'/>
		<item>
		<title>While we waste four cores, scientists use a million at a time</title>
		<link>http://gigaom.com/2013/01/28/while-we-waste-four-cores-scientists-use-a-million-at-a-time/</link>
		<comments>http://gigaom.com/2013/01/28/while-we-waste-four-cores-scientists-use-a-million-at-a-time/#comments</comments>
		<pubDate>Mon, 28 Jan 2013 18:46:47 +0000</pubDate>
		<dc:creator>Derrick Harris</dc:creator>
				<category><![CDATA[Hadoop]]></category>
		<category><![CDATA[mapreduce]]></category>
		<category><![CDATA[Multi-core]]></category>
		<category><![CDATA[parallal processing]]></category>
		<category><![CDATA[parallel programming]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[supercomputer]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=604968</guid>
		<description><![CDATA[A group of Stanford researchers recently ran a complex fluid dynamics workload across more than a million cores on the Sequoia supercomputer. It's an impressive feat and might foretell a future where parallel programming becomes commonplace even on our smartphones.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=604968&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Chances are, the quad-core processor powering your desktop computer or high-end laptop is vastly underworked. But it’s not your fault: <a href="http://thecodist.com/article/writing-multithreaded-code-is-like-juggling-chainsaws">Writing code that executes in parallel is difficult</a>, so most consumer applications (save for some compute-intensive video games that really need help, for example) continue to run on just one core at a time. Which makes it all the more impressive that a group of Stanford researchers <a href="http://engineering.stanford.edu/news/stanford-researchers-break-million-core-supercomputer-barrier">recently ran a jet-engine-noise simulation across 1 million cores simultaneously</a>.</p>
<p>As anyone even casually familiar with parallel processing knows, running applications across more nodes means jobs execute faster because they’re able to share the computing workload. The more cores, the faster it runs. This what makes Hadoop, for example, <a href="http://gigaom.com/2012/02/06/what-it-really-means-when-someone-says-hadoop/">so great at processing large chunks of data</a>. The MapReduce framework on which it’s based divvies up the work across nodes and everything they find is stitched back together as the result of a job.</p>
<p>But even Hadoop can only scale to tens of thousands of nodes and, because of its focus on “nodes,” actually <a href="http://gigaom.com/2011/06/28/hadoop-may-be-hot-but-it-needs-to-be-useful/">isn’t really good at utilizing multi-core processors</a> to their fullest (expect to hear more about the limitations of Hadoop at our <a href="http://event.gigaom.com/structuredata/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_campaign=intext&amp;utm_term=604968+while-we-waste-four-cores-scientists-use-a-million-at-a-time&amp;utm_content=dharrisstructure">Structure: Data conference</a> March 20-21 in New York). The IBM-built Sequoia supercomputer (housed at Lawrence Livermore National Laboratory) that the Stanford team used consists of 98,304 processors (or nodes), each containing 16 computing cores. That’s a grand total of 1,572,864 cores, and the researchers were able to use the majority of them, which they claim is a record of some sort.</p>
<div id="attachment_605040" class="wp-caption aligncenter" style="width: 510px"><a href="http://gigaom2.files.wordpress.com/2013/01/seq_config.jpg"><img alt="Sequoia, decomposed" src="http://gigaom2.files.wordpress.com/2013/01/seq_config.jpg?w=708"   class="size-full wp-image-605040"></a><p class="wp-caption-text">Sequoia, decomposed</p></div>
<p>But record or not, that’s an incredibly complex undertaking. Programming the jet-engine simulation meant figuring out how to divvy the code into more than a million different tasks that could run across tens of thousands of nodes and 16 cores within each of those nodes. If even one of those processes is buggy, it could slow down or ruin the whole simulation.</p>
<p>Even in the world of supercomputing, where systems <a href="http://www.top500.org/list/2012/11/">now regularly contain hundreds of thousands of cores</a> — some of them special-purpose GPU co-processors — there’s a shortage of programming talent to actually use them all to their fullest potential. As my colleague Stacey Higginbotham <a href="http://gigaom.com/2011/09/02/supercomputings-problem-isnt-power-its-software/">explained in some time ago</a>, the world of high-performance computing is hurtling toward exascale computing but a bigger problem than energy-consumption might be finding applications that need that much computing power and the algorithms capable of operating at that scale.</p>
<p>Still, the implications of advances in parallel programming are huge — like potentially life-altering huge. This is true not only <a href="http://gigaom.com/2010/05/21/introducing-the-worlds-most-powerful-supercomputer-for-climate-research/">because of the scientific questions we’ll soon be able to answer</a> at speeds inconceivable even a decade ago, but also because of the computing power we’ll all soon be carrying around in our pockets and purses. If you think those multi-core smartphones and tablets are great now because they can run multiple applications at the same time, just wait until their processors are even bigger and badder <a href="http://www.wired.com/gadgetlab/2012/03/how-a-quad-core-chip-would-supercharge-ipad-performance/">and we have more applications</a> — photo- and video-editing, computer-aided design, games and who knows what else — that can actually get the most out of them.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=604968&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=225823"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=225823" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=604968+while-we-waste-four-cores-scientists-use-a-million-at-a-time&utm_content=dharrisstructure">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/05/the-importance-of-putting-the-u-and-i-in-visualization/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=604968+while-we-waste-four-cores-scientists-use-a-million-at-a-time&utm_content=dharrisstructure">The importance of putting the U and I in visualization</a></li><li><a href="http://pro.gigaom.com/2011/11/dissecting-the-data-5-issues-for-our-digital-future/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=604968+while-we-waste-four-cores-scientists-use-a-million-at-a-time&utm_content=dharrisstructure">Dissecting the data: 5 issues for our digital future</a></li><li><a href="http://pro.gigaom.com/2012/11/real-%c2%adtime-query-for-hadoop-democratizes-access-to-big-data-analytics/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=604968+while-we-waste-four-cores-scientists-use-a-million-at-a-time&utm_content=dharrisstructure">Real-­time query for Hadoop democratizes access to big data analytics</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2013/01/28/while-we-waste-four-cores-scientists-use-a-million-at-a-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2013/01/dawn_complete_high-res.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2013/01/dawn_complete_high-res.jpg?w=150" medium="image">
			<media:title type="html">Sequoia</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/9e48ffa0913f65c577727457dd63023f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">dharrisstructure</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2013/01/seq_config.jpg" medium="image">
			<media:title type="html">Sequoia, decomposed</media:title>
		</media:content>
	</item>
		<item>
		<title>Why your next game console ought to be Watson</title>
		<link>http://gigaom.com/2012/12/01/why-your-next-game-console-ought-to-be-watson/</link>
		<comments>http://gigaom.com/2012/12/01/why-your-next-game-console-ought-to-be-watson/#comments</comments>
		<pubDate>Sat, 01 Dec 2012 18:30:41 +0000</pubDate>
		<dc:creator>Roy Bahat, OUYA</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[distribution technologies]]></category>
		<category><![CDATA[gaikai]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[Grand Theft Auto]]></category>
		<category><![CDATA[onlive]]></category>
		<category><![CDATA[Ouya]]></category>
		<category><![CDATA[Roy Bahat]]></category>
		<category><![CDATA[server technology]]></category>
		<category><![CDATA[supercomputer]]></category>
		<category><![CDATA[the-cloud]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=589723</guid>
		<description><![CDATA[Early attempts at cloud-based video gaming were a flop. Roy Bahat, of OUYA, says it's still a worthy pursuit, but should be based on a new generation of games built specifically to take advantage of the cloud's supercomputing strengths.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=589723&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A few years ago, the gaming world was thrilled by the premise that the cloud (the Cloud!) could be harnessed to power games, too &#8212; any game you wanted, anytime, on any device, served from data centers to you. Services like <a href="http://onlive.com">OnLive</a> and <a href="http://www.gaikai.com/about">Gaikai</a> promised freedom from your hardware, the end of the lockout of exclusive games only available on one platform or another.</p>
<p>Reality disappointed: What we actually got was a limited library of not-new games (<em><a href="http://en.wikipedia.org/wiki/Homefront_(video_game)">Homefront</a></em>, anyone?), many of which you already owned, but even laggier than on your own hardware. Turns out traditional retail, game publisher, and hardware platform companies made it difficult for cloud gaming services to get the best games on the day of release, and even then the gameplay quality was slightly inferior.</p>
<p>But the concept of gaming in the cloud is still an idea worth pursing for a far greater promise: the ability to deliver an entirely new kind of game experience.</p>
<p>Historically, in games as in any other media, new distribution technologies enable new creative experiences. <a href="http://www.pong-story.com/intro.htm"><em>Pong</em> wouldn’t have been possible </a>without a new device plugged in to your TV. Internet-connected computers meant you could <a href="http://en.wikipedia.org/wiki/Duke_Nukem">play <em>Duke Nukem</em></a> and <em>Quake</em> with other people online. The evolution of server technology brought massively-multiplayer games. The iPhone brought <em>Angry Birds</em>, a game designed for a touch interface, and so forth.</p>
<p>So why should a cloud gaming service be used to deliver the same old games as before that were built for a $250 machine?</p>
<p>What we should be wondering, then, is what new kinds of games and gaming experiences cloud delivery could inspire? Compared to the gaming hardware you own, a cloud gaming service could access much more computing power—with a limitless capacity to add processing. Consider after all that the most powerful supercomputer in the world, the <a href="http://www.top500.org/system/177975">Titan</a>, is about 70,000 times more powerful than an Xbox 360. Granted the Titan costs a cool $100 million, which cuts out most households, but scaling back to basic and accessible data center prices would still offer many orders of magnitude more computing power than any current or near-future home console . (And this isn’t to say great gaming experiences are limited to powerful hardware—to the contrary mobile phones play compelling games, too. They’re just of a different sort.)</p>
<p>As for content itself, games purpose-built for the cloud do not yet exist &#8212; ones that aren&#8217;t encumbered by the limits of processing power, that would use the full advantage of many more, and more powerful, CPUs and GPUs. These &#8220;supercomputer games&#8221; would open up creative possibilities far beyond what games of today are capable.</p>
<p>Imagine supercomputer games with vividly lifelike worlds and characters (and not the almost-real, <a href="http://en.wikipedia.org/wiki/Uncanny_valley">uncanny valley</a> of current-generation graphics), or a single battlefield with 50,000 other players playing at the same time &#8212; or opponent AI on the level of IBM’s <a href="http://gigaom.com/cloud/will-ibms-watson-knock-humans-down-a-peg/"><em>Jeopardy!</em>-winning</a> Watson. Supercomputer games could be dramatically different from anything you can play tonight at home. I&#8217;m no game designer, but what if we could use real-time traffic data to fill the streets of the next <em>Grand Theft Auto</em>, or step into a computer-generated world that looks as compelling as the <em>Lord of the Rings</em> movies?</p>
<p>Now, there are many reasons, beyond the technological, that these games don’t yet exist: It would be prohibitively expensive to pay artists to create all those detailed graphics, and simple AI is good enough to defeat most any player at most any game. But the record of creative innovators is that eventually they find a way to stretch the available technology to its limit. And some <a href="http://www.lazy8studios.com/2012/extrasolar_blog_1">gamemakers</a> are already beginning to probe at the games you can create if you host some of the game in the cloud.</p>
<p>There is a nagging constraint to the cloud, of course &#8212; bandwidth, which simply isn’t growing at the pace of Moore’s law. Network latency makes fast-twitch games, in which defeat is determined in microseconds (like with the top console genre, first-person shooters) hard to play over today’s internet. So, at least until the next engineering breakthrough, these supercomputer games might be designed around genres requiring slower player reflexes than, say, <em>Call of Duty</em> or <em>StarCraft</em>.</p>
<p>Best of all, the only hardware you would need at home is a basic input device like a controller and a box to render the graphics, and it could be cross-platform so that you could play from a PC or Mac or any smartphone. As one for-instance, OUYA, the new open, Android-based console I back, could be great for a cloud-delivered game (hear me, developers?), and its notable that Sony <a href="http://www.polygon.com/gaming/2012/7/2/3131408/sony-computer-entertainment-buys-gaikai-for-380-million">bought up Gaikai</a> and certainly has plans.  (Full disclosure:  OUYA also has an announced partnership with the relaunched OnLive.)</p>
<p>Supercomputer games could be extraordinary. Now some intrepid game developers just have to make one.<b id="internal-source-marker_0.21850406914018095"><br />
</b></p>
<p><em>Roy Bahat is Chairman of the open, Android-based game console company OUYA, and is former president of IGN. He is also on the faculty at UC Berkeley. Follow him on Twitter <a href="https://twitter.com/roybahat">@roybahat</a></em></p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=589723&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=352146"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=352146" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=589723+why-your-next-game-console-ought-to-be-watson&utm_content=gigaguest">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2010/10/what-enterprise-software-vendors-could-learn-from-the-consumer-space/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=589723+why-your-next-game-console-ought-to-be-watson&utm_content=gigaguest">What Enterprise Software Vendors Could Learn from the Consumer Space</a></li><li><a href="http://pro.gigaom.com/2009/07/virtual-worlds-trends-and-opportunities/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=589723+why-your-next-game-console-ought-to-be-watson&utm_content=gigaguest">Virtual Worlds: Trends and Opportunities</a></li><li><a href="http://pro.gigaom.com/2013/01/ces-2013-flash-analysis-disruptions-and-disappointments-from-consumer-techs-biggest-show/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=589723+why-your-next-game-console-ought-to-be-watson&utm_content=gigaguest">GigaOM Research highs and lows from CES 2013</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/12/01/why-your-next-game-console-ought-to-be-watson/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2013/11/shutterstock_98695373.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2013/11/shutterstock_98695373.jpg?w=150" medium="image">
			<media:title type="html">shutterstock_98695373</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/4411542bbd7a2a9a2fc2a1b38809e45c?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">gigaguest</media:title>
		</media:content>
	</item>
		<item>
		<title>Here&#8217;s what Wikipedia looks like over time and place</title>
		<link>http://gigaom.com/2012/06/18/heres-what-wikipedia-looks-like-over-time-and-place/</link>
		<comments>http://gigaom.com/2012/06/18/heres-what-wikipedia-looks-like-over-time-and-place/#comments</comments>
		<pubDate>Mon, 18 Jun 2012 15:23:30 +0000</pubDate>
		<dc:creator>Derrick Harris</dc:creator>
				<category><![CDATA[big data]]></category>
		<category><![CDATA[data mining]]></category>
		<category><![CDATA[SGI]]></category>
		<category><![CDATA[supercomputer]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=533430</guid>
		<description><![CDATA[When you mix a researcher, a massive online encyclopedia and a supercomputer, the result is a collection of insights and visualizations into what Wikipedia looks like mapped across time and space. It looks a lot like how our history books might look merged and graphed.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=533430&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2012/06/dates_lg.jpg"><img  title="dates_lg" src="http://gigaom2.files.wordpress.com/2012/06/dates_lg.jpg?w=300&#038;h=165" alt="" width="300" height="165" class="alignleft size-medium wp-image-533451" /></a>When you mix a researcher, a massive online encyclopedia and a supercomputer, the result is a collection of insights and visualizations into what Wikipedia looks like mapped across time and space. In a partnership with high-end computing vendor SGI, University of Illinois researcher Kalev Leetaru was able to mine the entire corpus of Wikipedia posts and make some interesting discoveries along the way.</p>
<p>If there&#8217;s a report detailing Leetaru&#8217;s findings, I haven&#8217;t been able to find it, but even this snippet from <a href="http://www.facebook.com/sgiglobal/app_254258188009276">the project&#8217;s Facebook page</a> is pretty insightful:</p>
<blockquote><p>From this analysis, Wikipedia is seen to have four periods of growth in its historical coverage: 1001-1500 (Middle Ages), 1501-1729 (Early Modern Period), 1730-2003 (Age of Enlightenment), 2004-2011 (Wikipedia Era) and its continued growth appears to be focused on enhancing its coverage of historical events, rather than increased documenting of the present. The average tone of Wikipedia&#8217;s coverage of each year closely matches major global events, with the most negative period in the last 1,000 years being the American Civil War, followed by World War II. The analysis also shows that the &#8220;copyright gap&#8221; that blanks out most of the twentieth century in digitized print collections is not a problem with Wikipedia where there is steady exponential growth in it&#8217;s coverage from 1924 to today.</p></blockquote>
<p>Leetaru also visualized the findings and created a couple of 30-second videos showing Wikipedia coverage and sentiment over time and geopgraphy. His visualizations (like the one above mapping &#8220;[e]very year from 1000 AD to 2012 referenced in Wikipedia plotted and cross referenced when mentioned in the same article&#8221;) are beautiful as works of art, although one can&#8217;t readily decipher who the influential people, organizations and years are.</p>
<p>Still, the project is a valuable reminder of just how far we&#8217;ve come in terms of data-analysis techniques and the computing power necessary to run them. This is why the idea of <em>big data </em>is so popular, even if the possibilities haven&#8217;t been fully realized yet. Analyses that would have taken weeks or days now take hours, minutes or seconds, which means anyone with the right data and the right gear can learn a heck of a lot if they can keeping coming up with good questions.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=533430&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=72"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=72" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=533430+heres-what-wikipedia-looks-like-over-time-and-place&utm_content=dharrisstructure">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/03/a-near-term-outlook-for-big-data/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=533430+heres-what-wikipedia-looks-like-over-time-and-place&utm_content=dharrisstructure">A near-term outlook for big data</a></li><li><a href="http://pro.gigaom.com/2011/04/finding-the-value-in-social-media-data/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=533430+heres-what-wikipedia-looks-like-over-time-and-place&utm_content=dharrisstructure">Finding the Value in Social Media Data</a></li><li><a href="http://pro.gigaom.com/2012/05/the-importance-of-putting-the-u-and-i-in-visualization/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=533430+heres-what-wikipedia-looks-like-over-time-and-place&utm_content=dharrisstructure">The importance of putting the U and I in visualization</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/06/18/heres-what-wikipedia-looks-like-over-time-and-place/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2012/06/dates_lg.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2012/06/dates_lg.jpg?w=150" medium="image">
			<media:title type="html">dates_lg</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/9e48ffa0913f65c577727457dd63023f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">dharrisstructure</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/06/dates_lg.jpg?w=300" medium="image">
			<media:title type="html">dates_lg</media:title>
		</media:content>
	</item>
		<item>
		<title>Systems to handle big data might be this generation&#8217;s moon landing</title>
		<link>http://gigaom.com/2012/04/01/systems-to-handle-big-data-might-be-this-generations-moon-landing/</link>
		<comments>http://gigaom.com/2012/04/01/systems-to-handle-big-data-might-be-this-generations-moon-landing/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 04:00:47 +0000</pubDate>
		<dc:creator>Stacey Higginbotham</dc:creator>
				<category><![CDATA[big data]]></category>
		<category><![CDATA[DOME]]></category>
		<category><![CDATA[exascale]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[supercomputer]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=505931</guid>
		<description><![CDATA[An effort to build a telescope that can see back 13 billion years to the creation of the universe is prompting a five year €32 million ($42.7 million) effort to create a low-power supercomputer and networks to handle the data the new telescope will generate.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=505931&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2012/04/5435356171_d1df5bd074.jpg"><img  title="5435356171_d1df5bd074" src="http://gigaom2.files.wordpress.com/2012/04/5435356171_d1df5bd074.jpg?w=300&#038;h=168" alt="" width="300" height="168" class="alignleft size-medium wp-image-505933" /></a>An effort to build a radio telescope that can see back 13 billion years to the creation of the universe is prompting a five-year €32 million ($42.7 million) effort to create a low-power supercomputer and networks to handle the data the new radio telescope will generate. The DOME project, named for a <a href="http://en.wikipedia.org/wiki/Dom_(mountain)">mountain in Switzerland</a> and the covering of a telescope, is the joint effort between IBM and the Dutch space agency <a href="http://en.wikipedia.org/wiki/ASTRON">ASTRON</a> to build such a network and computer.</p>
<p>There are three problems with building a telescope capable of reading radio waves from that far out in deep space (actually there&#8217;s a real estate problem too, because the array will require millions antennas spread over an area the width of the continental U.S., but we&#8217;ll stick to computing problems). The first problem is the data that this Square Kilometre Array (SKA) will generate. IBM estimates it will produce:</p>
<blockquote><p>&#8230; a few Exabytes of data per day for a single beam per one square kilometer. After processing this data the expectation is that per year between 300 and 1,500 Petabytes of data need to be stored. In comparison, the approximately 15 Petabytes produced by the Large Hadron Collider at CERN per year of operation is approximately 10 to 100 times less than the envisioned capacity of SKA.</p></blockquote>
<p>And guys, the LHC is in the midst of <a href="http://gigaom.com/cloud/super-science-cloud-coming-to-europe/">getting its own cloud computing infrastructure</a> in order to handle its data. So this IBM/ASTRON project may be just the beginning for SKA. As I say in the headline, in many ways, projects like the LHC and the SKA are ambitious investigations into the origins and composition of the universe. Our investigations into dark matter will require a compute effort that could rival the engineering effort that it took to get men on the moon. Which makes big data our Sputnik and our Apollo 11.</p>
<p>Now, back to the problems associated with the telescope. It will generate data like a corpse breeds maggots, so the project needs a computer big enough to process it without <a href="http://gigaom.com/2010/06/23/structure-2010-the-quest-for-exascale-computing-power/">requiring a power plant or two</a>. Additionally that data might have to travel from the antenna arrays to the computer, which means the third problem is the network. I&#8217;ve covered the need for compute and networks to handle our scientific data before in a story on Johns Hopkins&#8217; new <a href="http://gigaom.com/2011/11/08/for-science-big-data-is-the-microscope-of-the-21st-century/">100 gigabit on-campus network</a>, but the scale of the DOME project dwarfs anything Johns Hopkins is currently working on. From that story:</p>
<blockquote><p>[Dr. Alex Szalay of Johns Hopkins] ascribes this massive amount of data to the emergence of cheap compute, better imaging and more information, and calls it a new way of doing science. “In every area of science we are generating a petabyte of data, and unless we have the equivalent of the 21st-century microscope, with faster networks and the corresponding computing, we are stuck,” Szalay said.</p>
<p>In his mind, the new way of using massive processing power to filter through petabytes of data is an entirely new type of computing which will lead to new advances in astronomy and physics, much like the microscope’s creation in the 17th century led to advances in biology and chemistry.</p></blockquote>
<p>So we need the computing and networking equivalent of a microscope to enable us to deal with a telescope planned for 2024, and the time to start building it is now. That gives us a lot longer than the time frame we had to land on the moon. IBM views the problem as one worthy of the following infographic:</p>
<p><a href="http://gigaom2.files.wordpress.com/2012/04/6777192080_7d9eb7e506_b.jpg"><img  title="6777192080_7d9eb7e506_b" src="http://gigaom2.files.wordpress.com/2012/04/6777192080_7d9eb7e506_b.jpg?w=708" alt=""   class="aligncenter size-full wp-image-505932" /></a></p>
<p>As the infographic shows, we&#8217;re going to need massively multicore, low-power computers, better interconnection using photonics and new ways of building our networks. Hopefully, the search for dark matter is worth it.</p>
<p><em>SKA image courtesy of the <a href="http://www.flickr.com/photos/squarekilometrearray/5435356171/sizes/m/in/set-72157626023651420/">Square Kilometer Array</a></em>.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=505931&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=50182"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=50182" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=505931+systems-to-handle-big-data-might-be-this-generations-moon-landing&utm_content=shigginbotham">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/05/the-importance-of-putting-the-u-and-i-in-visualization/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=505931+systems-to-handle-big-data-might-be-this-generations-moon-landing&utm_content=shigginbotham">The importance of putting the U and I in visualization</a></li><li><a href="http://pro.gigaom.com/2012/03/a-near-term-outlook-for-big-data/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=505931+systems-to-handle-big-data-might-be-this-generations-moon-landing&utm_content=shigginbotham">A near-term outlook for big data</a></li><li><a href="http://pro.gigaom.com/2011/11/dissecting-the-data-5-issues-for-our-digital-future/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=505931+systems-to-handle-big-data-might-be-this-generations-moon-landing&utm_content=shigginbotham">Dissecting the data: 5 issues for our digital future</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/04/01/systems-to-handle-big-data-might-be-this-generations-moon-landing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2012/04/5435356171_d1df5bd074.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2012/04/5435356171_d1df5bd074.jpg?w=150" medium="image">
			<media:title type="html">5435356171_d1df5bd074</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/aee37121e18bf76bb9fee4494bab237a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">shigginbotham</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/04/5435356171_d1df5bd074.jpg?w=300" medium="image">
			<media:title type="html">5435356171_d1df5bd074</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/04/6777192080_7d9eb7e506_b.jpg" medium="image">
			<media:title type="html">6777192080_7d9eb7e506_b</media:title>
		</media:content>
	</item>
		<item>
		<title>Another big obstacle to exascale computing: resilience</title>
		<link>http://gigaom.com/2012/03/22/resilience-problem-structure-data-2012/</link>
		<comments>http://gigaom.com/2012/03/22/resilience-problem-structure-data-2012/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:17:13 +0000</pubDate>
		<dc:creator>Kevin Fitchard</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[exascale computing]]></category>
		<category><![CDATA[Gary Grider]]></category>
		<category><![CDATA[Rich Brueckner]]></category>
		<category><![CDATA[Structure:Data 2012]]></category>
		<category><![CDATA[supercomputer]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=502793</guid>
		<description><![CDATA[Los Alamos National Laboratory is trying to build to an exascale computer, which could process one billion billion calculations per second. The man in charge of executing that vision, however, sees a big obstacle toward building it. That problem, discussed at Structure:Data, is resilience.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=502793&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Los Alamos National Laboratory is trying to build to an exascale computer, which would be 1000 times faster than Cray’s Jaguar supercomputer and could process one billion billion calculations per second. The man in charge of executing that vision, however, sees a big obstacle toward building a computer with 1 millions nodes, running between 1 million to 1 billion cores. That problem is resilience.</p>
<div id="attachment_502766" class="wp-caption alignright" style="width: 310px"><a href="http://gigaom.com/2012/03/22/resilience-problem-structure-data-2012/1z5o3154/" rel="attachment wp-att-502766"><img title="Gary Grider of HPC Division, Los Alamos National Laboratory, Garth Gibson of Panasas, and Rich Brueckner inside-BigData at Structure:Data 2012" src="http://gigaom2.files.wordpress.com/2012/03/1z5o3154.jpg?w=300&#038;h=200" alt="Gary Grider of HPC Division, Los Alamos National Laboratory, Garth Gibson of Panasas, and Rich Brueckner inside-BigData at Structure:Data 2012" width="300" height="200" class="size-medium wp-image-502766"></a><p class="wp-caption-text">(c) 2012 Pinar Ozger. pinar@pinarozger.com</p></div>
<p>Speaking at GigaOM’s <a href="http://event.gigaom.com/structuredata?utm_source=tech&amp;utm_medium=editorial&amp;utm_campaign=intext&amp;utm_term=502793+resilience-problem-structure-data-2012&amp;utm_content=kfitchard">Structure:Data</a> conference, Los Alamos HPC deputy division leader Gary Grider said that the exascale computer has so many parts, that some element will constantly be failing.</p>
<p>“It wouldn’t be worth building if it didn’t stay working for more than a minute,” Grider said. “Resilience is absolutely a must. The way you get answers to science is you run problems on these things for six months or more. If the machine is going to die every few minutes, that’s going to be tough sledding. We’ve got to figure out how to deal with resilience in a pretty fundamental way between now and then.”</p>
<p>Grider and Los Alamos’s technology partners have between 6 and 10 years to work on the problem, and the national lab won’t be alone. According to inside-Data president Rich Brueckner, who moderated the “Faster Memory, Faster Compute” panel Grider spoke on, countries from all over the world are in an exascale race. Brueckner said it’s just as likely as Russia, Japan, China, India or the European Union develops the exascale machine as the U.S.</p>
<p><a href="http://pro.gigaom.com/do/structuredata2012-livestream-signup?utm_source=tech&amp;utm_medium=editorial&amp;utm_campaign=intext&amp;utm_term=502793+resilience-problem-structure-data-2012&amp;utm_content=kfitchard">Watch the livestream</a> of Structure:Data here.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=502793&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=829805"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=829805" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=502793+resilience-problem-structure-data-2012&utm_content=kfitchard">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/03/a-near-term-outlook-for-big-data/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=502793+resilience-problem-structure-data-2012&utm_content=kfitchard">A near-term outlook for big data</a></li><li><a href="http://pro.gigaom.com/2011/11/dissecting-the-data-5-issues-for-our-digital-future/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=502793+resilience-problem-structure-data-2012&utm_content=kfitchard">Dissecting the data: 5 issues for our digital future</a></li><li><a href="http://pro.gigaom.com/2011/09/what-amazons-new-kindle-line-means-for-apple-netflix-and-online-media/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=502793+resilience-problem-structure-data-2012&utm_content=kfitchard">What Amazon&#8217;s new Kindle line means for Apple, Netflix and online media</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/03/22/resilience-problem-structure-data-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2012/03/1z5o3154.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2012/03/1z5o3154.jpg?w=150" medium="image">
			<media:title type="html">Gary Grider of HPC Division, Los Alamos National Laboratory, Garth Gibson of Panasas, and Rich Brueckner inside-BigData at Structure:Data 2012</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/0544c4b228f8fa80e31bb952501cd7a4?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">kfitchard</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/03/1z5o3154.jpg?w=300" medium="image">
			<media:title type="html">Gary Grider of HPC Division, Los Alamos National Laboratory, Garth Gibson of Panasas, and Rich Brueckner inside-BigData at Structure:Data 2012</media:title>
		</media:content>
	</item>
		<item>
		<title>Supercomputer vet Cray wants to turn big data into fast data</title>
		<link>http://gigaom.com/2012/02/08/supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data/</link>
		<comments>http://gigaom.com/2012/02/08/supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:37:53 +0000</pubDate>
		<dc:creator>Derrick Harris</dc:creator>
				<category><![CDATA[big data]]></category>
		<category><![CDATA[Cray]]></category>
		<category><![CDATA[Hadoop]]></category>
		<category><![CDATA[high-performance computing]]></category>
		<category><![CDATA[hpc]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[oracle-corporation]]></category>
		<category><![CDATA[real-time]]></category>
		<category><![CDATA[Sun Microsystems]]></category>
		<category><![CDATA[supercomputer]]></category>
		<category><![CDATA[Teradata]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=482281</guid>
		<description><![CDATA[Looks like Oracle has some competition when it comes to selling big iron for big data. On Wednesday, Cray, the Seattle-based company best known for building some of the world's fastest supercomputers, announced it's getting into the big data game.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=482281&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div id="attachment_482392" class="wp-caption alignleft" style="width: 310px"><a href="http://gigaom2.files.wordpress.com/2012/02/cray-xk6.jpg"><img title="cray-xk6" src="http://gigaom2.files.wordpress.com/2012/02/cray-xk6.jpg?w=300&#038;h=192" alt="" width="300" height="192" class="size-medium wp-image-482392"></a><p class="wp-caption-text">Cray's XK6 supercomputer</p></div>
<p>It looks like Oracle has some competition when it comes to selling big iron for big data. On Wednesday, Cray, the Seattle-based company best known for building some of the world’s fastest supercomputers, said it’s getting into the big data game. A new division within Cray, called YarcData, will leverage Cray’s experience working within data-intensive environments for customers such as Boeing in order to woo large-enterprises with big data needs.</p>
<p>Cray was short on details in a <a href="http://www.marketwire.com/press-release/cray-forms-new-big-data-division-hires-new-general-manager-nasdaq-cray-1616423.htm">press release announcing the new division</a>, but new YarcData SVP and GM Arvind Parthasarathi, formerly of Informatica is quoted saying, “YarcData is the nexus of the world’s most advanced technologies from Cray being applied to solve the world’s most challenging Big Data problems.” The natural leap is that Cray will design parallel-processing systems capable of incredible data throughput — something already required in the supercomputing space, where incredible processing capacity would be wasted without a steady data stream — but that will support today’s popular big data tools (e.g., Hadoop, analytic databases and predictive analytics software).</p>
<p>This type of system could be very valuable for organizations such as banks and intelligence agencies that want to run big data workloads as fast as possible — even process streaming data in real time– and the deep pockets to pay for Cray’s presumably pricey systems. Despite the fact that big-data framework Hadoop gained popularity in part because it’s designed to run on commodity hardware, there’s always <a href="http://gigaom.com/cloud/got-big-data-youre-gonna-need-a-faster-network/">a place for high-end hardware</a> when milliseconds really do matter, and there’s something to be said for pre-configured systems that take the guesswork out of building a big data environment, as I <a href="http://pro.gigaom.com/2011/10/buying-into-big-data-appliances/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_campaign=intext&amp;utm_term=482281+supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data&amp;utm_content=dharrisstructure">explained recently in a piece for GigaOM Pro</a> (<strong>sub req’d</strong>).</p>
<p>Cray isn’t alone in pushing this high-performance, enterprise-focused big data vision, though. Oracle <a href="http://gigaom.com/2011/10/03/oracle-big-data-appliance-stakes-big-claim/">made a splash in October</a> when it announced a Big Data Appliance that marries Hadoop, R, NoSQL and other technologies to the high-end hardware Oracle obtained when it bought Sun Microsystems. IBM also has an extensive big data software portfolio complemented by a systems business that includes supercomputers, as well. And although it doesn’t have an HPC pedigree like the others, Teradata has years of experience building systems optimized for analytics.</p>
<p>Cray won’t likely become a household name in the big data world, and its notoriously secretive customers might never divulge what they’re using its analytics products for, but there certainly is a market — however small — for super-big, super-fast and super-expensive data.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=482281&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=87466"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=87466" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=482281+supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data&utm_content=dharrisstructure">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/10/buying-into-big-data-appliances/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=482281+supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data&utm_content=dharrisstructure">Buying into big data appliances</a></li><li><a href="http://pro.gigaom.com/2012/05/the-importance-of-putting-the-u-and-i-in-visualization/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=482281+supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data&utm_content=dharrisstructure">The importance of putting the U and I in visualization</a></li><li><a href="http://pro.gigaom.com/2012/03/a-near-term-outlook-for-big-data/?utm_source=cloud&utm_medium=editorial&utm_campaign=auto3&utm_term=482281+supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data&utm_content=dharrisstructure">A near-term outlook for big data</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2012/02/08/supercomputer-vet-cray-wants-to-turn-big-data-into-fast-data/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2012/02/cray-xk6.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2012/02/cray-xk6.jpg?w=150" medium="image">
			<media:title type="html">cray-xk6</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/9e48ffa0913f65c577727457dd63023f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">dharrisstructure</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2012/02/cray-xk6.jpg?w=300" medium="image">
			<media:title type="html">cray-xk6</media:title>
		</media:content>
	</item>
		<item>
		<title>Proof that supercomputers can see and build the future</title>
		<link>http://gigaom.com/2011/12/19/proof-that-supercomputers-can-see-and-build-the-future/</link>
		<comments>http://gigaom.com/2011/12/19/proof-that-supercomputers-can-see-and-build-the-future/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 18:21:07 +0000</pubDate>
		<dc:creator>Stacey Higginbotham</dc:creator>
				<category><![CDATA[@CNN]]></category>
		<category><![CDATA[Alex Szalay]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[National Center for Supercomputing Applications]]></category>
		<category><![CDATA[supercomputer]]></category>
		<category><![CDATA[supercomputers]]></category>
		<category><![CDATA[University of Illinois at Urbana-Champaign]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=457229</guid>
		<description><![CDATA[The discovery of a new type of chemical bond by the National Center for Supercomputing Applications at University of Illinois at Urbana-Champaign shows exactly how supercomputers and big data are combining to become the microscope of the future.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=457229&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2011/12/recoupled-sm.jpg"><img  title="recoupled.sm" src="http://gigaom2.files.wordpress.com/2011/12/recoupled-sm.jpg?w=708" alt=""   class="alignleft size-full wp-image-457315" /></a>Scientists have discovered a <a href="http://www.ncsa.illinois.edu/News/Stories/recoupled/">new type of chemical bond</a> thanks to the Abe and Ember supercomputers at the National Center for Supercomputing Applications, at the University of Illinois at Urbana-Champaign. This may be insanely nerdy for our web-loving readers, but for anyone investing in the future of technology, this is big. Not only because new chemical bonds mean new materials or products that could change the world, but because it shows exactly how <a href="http://gigaom.com/2011/11/08/for-science-big-data-is-the-microscope-of-the-21st-century/">supercomputers and big data are becoming the microscope</a> of the future.</p>
<p>The availability of cheaper yet powerful computing helps scientists crunch massive amounts of data that can lead to new discoveries. Last month, I spoke to a researcher at Johns Hopkins about this. Dr. Alex Szalay, of Johns Hopkins said:</p>
<blockquote><p>“In every area of science we are generating a petabyte of data, and unless we have the equivalent of the 21st-century microscope, with faster networks and the corresponding computing, we are stuck,” Szalay said.</p>
<p>In his mind, the new way of using massive processing power to filter through petabytes of data is an entirely new type of computing which will lead to new advances in astronomy and physics, much like the microscope’s creation in the 17th century led to advances in biology and chemistry.</p></blockquote>
<p>This is why the search for exascale supercomputing matters. But compute in isolation isn&#8217;t enough. The other elements that are coming together are faster networks to move data around (although they aren&#8217;t fast enough) and a more collaborative culture in science and technology across geographies and disciplines. Broadband helps with that of course. The use of open-source software in scientific computing and of cheaper ways to harness massive compute power, either though the cloud or through GPUs, also allow more people to play with machines that are akin to the top-of-the-line supercomputers of 5-6 years ago.</p>
<p>So the democratization of compute, data analytics, the data itself and fast networks are changing how deeply scientists can look at a problem. And it offers a wider lens to put research in context thanks to collaboration and interdisciplinary studies. Today it&#8217;s a new form of chemical bonding, but next it could be a revolution in energy production inspired by the new bond. And with these new tools, discoveries will happen faster and be applied in more places. That&#8217;s cool even if chemistry isn&#8217;t your thing.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=457229&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=626190"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=626190" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=457229+proof-that-supercomputers-can-see-and-build-the-future&utm_content=shigginbotham">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2012/03/a-near-term-outlook-for-big-data/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=457229+proof-that-supercomputers-can-see-and-build-the-future&utm_content=shigginbotham">A near-term outlook for big data</a></li><li><a href="http://pro.gigaom.com/2011/04/finding-the-value-in-social-media-data/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=457229+proof-that-supercomputers-can-see-and-build-the-future&utm_content=shigginbotham">Finding the Value in Social Media Data</a></li><li><a href="http://pro.gigaom.com/2010/12/9-companies-that-pushed-the-infrastructure-discussion-in-2010/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=457229+proof-that-supercomputers-can-see-and-build-the-future&utm_content=shigginbotham">9 Companies that Pushed the Infrastructure Discussion in 2010</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2011/12/19/proof-that-supercomputers-can-see-and-build-the-future/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/12/recoupled-sm.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/12/recoupled-sm.jpg?w=150" medium="image">
			<media:title type="html">recoupled.sm</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/aee37121e18bf76bb9fee4494bab237a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">shigginbotham</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/12/recoupled-sm.jpg" medium="image">
			<media:title type="html">recoupled.sm</media:title>
		</media:content>
	</item>
		<item>
		<title>How the cloud is reshaping supercomputers</title>
		<link>http://gigaom.com/2011/11/14/how-the-cloud-is-reshaping-supercomputers/</link>
		<comments>http://gigaom.com/2011/11/14/how-the-cloud-is-reshaping-supercomputers/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 01:01:58 +0000</pubDate>
		<dc:creator>Stacey Higginbotham</dc:creator>
				<category><![CDATA[@NYT]]></category>
		<category><![CDATA[ARM]]></category>
		<category><![CDATA[ARM chips]]></category>
		<category><![CDATA[big data]]></category>
		<category><![CDATA[chips]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Cray]]></category>
		<category><![CDATA[Data Centers]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[semiconductor]]></category>
		<category><![CDATA[supercomputer]]></category>
		<category><![CDATA[supercomputing]]></category>
		<category><![CDATA[Texas Instruments]]></category>
		<category><![CDATA[x86]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=438702</guid>
		<description><![CDATA[In the past decade supercomputers were dressed-up versions of Intel's x86 machines, but increasingly supercomputers are borrowing innovations (and silicon in the form of ARM-based chips or DSPs) from the mobile and big data realms to add speed without guzzling too much power.  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=438702&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div id="attachment_247544" class="wp-caption alignleft" style="width: 260px"><a href="http://gigaom.files.wordpress.com/2008/06/cray_11.jpg"><img  title="cray_11" src="http://gigaom.files.wordpress.com/2008/06/cray_11.jpg?w=708" alt=""   class="size-full wp-image-247544" /></a><p class="wp-caption-text">The original Cray supercomputer</p></div>
<p>In the past decade supercomputers were dressed-up versions of Intel&#8217;s x86 machines, but increasingly supercomputers are borrowing innovations (and silicon in the form of ARM-based chips or DSPs) from the mobile and big data realms to add speed without guzzling too much power.</p>
<p>Prior to this century many supercomputers really were a different animal entirely, <a href="http://gigaom.com/2009/11/16/how-will-we-keep-supercomputing-super/">sporting specialty chips</a> and software. But the industry turned to commodity chips in the early 2000s. Now, to meet the demands of exascale computing at low power, chip makers are taking <a href="http://gigaom.com/cloud/chip-firms-have-a-new-muse-and-its-anything-but-the-pc/">inspiration from the cloud computing</a> and mobile industries.</p>
<h2>ARM tries supercomputing on for size</h2>
<p>As the <a href="http://sc11.supercomputing.org/">Supercomputing 2011 show</a> gets under way in Seattle, Nvidia, Texas Instruments, ARM and <a href="http://gigaom.com/2011/11/14/make-way-for-more-brain-based-chips/">others</a> are announcing new silicon to power the machines we rely on for science, climate prediction and high-end simulations in industries that range from oil production to car design.</p>
<p>Nvidia is a fairly recent <a href="http://gigaom.com/2009/05/04/nvidia-touts-new-gpu-supercomputer/">newcomer to the supercomputing</a> market, but it has made huge strides since 2008, when it first starting pushing its graphics processors (GPUs) as a way to boost speed while keeping energy usage in check. It said it would use its high-end GPUs and its new <a href="http://gigaom.com/cloud/nvidia-turns-to-arm-for-server-chips-and-to-kill-intel/">GPU-plus-ARM chip</a> to <a href="http://pressroom.nvidia.com/easyir/customrel.do?easyirid=A0D622CE9F579F09&amp;version=live&amp;prid=821220&amp;releasejsp=release_157&amp;xhtml=true">build a new supercomputer in Spain</a>. This is the first time an ARM-based processor has made its way into a supercomputer. ARM thus far has been the chip of choice inside cell phones and tablets.</p>
<h2>Accelerator chips advance in supercomputers</h2>
<div id="attachment_439128" class="wp-caption alignleft" style="width: 310px"><a href="http://gigaom2.files.wordpress.com/2011/11/k-supercomputer-2.jpg"><img  title="k-supercomputer-2" src="http://gigaom2.files.wordpress.com/2011/11/k-supercomputer-2.jpg?w=300&#038;h=199" alt="" width="300" height="199" class="size-medium wp-image-439128" /></a><p class="wp-caption-text">Japan&#39;s K supercomputer is the fastest in the world.</p></div>
<p>Nvidia is doing well with its GPUs, given that in the <a href="http://www.top500.org/lists/2011/11/press-release">top 500 ranking</a> of the world&#8217;s fastest supercomputers, 39 systems use GPUs as accelerators and 35 of these use Nvidia chips. The graphics processors are used in supercomputers because they can handle massively parallel tasks that high-end computing requires while using less energy than the typical CPUs made by Intel and AMD. Nvidia and its GPUs made their <a href="http://gigaom.com/2008/11/17/nvidia-machine-takes-a-spot-on-the-top-supercomputer-list/">first appearance</a> on the list in 2008, and the last time the top 500 list was published, six months ago, Nvidia chips were in 17 machines. To go to 35 today is a pretty big uptake.</p>
<p>Perhaps inspired by Nvidia&#8217;s success in getting its GPUs onto supercomputers, Texas Instruments is <a href="http://newscenter.ti.com/Blogs/newsroom/archive/2011/11/14/new-quot-lows-quot-in-high-performance-computing-ti-s-tms320c66x-multicore-dsps-combine-ultra-low-power-with-unmatched-performance-offering-hpc-developers-the-industry-s-most-power-efficient-solutions-862402.aspx">bringing its digital signal processors to the mix</a> for high-performance computing. DSP chips are really good at math, and they are used in telecommunications chips and in routers. TI has been thinking about <a href="http:/gigaom.com/2009/03/05/ti-wants-to-use-dsps-for-low-power-computing/">this for a while</a>, but Monday was its first launch into the market formally.</p>
<h2>New chips for the cloud</h2>
<p>The same <a href="http://gigaom.com/cleantech/biggest-problem-for-exascale-computing-power/">power-efficiency issues</a> that plague those trying to advance supercomputing are hitting <a href="http://gigaom.com/2011/10/03/how-long-until-clouds-adopt-extreme-computing-chips/">those who run webscale applications</a>, from Facebook to Amazon Web Services. And while the cloud and web-scale data center operators aren&#8217;t looking for specialty gear, like Infiniband for networking, they are running one or a few applications on their hardware, similar in some ways to a supercomputer, where all workloads are optimized for speed.</p>
<p>This is why certain chip and hardware companies, such as Tilera, Calxeda and Applied Micro, see an opportunity to redesign the silicon and gear inside the cloud. Meanwhile, companies such as <a href="http://gigaom.com/2011/05/02/adapteva-pitches-a-supercomputer-for-your-phone/">Adapteva</a>, which makes a massively multicore chip for cell phones and HPC, see an opportunity in pushing into supercomputers and mobile handsets, where the need for more-powerful processors and lower power consumption are always at war. And with ARM piggybacking on this trend thanks to Nvidia, it&#8217;s clear that supercomputers want to be super without the influence of PCs.</p>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=438702&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=888520"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=888520" /></a></p><p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=438702+how-the-cloud-is-reshaping-supercomputers&utm_content=shigginbotham">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2013/01/cleantech-fourth-quarter-2012-analysis/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=438702+how-the-cloud-is-reshaping-supercomputers&utm_content=shigginbotham">The fourth quarter of 2012 in cleantech</a></li><li><a href="http://pro.gigaom.com/2012/06/cloud-computing-infrastructure-2012-and-beyond/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=438702+how-the-cloud-is-reshaping-supercomputers&utm_content=shigginbotham">Cloud computing infrastructure: 2012 and beyond</a></li><li><a href="http://pro.gigaom.com/2011/04/infrastructure-q1-iaas-comes-down-to-earth-big-data-takes-flight/?utm_source=tech&utm_medium=editorial&utm_campaign=auto3&utm_term=438702+how-the-cloud-is-reshaping-supercomputers&utm_content=shigginbotham">Infrastructure Q1: IaaS Comes Down to Earth; Big Data Takes Flight</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2011/11/14/how-the-cloud-is-reshaping-supercomputers/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/11/k-supercomputer-2.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/11/k-supercomputer-2.jpg?w=150" medium="image">
			<media:title type="html">k-supercomputer-2</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/aee37121e18bf76bb9fee4494bab237a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">shigginbotham</media:title>
		</media:content>

		<media:content url="http://gigaom.files.wordpress.com/2008/06/cray_11.jpg" medium="image">
			<media:title type="html">cray_11</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/11/k-supercomputer-2.jpg?w=300" medium="image">
			<media:title type="html">k-supercomputer-2</media:title>
		</media:content>
	</item>
		<item>
		<title>The Feds Want Faster, Greener Supercomputers</title>
		<link>http://gigaom.com/2011/02/18/the-feds-want-faster-greener-supercomputers/</link>
		<comments>http://gigaom.com/2011/02/18/the-feds-want-faster-greener-supercomputers/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 15:13:21 +0000</pubDate>
		<dc:creator>Stacey Higginbotham</dc:creator>
				<category><![CDATA[ARM]]></category>
		<category><![CDATA[exascale]]></category>
		<category><![CDATA[supercomputer]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=299613</guid>
		<description><![CDATA[President Obama's budget is asking for $126 million for the Department of Energy to reach a supercomputing milestone -- exascale performance. Research paid for by these millions could create more power-efficient silicon and networking technologies that will benefit information technology in general. Plus we'd get faster supercomputers.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=299613&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2011/02/jeopardy-practice-game-e1298039909435.jpg"><img title="IBM's Watson Computer System Plays Jeopardy! in a Practice Round" src="http://gigaom2.files.wordpress.com/2011/02/jeopardy-practice-game-e1298039909435.jpg?w=300&#038;h=199" alt="" width="300" height="199" class="alignleft size-medium wp-image-299617"></a>President Obama’s budget is asking for <a href="http://www.computerworld.com/s/article/9209918/Obama_sets_126M_for_next_gen_supercomputing?taxonomyId=16">$126 million for the Department of Energy</a> to reach a supercomputing milestone — exascale performance. While supercomputing is an obscure branch of computing using odd benchmarks that even <a href="http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=5564565">supercomputer experts sometimes debate</a>, the need for supercomputers or high performance computing is only growing as we’re asking our machines to analyze more data, and <a href="http://gigaom.com/cloud/will-ibms-watson-knock-humans-down-a-peg/">appear on popular gameshows</a>.</p>
<p>Supercomputers breached the <a href="http://gigaom.com/2008/06/17/top-500-supercomputers-2008/">petascale barrier back in 2008</a> with IBM’s Roadrunner and Cray’s Jaguar performing more than a million billion calculations per second, and thoughts immediately turned to the next obvious milestone, achieving one billion billion calculations a second. But instead of speeding up processors and the networking technology inside  the machines, researchers are going to have to think <a href="http://gigaom.com/cleantech/sharing-super-computing-for-energy-innovation/">first and foremost about power</a>. Running an exascale supercomputer could require up to two city-sized power plants if scientist build the supercomputer out like the current machines. That’s not going to fly.</p>
<p>And because <a href="http://gigaom.com/2009/11/16/how-will-we-keep-supercomputing-super/">supercomputers now tend to run more mainstream components</a> and software, the answers researchers find for their power and performance problems may be of use sooner rather than later for webscale computing or corporate IT departments. Perhaps we’ll see  an <a href="http://gigaom.com/2010/04/28/cell-phone-chip-king-confirms-its-server-ambitions/">ARM-based supercomputer</a> or an entirely new architecture emerge if this funding is actually allocated. Maybe we’ll get a more power efficient <a href="http://www.fujitsu.com/global/news/pr/archives/month/2010/20101109-02.html">optical networking technology</a>, that could scale more cheaply for use inside the data center (going all optical saves power because it eliminates the need to switch a fiber optical signal back to an electrical one). The President’s budget may not pass Congress, but these dollars aren’t just about an obscure search for high-end machines, they could benefit and get benefits from more traditional computing innovations.</p>
<p><strong>Related content from GigaOM Pro (subscription req’d):</strong></p>
<ul><li><a href="http://pro.gigaom.com/2009/11/supercomputers-and-the-search-for-the-exascale-grail/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=shigginbotham&amp;utm_campaign=intext&amp;utm_term=299613+the-feds-want-faster-greener-supercomputers">Supercomputers and the Search for the Exascale Grail</a></li>
<li> <a href="http://pro.gigaom.com/2010/06/pushing-processors-past-moores-law/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=shigginbotham&amp;utm_campaign=intext&amp;utm_term=299613+the-feds-want-faster-greener-supercomputers">Pushing Processors Past Moore’s Law </a></li>
<li> <a href="http://pro.gigaom.com/2010/10/think-converged-infrastructure-means-lock-in-think-again/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=shigginbotham&amp;utm_campaign=intext&amp;utm_term=299613+the-feds-want-faster-greener-supercomputers">Think Converged Infrastructure Means Lock In? Think Again. </a></li>
</ul>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=299613&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=328909"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=328909" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2011/02/18/the-feds-want-faster-greener-supercomputers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/02/jeopardy-practice-game-e1298039909435.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/02/jeopardy-practice-game-e1298039909435.jpg?w=150" medium="image">
			<media:title type="html">IBM&#039;s Watson Computer System Plays Jeopardy! in a Practice Round</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/aee37121e18bf76bb9fee4494bab237a?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">shigginbotham</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/02/jeopardy-practice-game-e1298039909435.jpg?w=300" medium="image">
			<media:title type="html">IBM&#039;s Watson Computer System Plays Jeopardy! in a Practice Round</media:title>
		</media:content>
	</item>
		<item>
		<title>Will a Watson &#8216;Jeopardy!&#8217; Win Knock Humans Down a Peg?</title>
		<link>http://gigaom.com/2011/02/11/will-ibms-watson-knock-humans-down-a-peg/</link>
		<comments>http://gigaom.com/2011/02/11/will-ibms-watson-knock-humans-down-a-peg/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 18:55:36 +0000</pubDate>
		<dc:creator>Derrick Harris</dc:creator>
				<category><![CDATA[@NYT]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[supercomputer]]></category>

		<guid isPermaLink="false">http://gigaom2.wordpress.com/?p=296821</guid>
		<description><![CDATA[Next week, <em>Jeopardy!</em> champions will square off against IBM's Watson supercomputer in a contest that could alter way humans view their place in the world. Developing the complex algorithms necessary to carry out such determinations wasn't easy, and IBM didn't operate alone.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=296821&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><a href="http://gigaom2.files.wordpress.com/2011/02/watson.jpg"><img title="IBM Watson" src="http://gigaom2.files.wordpress.com/2011/02/watson.jpg?w=300&#038;h=219" alt="" width="300" height="219" class="alignleft size-medium wp-image-296950"></a>Next week, <em>Jeopardy!</em> champions Ken Jennings and Brad Rutter <a href="http://www.jeopardy.com/minisites/watson/">will square off against IBM’s Watson supercomputer</a> in a contest that could alter way humans view their place in the world. Watson will challenge human beings’ superiority in knowledge and reasoning, something that wasn’t really on the line when IBM’s Deep Blue eked out a controversial victory against chess grandmaster Garry Kasparov in 1997. Not only can Watson likely determine the answer to randomly selected questions on the <em>Jeopardy!</em> board, but it can do so incredibly fast. However, developing the complex Question Answering (QA) algorithms necessary to carry out such determinations wasn’t easy, and IBM didn’t operate alone.</p>
<p>IBM <a href="http://www-03.ibm.com/press/us/en/pressrelease/33636.wss">announced eight universities</a> Friday — Massachusetts Institute of Technology, University of Texas, University of Southern California, Rensselaer Polytechnic Institute, University at Albany (NY), University of Trento (Italy), University of Massachusetts, and Carnegie Mellon University — that have contributed to Watson thus far. Their efforts range from MIT’s work on START, an “online natural language question answering system … which has the ability to answer questions with high precision using information from semi-structured and structured information repositories,” to RPI’s work on “a visualization component to visually explain to external audiences the massively parallel analytics skills it takes for the Watson computing system to break down a question and formulate a rapid and accurate response to rival a human brain.” It’s all high technology, though, and it helps Watson figure out where to look for information, how to learn from previous questions and, ultimately, to decide whether it’s confident enough to buzz in.</p>
<p>I got a taste of Watson in August when I toured IBM’s Industry Solutions lab in Hawthorne, N.Y., and I have to say it was impressive. Without giving away <em>any</em> of the secrets behind Watson — or any of its potential weaknesses — <a href="https://researcher.ibm.com/researcher/view.php?person=us-ferrucci">Principal Investigator for DeepQA David Ferucci</a> gave a sampling of just how deep Watson goes to determine possible answers then pare them down to a final one. It was impressive, and I wasn’t surprised when <a href="http://www.wired.com/epicenter/2011/01/ibm-watson-jeopardy/">Watson came out of January practice around ahead of its human competition</a>. As someone who once drove to Los Angeles to try out for Jeopardy, I appreciate how difficult it is for humans to make these types of judgments, and how difficult it must have been to program a computer to do the same.</p>
<p>The techie in me wants Watson to win so the world gets an understanding of what’s possible with algorithms, even beyond the customized experience of browsing Amazon.com, but the human in me wants to cling to that last thread of hope that human judgment can prevail against artificial intelligence. The realist in me knows that Watson will prevail, though, and <a href="http://www.usatoday.com/money/media/2011-02-09-kurzweil09_ST_N.htm">AI guru Ray Kurzweil agrees</a>. I guess we can all take solace knowing that it <em></em>takes humans like those who worked on Watson to write such complex software and build such complex systems — for now, at least.</p>
<p><em>Image courtesy of IBM.</em></p>
<p><strong>Related content from GigaOM Pro (sub req’d):</strong></p>
<ul><li><a href="http://pro.gigaom.com/2010/03/cloud-computing-nasa-case-study/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=dharrisstructure&amp;utm_campaign=intext&amp;utm_term=296821+will-ibms-watson-knock-humans-down-a-peg" target="_blank">Cloud Computing Reaches the Final Frontier</a></li>
<li><a href="http://pro.gigaom.com/2009/11/supercomputers-and-the-search-for-the-exascale-grail/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=dharrisstructure&amp;utm_campaign=intext&amp;utm_term=296821+will-ibms-watson-knock-humans-down-a-peg" target="_blank">Supercomputers and the Search for the Exascale Grail</a></li>
<li><a href="http://pro.gigaom.com/2009/04/we-can-call-it-a-cloud-but-its-still-hardware/?utm_source=cloud&amp;utm_medium=editorial&amp;utm_content=dharrisstructure&amp;utm_campaign=intext&amp;utm_term=296821+will-ibms-watson-knock-humans-down-a-peg" target="_blank">We Can Call It a Cloud, But It’s Still Hardware </a></li>
</ul>
<br />  <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&#038;blog=14960843&#038;post=296821&#038;subd=gigaom2&#038;ref=&#038;feed=1" width="1" height="1" /><p><a href="http://pubads.g.doubleclick.net/gampad/jump?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=82072"><img src="http://pubads.g.doubleclick.net/gampad/ad?iu=/1008864/GigaOM_RSS_300x250&#038;sz=300x250&#038;c=82072" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/2011/02/11/will-ibms-watson-knock-humans-down-a-peg/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2011/02/watson.jpg?w=150" />
		<media:content url="http://gigaom2.files.wordpress.com/2011/02/watson.jpg?w=150" medium="image">
			<media:title type="html">IBM Watson</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/9e48ffa0913f65c577727457dd63023f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">dharrisstructure</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2011/02/watson.jpg?w=300" medium="image">
			<media:title type="html">IBM Watson</media:title>
		</media:content>
	</item>
	</channel>
</rss>
