<?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/"
	>

<channel>
	<title>OnlyHardwareBlog &#187; CPU</title>
	<atom:link href="http://onlyhardwareblog.com/tag/cpu/feed/" rel="self" type="application/rss+xml" />
	<link>http://onlyhardwareblog.com</link>
	<description>General discussion, news &#38; views about Hardware</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:57:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Researchers boost processor performance by getting CPU and GPU to collaborate</title>
		<link>http://onlyhardwareblog.com/2012/02/nec-multisync-ea273wm-bk-27-inch-led-monitor-review/</link>
		<comments>http://onlyhardwareblog.com/2012/02/nec-multisync-ea273wm-bk-27-inch-led-monitor-review/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 08:49:06 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Processor]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/02/nec-multisync-ea273wm-bk-27-inch-led-monitor-review/</guid>
		<description><![CDATA[
			
				
			
		
Researchers at North Carolina State University have developed a  technique to take advantage of the &#8220;fused architecture&#8221; emerging on  multicore CPUs that puts central processing units and graphics  processing units on the same chip. The technology, called CPU-assisted  general purpose computation on graphics processor units (CPU-assisted  GPGPU) uses software compiled [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Fnec-multisync-ea273wm-bk-27-inch-led-monitor-review%2F&amp;title=Researchers+boost+processor+performance+by+getting+CPU+and+GPU+to+collaborate&amp;summary=Researchers+at+North+Carolina+State+University+have+developed+a++technique+to+take+advantage+of+the+%22fused+architecture%22+emerging+on++multicore+CPUs+that+puts+central+processing+units+and+graphics++processing+units+on+the+same+chip.+The+technology%2C+called+CPU-assisted++general+purpose+computation+on+graphics+processor+units+%28CPU-assisted++GPGPU%29+uses+software+compiled+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Fnec-multisync-ea273wm-bk-27-inch-led-monitor-review%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Fnec-multisync-ea273wm-bk-27-inch-led-monitor-review%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Researchers at North Carolina State University have developed a  technique to take advantage of the &#8220;fused architecture&#8221; emerging on  multicore CPUs that puts central processing units and graphics  processing units on the same chip. The technology, called CPU-assisted  general purpose computation on graphics processor units (CPU-assisted  GPGPU) uses software compiled to leverage the architecture to allow the  CPU and GPU to collaborate on computing tasks, boosting processor  performance on average by more than 20 percent in simulations.</p>
<p><!--page 1-->The approach, outlined in a paper by NC State Associate Professor of Electrical and Computer Engineering Dr. Huiyang Zhou,  Ph.D. candidates Yi Yang and Ping Xiang, and AMD GPU Architect Mike  Mantor, is designed for fused architecture chipsets with a shared L3  cache and shared off-chip memory for CPUs and GPUs. The approach  developed by the team leverages the computing power of the GPU, while  taking advantage of the CPU&#8217;s more flexible data retrieval and better  handling of complex tasks.</p>
<p>The current generation of hybrid CPU/GPU systems, including Intel&#8217;s  &#8220;Sandy Bridge&#8221; and AMD&#8217;s &#8220;Llano&#8221; has helped create more energy-efficient  systems and reduce manufacturing costs, Zhou said. &#8220;However, the CPU  cores and GPU cores still work almost exclusively on separate functions.  They rarely collaborate to execute any given program, so they aren’t as  efficient as they could be. That’s the issue we’re trying to resolve.”</p>
<p>GPUs are obviously designed for handling graphics, but they are also  very good at handling large numbers of parallel processes, particularly  in applications where the same process needs to be applied to large  amounts of data. Traditionally, one of the the biggest problems when  using GPUs for general purpose computing has been that they don&#8217;t handle  complex, branchy, pointer-heavy code very well at all—which is the  strength of CPUs. The long pipelines of most GPUs instead favor  sequential, streaming reads, and applications where there&#8217;s a high ratio  of arithmetic operations applied to data relative to the amount of data  that has to be moved to and from memory. Hybrid chips like Sandy Bridge  have less main memory bandwidth than typical discrete GPUs (albeit with  lower latency), so keeping the fast level 3 cache filled with data is  essential if developers want to avoid starving the GPU of data.</p>
<p>CPU-assisted GPGPU uses the CPU&#8217;s faster L3 cache pre-fetching to  feed data to the GPU, cutting out performance drags that come with GPU  code accessing memory. A program compiled for CPU-assisted GPGPU  launches a  &#8220;pre-execution&#8221; program at startup on the CPU to pre-fetch  data to be processed by GPU code and load it into the level 3 cache  onboard the chip. That allows process threads running in the GPU to hit  the L3 cache directly, rather than fetching from memory, reducing  latency and significantly boosting performance.  In some cases, the  performance of simulated applications improved by up to 113%, the  researchers claimed.</p>
<p>Why simulated? AMD&#8217;s current hybrid processor, the Llano, lacks a  shared L3 cache, so it won&#8217;t support the approach.  And Intel&#8217;s Sandy  Bridge offers only limited GPGPU functionality. In a phone interview  with Ars, Dr. Zhou explained that in theory the research could be  applied to Intel&#8217;s current Sandy Bridge architecture, which provides a  shared last-level cache for CPUs and GPUs in its architecture. But he  said that Sandy Bridge&#8217;s GPU &#8220;isn&#8217;t that powerful&#8221; and Intel&#8217;s current  software support &#8220;doesn&#8217;t include support for OpenCL and other GPGPL  stuff.&#8221; However, he said, he expects that the hardware  support for  CPU-assisted GPGPU applications will be in upcoming generations of  hybrid platforms from both Intel and AMD, and software support will  follow. And, he added, &#8220;it’s already assumed that the GPU (in Intel&#8217;s  Ivy Bridge processors) will be much more powerful than Sandy Bridge.&#8221;</p>
<p>Real World Technologies editor David Kanter said that he expects to see &#8220;a lot more work in this area, as engineers  and researchers must improve performance significantly, while  maintaining or reducing power consumption.&#8221; But he noted that there  wasn&#8217;t information in the research about the power consumption impact of  the technology.  Zhou said that the research hasn&#8217;t yielded any hard  numbers on what the power consumption impact would be.</p>
<p>Zhou said that his team&#8217;s research had been funded by grants from the  National Science Foundation and AMD, and was just the latest  collaboration with Mantor. But the research up until now has been  fundamental scientific research, and he couldn&#8217;t say how it might be  commercialized by AMD or Intel.</p>
<p>Source:http://arstechnica.com/business/news/2012/02/researchers-boost-processor-performance-by-getting-cpu-and-gpu-to-collaborate.ars</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fxs3QG8&amp;text=Researchers%20boost%20processor%20performance%20by%20getting%20CPU%20and%20GPU%20to%20collaborate&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Fnec-multisync-ea273wm-bk-27-inch-led-monitor-review%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/02/nec-multisync-ea273wm-bk-27-inch-led-monitor-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaCie Announces 5big Office Series, Powered By Windows Home Server 2011</title>
		<link>http://onlyhardwareblog.com/2012/02/lacie-announces-5big-office-series-powered-by-windows-home-server-2011/</link>
		<comments>http://onlyhardwareblog.com/2012/02/lacie-announces-5big-office-series-powered-by-windows-home-server-2011/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 07:25:29 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/02/lacie-announces-5big-office-series-powered-by-windows-home-server-2011/</guid>
		<description><![CDATA[
			
				
			
		
After all these years, LaCie&#8217;s storage hardware still looks better than storage hardware from pretty much any other vendor. And if you&#8217;re starting up a small business, you may be interested in what the company&#8217;s got on offer now. This week, LaCie announced the 5big Office Series, its latest five-bay network attached storage solutions. The [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Flacie-announces-5big-office-series-powered-by-windows-home-server-2011%2F&amp;title=LaCie+Announces+5big+Office+Series%2C+Powered+By+Windows+Home+Server+2011&amp;summary=After+all+these+years%2C+LaCie%27s+storage+hardware+still+looks+better+than+storage+hardware+from+pretty+much+any+other+vendor.+And+if+you%27re+starting+up+a+small+business%2C+you+may+be+interested+in+what+the+company%27s+got+on+offer+now.+This+week%2C+LaCie+announced+the+5big+Office+Series%2C+its+latest+five-bay+network+attached+storage+solutions.+The+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Flacie-announces-5big-office-series-powered-by-windows-home-server-2011%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Flacie-announces-5big-office-series-powered-by-windows-home-server-2011%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>After all these years, LaCie&#8217;s storage hardware still looks better than storage hardware from pretty much any other vendor. And if you&#8217;re starting up a small business, you may be interested in what the company&#8217;s got on offer now. This week, LaCie announced the 5big Office Series, its latest five-bay network attached storage solutions. The 5big Office Series, powered by Windows Home Server 2011, packs a 1.6GHz 64-bit Atom CPU, 2GB of RAM and plenty of options. There&#8217;s a single-drive edition that allows users to add additional drives, as needed, for up to 10TB of total capacity. It reduces the initial investment and assures a long-term solution. What&#8217;s more, its PC backup data deduplication only backs up a single instance of redundant data. This optimizes storage space as well as increases backup speed.</p>
<p>The 5big Office+ offers all the features of the 5big Office, but brings powerful tools – including DFS-R/N – for integration with offsite servers. IT managers can centralize and consolidate data, even when it&#8217;s spread across multiple geographic locations. The 5big Office+ also features Windows domain/Active Directory support, a faster dual-core processor, dual Ethernet links, and can back up more PCs. The LaCie 5big Office is available in single-disk 2TB capacity and the 5big Office+ is available in single-disk 2TB or five-disk 10TB capacities through the LaCie Online Store and LaCie Storage Partners starting at $749.00. Eager to learn more? Have a look at the video below.</p>
<p>Source:http://hothardware.com/News/LaCie-Announces-5big-Office-Series-Powered-By-Windows-Home-Server-2011/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fy8QbHn&amp;text=LaCie%20Announces%205big%20Office%20Series%2C%20Powered%20By%20Windows%20Home%20Server%202011&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F02%2Flacie-announces-5big-office-series-powered-by-windows-home-server-2011%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/02/lacie-announces-5big-office-series-powered-by-windows-home-server-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sony Offers New CPU Options For S Series And E Series Laptops</title>
		<link>http://onlyhardwareblog.com/2012/01/sony-offers-new-cpu-options-for-s-series-and-e-series-laptops/</link>
		<comments>http://onlyhardwareblog.com/2012/01/sony-offers-new-cpu-options-for-s-series-and-e-series-laptops/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 08:56:38 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Sony]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/01/sony-offers-new-cpu-options-for-s-series-and-e-series-laptops/</guid>
		<description><![CDATA[
			
				
			
		
Sony announced new CPU options for its S Series of laptops. The 13-inch and 15-inch S Series models now offer the newest generation of Intel Core processors with Core i7 options. The S Series features Hybrid Graphics (AMD Radeon HD 6470M or AMD Radeon HD 6630M), optical drives (including Blu-ray Disc options), backlit keyboards, options [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fsony-offers-new-cpu-options-for-s-series-and-e-series-laptops%2F&amp;title=Sony+Offers+New+CPU+Options+For+S+Series+And+E+Series+Laptops&amp;summary=Sony+announced+new+CPU+options+for+its+S+Series+of+laptops.+The+13-inch+and+15-inch+S+Series+models+now+offer+the+newest+generation+of+Intel+Core+processors+with+Core+i7+options.+The+S+Series+features+Hybrid+Graphics+%28AMD+Radeon+HD+6470M+or+AMD+Radeon+HD+6630M%29%2C+optical+drives+%28including+Blu-ray+Disc+options%29%2C+backlit+keyboards%2C+options+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fsony-offers-new-cpu-options-for-s-series-and-e-series-laptops%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fsony-offers-new-cpu-options-for-s-series-and-e-series-laptops%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Sony announced new CPU options for its S Series of laptops. The 13-inch and 15-inch S Series models now offer the newest generation of Intel Core processors with Core i7 options. The S Series features Hybrid Graphics (AMD Radeon HD 6470M or AMD Radeon HD 6630M), optical drives (including Blu-ray Disc options), backlit keyboards, options for solid state drives, and QUAD RAID 0 technology. The 13-inch S Series starts at $799 while the 15-inch models start at $979. Both 13- and 15-inch models will be available in early February.</p>
<p>Sony also refreshed its E Series with the latest 2nd generation Intel Core processors and four color options. The E Series is available in 14- and 15-inch sizes and starts at $499 and $459, respectively. In addition to refreshing the S Series line with new CPU options, Sony also added a Carbon Silver color option for the VAIO Z Series laptop. </p>
<p>Sony today announces the availability of a new Carbon Silver color for the VAIO® Z Series laptop and a variety of updated models with new CPU options and enhancements.</p>
<p>New Color and technology for the Z Series</p>
<p>The updated Z Series with the new option of Carbon Silver is added to the existing choices of Carbon Black, Carbon Gold, and Premium Carbon Black.  Also available is optional LTE mobile broadband built-in, supporting 4G data service. With the latest 2nd generation Intel® processors ranging from Intel Core™ i5 and higher and RAID 0 solid state drives, the Z Series continues Sony’s efforts to offer users advanced performance and design that fits their mobile lifestyles. Starting at $1949.99, the Z Series includes the Power Media Dock™ drive, ideal for the business user in need of additional ports or external displays.</p>
<p>New CPU’s for the S Series Laptops</p>
<p>The S Series continues to offer performance mobility and all around excellence since its debut last year. The 13” and 15” inch models feature everything students and performance minded users need including standard voltage processors, Hybrid Graphics, optical drives (Blu-ray Disc™ options as well), backlit keyboards and the VAIO, ASSIT and WEB hardware buttons for launching Media Gallery™ software, VAIO Care™ support software and access to the web without full boot-up Windows®, all with a touch of a button. In addition, options for solid state drives on both the 13” and 15” S Series laptops include 256GB, 512GB, and 1TB and feature QUAD RAID 0 technology for enhanced performance.</p>
<p>With the newest generation of Intel® Core™ processors now available, the S Series features updated CPU’s on the 13” and 15” models both available with up to Core i7, delivering even more performance automatically when users need it most.                  </p>
<p>Hybrid Graphics and IPS Technology for S Series</p>
<p>The S Series includes Hybrid Graphics with either an AMD Radeon HD 6470M (512MB VRAM) or AMD Radeon HD 6630M (1GB VRAM), providing flexibility between performance and maximum battery life. The 15” will come standard with a 15.5” Full HD display (1920 x 1080) with IPS technology for improved image quality and viewing angles.</p>
<p>When coupled with the advanced large-capacity optional sheet battery, users can stay mobile and unplugged for up to 12 hours while also offering a thin battery profile. Intelligent charging enables VAIO® S Series users to charge the optional sheet battery separately from the PC and attach it to the system at any time without shutting down for maximum flexibility. </p>
<p>The 13” S Series will start at $799. The 15” S Series will start at $979 and includes the Full HD display and Intel Core i5 processor. Both 13” and 15” models will be available starting early February.</p>
<p>New CPU’s for E Series</p>
<p>Ideal for students and everyday users, the refreshed E Series is now available with the latest 2nd generation Intel Core processors and in four colors including Glacier White, Charcoal Black, Midnight Blue and Blush Pink with a unique textured design. Available in 14” and 15” inch sizes, the E Series also features Intel® Wireless Display for select models, VAIO, ASSIST and WEB hardware buttons, optional keyboard skins and optional dedicated NVIDIA® graphics with up to 1GB VRAM. Pricing starts at $499 for the 14” series and $459 for the 15” series.</p>
<p>Software updates to all Series</p>
<p>In addition to a new Z Series color and refreshed CPUs, the Sony VAIO team also updated some software. With the updated Media Gallery™ 2.0, users will experience a new look and feel including new features for popular social networking services. The S Series will come with the update already installed and is available for users to download for other models.  Also included is the Music Unlimited promotion, providing 180 days of Music Unlimited basic service for free for first time users. The F Series laptop and L Series All-in-One come preloaded with Sony Imagination Studio™ Multimedia Edition, a collection of audio and video editing software, including the award winning Sony Vegas® Movie Studio HD.</p>
<p>Source:http://hothardware.com/News/Sony-Offers-New-CPU-Options-For-S-Series-And-E-Series-Laptops/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FzavmUw&amp;text=Sony%20Offers%20New%20CPU%20Options%20For%20S%20Series%20And%20E%20Series%20Laptops&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fsony-offers-new-cpu-options-for-s-series-and-e-series-laptops%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/01/sony-offers-new-cpu-options-for-s-series-and-e-series-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CPU Startup Combines CPU+DRAM—And A Whole Bunch Of Crazy</title>
		<link>http://onlyhardwareblog.com/2012/01/cpu-startup-combines-cpudram%e2%80%94and-a-whole-bunch-of-crazy/</link>
		<comments>http://onlyhardwareblog.com/2012/01/cpu-startup-combines-cpudram%e2%80%94and-a-whole-bunch-of-crazy/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 09:18:25 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Ram]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/01/cpu-startup-combines-cpudram%e2%80%94and-a-whole-bunch-of-crazy/</guid>
		<description><![CDATA[
			
				
			
		
The CPU design firm Venray Technology announced a new product design this week that it claims can deliver enormous performance benefits by combining CPU and DRAM on to a single piece of silicon. We spent some time earlier this fall discussing the new TOMI (Thread Optimized Multiprocessor) with company CTO Russell Fish, but while the [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fcpu-startup-combines-cpudram%25e2%2580%2594and-a-whole-bunch-of-crazy%2F&amp;title=CPU+Startup+Combines+CPU%2BDRAM%E2%80%94And+A+Whole+Bunch+Of+Crazy&amp;summary=The+CPU+design+firm+Venray+Technology+announced+a+new+product+design+this+week+that+it+claims+can+deliver+enormous+performance+benefits+by+combining+CPU+and+DRAM+on+to+a+single+piece+of+silicon.+We+spent+some+time+earlier+this+fall+discussing+the+new+TOMI+%28Thread+Optimized+Multiprocessor%29+with+company+CTO+Russell+Fish%2C+but+while+the+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fcpu-startup-combines-cpudram%25e2%2580%2594and-a-whole-bunch-of-crazy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fcpu-startup-combines-cpudram%25e2%2580%2594and-a-whole-bunch-of-crazy%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The CPU design firm Venray Technology announced a new product design this week that it claims can deliver enormous performance benefits by combining CPU and DRAM on to a single piece of silicon. We spent some time earlier this fall discussing the new TOMI (Thread Optimized Multiprocessor) with company CTO Russell Fish, but while the idea is interesting; its presentation is marred by crazy conceptualizing and deeply suspect analytics.</p>
<p>The Multicore Problem:</p>
<p>There are three limiting factors, or walls, that limit the scaling of modern microprocessors. First, there&#8217;s the memory wall, defined as the gap between the CPU and DRAM clock speed. Second, there&#8217;s the ILP (Instruction Level Parallelism) wall, which refers to the difficulty of decoding enough instructions per clock cycle to keep a core completely busy. Finally, there&#8217;s the power wall&#8211;the faster a CPU is and the more cores it has, the more power it consumes.</p>
<p>Attempting to compensate for one wall often risks running afoul of the other two. Adding more cache to decrease the impact of the CPU/DRAM speed discrepancy adds die complexity and draws more power, as does raising CPU clock speed. Combined, the three walls are a set of fundamental constraints&#8211;improving architectural efficiency and moving to a smaller process technology may make the room a bit bigger, but they don&#8217;t remove the walls themselves.</p>
<p>TOMI attempts to redefine the problem by building a very different type of microprocessor. The TOMI Borealis is built using the same transistor structures as conventional DRAM; the chip trades clock speed and performance for ultra-low low leakage. Its design is, by necessity, extremely simple. Not counting the cache, TOMI is a 22,000 transistor design, as compared to 30,000 transistors for the original ARM2. The company&#8217;s early prototypes, built on legacy DRAM technology, ran at 500MHz on a 110nm process.</p>
<p>Instead of surrounding a CPU core with a substantial amount of L2 and L3 cache, Venray inserted a CPU core directly into a DRAM design. A TOMI Borealis core connects eight TOMI cores to a 1Gbit DRAM with a total of 16 ICs per 2GB DIMM. This works out to a total of 128 processor cores per DIMM. Because they&#8217;re built using ultra-low-leakage processes and are so small, such cores cost very little to build and consume vanishingly small amounts of power (Venray claims power consumption is as low as 23mW per core at 500MHz).</p>
<p>It&#8217;s an interesting idea.</p>
<p>The Bad:</p>
<p>When your CPU has fewer transistors than an architecture that debuted in 1986, it&#8217;s a good chance that you left a few things out&#8211;like an FPU, branch prediction, pipelining, or any form of speculative execution. Venray may have created a chip with power consumption an order of magnitude lower than anything ARM builds and more memory bandwidth than Intel&#8217;s highest-end Xeons, but it&#8217;s an ultra-specialized, ultra-lightweight core that trades 25 years of flexibility and performance for scads of memory bandwidth. </p>
<p>The last few years have seen a dramatic surge in the number of low-power, many-core architectures being floated as the potential future of computing, but Venray&#8217;s approach relies on the manufacturing expertise of companies who have no experience in building microprocessors and don&#8217;t normally serve as foundries. This imposes fundamental restrictions on the CPU&#8217;s ability to scale; DRAM is manufactured using a three layer mask rather than the 10-12 layers Intel and AMD use for their CPUs. Venray already acknowledges that these conditions imposed substantial limitations on the original TOMI design.</p>
<p>Of course, there&#8217;s still a chance that the TOMI uarch could be effective in certain bandwidth-hungry scenarios&#8211;but that&#8217;s where the Venray Crazy Train goes flying off the track.</p>
<p>Let&#8217;s start here. In a graph like this, you expect the two bars to represent the same systems being compared across three different characteristics. That&#8217;s not the case. When we spoke to Russell Fish in late November, he pointed us to this publicly available document and claimed that the results came from a customer with 384 2.1GHz Xeons. There&#8217;s no such thing as an S5620 Xeon and even if we grant that he meant the E5620 CPU, that&#8217;s a 2.4GHz chip.</p>
<p>The &#8220;Power consumption&#8221; graphs show Oracle&#8217;s maximum power consumption for a system with 10x Xeon E7-8870s, 168 dedicated SQL processors, 5.3TB (yes, TB) of Flash and 15x 10,000 RPM hard drives. It&#8217;s not only a worst-case figure, it&#8217;s a figure utterly unrelated to the workload shown in the Performance comparison. Furthermore, given that each Xeon E7-8870 has a 130W TDP, ten of them only come out to 1.3kW&#8211;Oracle&#8217;s 17.7kW figure means that the overwhelming majority of the cabinet&#8217;s power consumption is driven by components other than its CPUs.</p>
<p>From here, things rapidly get worse. Fish makes his points about power walls by referring to unverified claims that prototype 90nm Tejas chips drew 150W at 2.8GHz back in 2004. That&#8217;s like arguing that Ford can&#8217;t build a decent car because the Edsel sucked.</p>
<p>After reading about the technology, you might think Venray was planning to market a small chip to high-end HPC niche markets&#8230; and you&#8217;d be wrong. The company expects the following to occur as a result of this revolutionary architecture (organized by least-to-most creepy):</p>
<p>    * Computer speech will be so common that devices will talk to other devices in the presence of their users.<br />
    * Your cell phone camera will recognize the face of anyone it sees and scan the computer cloud for backround red flags as well as six degrees of separation<br />
    * Common commands will be reduced to short verbal cues like clicking your tongue or sucking your lips<br />
    * Your personal history will be displayed for one and all to see&#8230;women will create search engines to find eligible, prosperous men. Men will create search engines to qualify women. Criminals will find their jobs much more difficult because their history will be immediately known to anyone who encounters them.<br />
    * TOMI Technology will be built on flash memories creating the elemental unit of a learning machine&#8230; the machines will be able to self organize, build robust communicating structures, and collaborate to perform tasks.<br />
    * A disposable diaper company will give away TOMI enabled teddy bears that teach reading and arithmetic. It will be able to identify specific children&#8230; and from time to time remind Mom to buy a product. The bear will also diagnose a raspy throat, a cough, or runny nose.</p>
<p>Conclusion:</p>
<p>Fish has spent decades in the microprocessor industry&#8211;he invented the first CPU to use a clock multiplier in conjunction with Chuck H. Moore&#8211;but his vision of the future is crazy enough to scare mad dogs and Englishmen.</p>
<p>His idea for a CPU architecture is interesting, even underneath the obfuscation and false representation, but too practically limited to ever take off. Google, an enthusiastic and dedicated proponent of energy efficient, multi-core research said it best in a paper titled &#8220;Brawny cores still beat wimpy cores, most of the time.&#8221;</p>
<p> &#8220;Once a chip’s single-core performance lags by more than a factor to two or so behind the higher end of current-generation commodity processors, making a business case for switching to the wimpy system becomes increasingly difficult&#8230; So go forth and multiply your cores, but do it in moderation, or the sea of wimpy cores will stick to your programmers’ boots like clay.&#8221;</p>
<p>Source:http://hothardware.com/News/CPU-Startup-Combines-CPUDRAMAnd-A-Whole-Bunch-Of-Crazy/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FA6TeqC&amp;text=CPU%20Startup%20Combines%20CPU%2BDRAM%E2%80%94And%20A%20Whole%20Bunch%20Of%20Crazy&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fcpu-startup-combines-cpudram%25e2%2580%2594and-a-whole-bunch-of-crazy%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/01/cpu-startup-combines-cpudram%e2%80%94and-a-whole-bunch-of-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel Scrapping Two Dozen CPUs to Make Room for Ivy Bridge</title>
		<link>http://onlyhardwareblog.com/2012/01/intel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge/</link>
		<comments>http://onlyhardwareblog.com/2012/01/intel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:15:13 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[INTEL]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/01/intel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge/</guid>
		<description><![CDATA[
			
				
			
		
It&#8217;s out with the old and in with the new over at Intel. According to reports, the Santa Clara chip maker is letting its hardware partners know of a revised schedule to halt production and/or stop the supply of more than 25 existing desktop processor models so that it can focus on and make room [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fintel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge%2F&amp;title=Intel+Scrapping+Two+Dozen+CPUs+to+Make+Room+for+Ivy+Bridge&amp;summary=It%27s+out+with+the+old+and+in+with+the+new+over+at+Intel.+According+to+reports%2C+the+Santa+Clara+chip+maker+is+letting+its+hardware+partners+know+of+a+revised+schedule+to+halt+production+and%2For+stop+the+supply+of+more+than+25+existing+desktop+processor+models+so+that+it+can+focus+on+and+make+room+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fintel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fintel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>It&#8217;s out with the old and in with the new over at Intel. According to reports, the Santa Clara chip maker is letting its hardware partners know of a revised schedule to halt production and/or stop the supply of more than 25 existing desktop processor models so that it can focus on and make room for its upcoming 22nm Ivy Bridge launch.</p>
<p>Speaking with industry sources in Taiwan, DigiTimes says Intel is suspending the supply of Core i5 660 and 661, Core i3 530, Pentium E5700, and Celeron E3500 processors and will cut off production in the second quarter of 2012.</p>
<p>In addition, Intel is putting the brakes on production lines churning out Core i7 860S and 876K, Core i5 655K, 750S, and 760, and Celeron 430 and 450 processors sometime this quarter, followed by Core i7 870S and 880S, Core Duo E7500 and E7600, Pentium E550 and E6600, and Celeron E3300 in Q2 2012.</p>
<p>The latest word on Ivy Bridge is that Intel will launch more than a dozen desktop and mobile variants on April 8. Desktop Ivy Bridge processors will initially be priced between $184 and $332, while half a dozen mobile chips will cost up to $1,100 (Core i7 3920QM).</p>
<p>Source:http://hothardware.com/News/Intel-Scrapping-Two-Dozen-CPUs-to-Make-Room-for-Ivy-Bridge/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fz6AxoK&amp;text=Intel%20Scrapping%20Two%20Dozen%20CPUs%20to%20Make%20Room%20for%20Ivy%20Bridge&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fintel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/01/intel-scrapping-two-dozen-cpus-to-make-room-for-ivy-bridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New MSI Wind Top AIO Features LED Panel</title>
		<link>http://onlyhardwareblog.com/2012/01/new-msi-wind-top-aio-features-led-panel/</link>
		<comments>http://onlyhardwareblog.com/2012/01/new-msi-wind-top-aio-features-led-panel/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 08:48:58 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[MSI]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2012/01/new-msi-wind-top-aio-features-led-panel/</guid>
		<description><![CDATA[
			
				
			
		
MSI is laying claim to being the first in the industry to use an LED panel on an all-in-one computer. The MSI Wind Top AE2071 AIO indeed features a 20-inch multi-touch LED screen, as well as a 2nd-gen Intel CPU, up to 8GB of DDR2 memory, a 500GB SATA HDD, DVD Super Multi drive, 6-in-1 [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fnew-msi-wind-top-aio-features-led-panel%2F&amp;title=New+MSI+Wind+Top+AIO+Features+LED+Panel&amp;summary=MSI+is+laying+claim+to+being+the+first+in+the+industry+to+use+an+LED+panel+on+an+all-in-one+computer.+The+MSI+Wind+Top+AE2071+AIO+indeed+features+a+20-inch+multi-touch+LED+screen%2C+as+well+as+a+2nd-gen+Intel+CPU%2C+up+to+8GB+of+DDR2+memory%2C+a+500GB+SATA+HDD%2C+DVD+Super+Multi+drive%2C+6-in-1+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fnew-msi-wind-top-aio-features-led-panel%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fnew-msi-wind-top-aio-features-led-panel%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>MSI is laying claim to being the first in the industry to use an LED panel on an all-in-one computer. The MSI Wind Top AE2071 AIO indeed features a 20-inch multi-touch LED screen, as well as a 2nd-gen Intel CPU, up to 8GB of DDR2 memory, a 500GB SATA HDD, DVD Super Multi drive, 6-in-1 media reader, and a 0.3MP webcam.</p>
<p>Other features include MSI’s Smart Media Link and Smart Sync software for easy sharing with other devices, 802.11b/g/n WiFi, and support for USB 3.0.</p>
<p>The new Entertainment Series Wind Top AE2071 AIO PC is the first in the industry to use an LED panel. The integrated panel and computer, and the new ID design help to make the desktop even more clutter-free. MSI&#8217;s unique energy-saving technology also reduces power consumption by a substantial 30% compared to conventional CCFL panels to create a truly environmentally friendly PC. Performance-wise, the Wind Top AE2071 is equipped with a 2nd generation Intel® Core™ processor for breakthrough multitasking performance.</p>
<p>Revolutionary 2nd Generation Intel Core™ Processor<br />
The new MSI Wind Top AE2071 is equipped with the latest 2nd generation Intel® Core™ processor that integrates the Graphics Processing Unit (GPU) and the Central Processing Unit (CPU) in a single chip for the first time. All video-related functions are also integrated into the chip to improve your video or graphics experience, and the &#8220;Sandy Bridge&#8221; processor provides the MSI Wind Top AE2071 with improved processing performance. The integrated GPU can also share resources or even automatically adjust CPU and GPU resources on the fly based on the workload, boosting productivity without sacrificing power efficiency.</p>
<p>Smart Multimedia File Sharing<br />
The Wind Top AE2071 introduces MSI&#8217;s new exclusive Smart Media Link and Smart Sync technologies. Smart Media Link allows videos, music, and photos to be played on tablets, notebooks, mobile phones, and DLNA-compatible TVs on the same WiFi or LAN network. MSI Smart Sync allows easy synching for your Outlook contacts, calendar, photos, music, documents, and bookmarks on other computers or your mobile phone, so you can keep track of your latest schedule and information, create secure backups, and avoid duplicating data.</p>
<p>Comprehensive I/O Interface with USB 3.0 Support<br />
The Wind Top AE2071 features a comprehensive range of I/O interfaces. MSI Super Charger technology, which allows you to charge devices without turning the computer on, and the USB 3.0 interface on the Wind Top AE2071, which allows data transfers to run 10 times faster, facilitate large file transfers and meet user&#8217;s multimedia requirements. HDMI is also supported for outputting the video display to larger display devices such as projectors and TVs.</p>
<p>Fast Screen Off<br />
The Wind Top AE2071 incorporates a 20&#8243; LED high-definition LCD and independent screen controls with quick screen shutdown. When the user is away from the keyboard or does not need to use the screen, it can be shut off directly without waiting for the OS to enter standby mode. When the screen is turned off the AE2071&#8217;s power consumption in idle mode is reduced by another 28%.</p>
<p>Military class II components<br />
MSI Wind Top AE2071 uses the highest quality and most stable :SFC?Solid cap and Hi-c Cap, they can provide the unparalleled quality, extreme performance and ultimate efficiency. MSI hired a third-party professional laboratory &#8211; Integrated Service Technology Inc &#8211; to perform temperature, stress and humidity tests according to the US Department of Defense component standards. All components have passed all items in these tests. These also show that the components of MSI is a guarantee for ultimate quality and stability.</p>
<p>Increased Performance, Improved Efficiency, and Reduced Emissions<br />
By being the first the in the industry to introduce LED panels for AIO PCs, MSI has achieved huge power savings. Because LED panels use 30% less power than conventional CCFL panels, MSI&#8217;s AE2071 with LED technology reduces power consumption by 30%. All MSI AE2071 models have been certified to conform to the US Energy Star 5.2 standard as well as the EU&#8217;s latest 2010 ErP and RoHS directives. In a further demonstration of MSI&#8217;s commitment to the environment, non-toxic coatings are used and 80% of the packaging materials are recyclable. MSI&#8217;s emphasis on energy efficiency and carbon emissions reduction takes green technology in business applications to a new level.</p>
<p>Source:http://hothardware.com/News/New-MSI-Wind-Top-AIO-Features-LED-Panel/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FugTuQt&amp;text=New%20MSI%20Wind%20Top%20AIO%20Features%20LED%20Panel&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2012%2F01%2Fnew-msi-wind-top-aio-features-led-panel%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2012/01/new-msi-wind-top-aio-features-led-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Case Labs MAGNUM M8 Case Review</title>
		<link>http://onlyhardwareblog.com/2011/12/case-labs-magnum-m8-case-review/</link>
		<comments>http://onlyhardwareblog.com/2011/12/case-labs-magnum-m8-case-review/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 04:34:10 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/12/case-labs-magnum-m8-case-review/</guid>
		<description><![CDATA[
			
				
			
		
Meet the Case Labs Magnum M8
Every time we think the market is fully saturated with every possible computer component anyone could possibly need, a new manufacturer comes on the scene to surprise us.   Case Labs has a fast growing underground following on several of the extreme enthusiast forums so we asked if we [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcase-labs-magnum-m8-case-review%2F&amp;title=Case+Labs+MAGNUM+M8+Case+Review&amp;summary=Meet+the+Case+Labs+Magnum+M8%0AEvery+time+we+think+the+market+is+fully+saturated+with+every+possible+computer+component+anyone+could+possibly+need%2C+a+new+manufacturer+comes+on+the+scene+to+surprise+us.+++Case+Labs+has+a+fast+growing+underground+following+on+several+of+the+extreme+enthusiast+forums+so+we+asked+if+we+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcase-labs-magnum-m8-case-review%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcase-labs-magnum-m8-case-review%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Meet the Case Labs Magnum M8</p>
<p>Every time we think the market is fully saturated with every possible computer component anyone could possibly need, a new manufacturer comes on the scene to surprise us.   Case Labs has a fast growing underground following on several of the extreme enthusiast forums so we asked if we could see what all the buzz was about.  They sent us over what is currently their most popular model, the Case Labs MAGNUM M8. </p>
<p>Case Labs, based in Canoga Park California, was started about a year ago by Jim Keating after frustration with the quality and features available from cases on the market.  Jim&#8217;s father, an aerospace engineer during the space program, started a custom enclosure making  business back in 1971 for electronic, military, medical, and industrial applications.  So when they needed to build a new workstation for engineering design and image rendering, finding an appropriate case proved to be the most challenging part of the project. The overwhelming majority of cases on the market impose strict design constraints; the choices for mounting hardware and cooling systems are very limited and they wanted a design where the user was able to have almost unlimited modularity and flexibility.   While they had the facility to make custom parts on the fly they realized most PC enthusiast do not and figured they could put their talents to use making the ultimate PC case.  The goal was to make probably the last case you would ever need to buy. </p>
<p>Building on the success with the M8, Case Labs added to their line up based on user feedback from the enthusiast community.  The M10 has the same dimensions as the M8 on the outside but supports a larger mATX &#8211; XL-ATX (13.60&#8243; x 10.75”) (346mm x 273mm) motherboards where the Magnum M8 supports the more common mATX &#8211; ATX/EATX (12.0&#8243; x 10.75”) size.  The MH10 is deeper than the M8 by 6&#8243; where the T10 is taller by 6&#8243;.  Finally the TH10 is both taller and deeper by 6&#8243; in each direction.  All of these cases are available in powder coated black matte or white gloss inside and out.  For more color options Case Labs has teamed up with FTW PC  to offer custom powder coated colors for an additional fee of $274.00 for an M8 Case. </p>
<p>Source:http://www.legitreviews.com/article/1789/1/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fs018ve&amp;text=Case%20Labs%20MAGNUM%20M8%20Case%20Review&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcase-labs-magnum-m8-case-review%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/12/case-labs-magnum-m8-case-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cooler Master Throws Budget Shoppers a Bone with Elite 431 Plus Mid-Tower</title>
		<link>http://onlyhardwareblog.com/2011/12/cooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower/</link>
		<comments>http://onlyhardwareblog.com/2011/12/cooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 10:57:35 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[Cooler Master]]></category>
		<category><![CDATA[CPU]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/12/cooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower/</guid>
		<description><![CDATA[
			
				
			
		
The holiday shopping season is upon us, and that means setting aside some hard earned funds to buy your family and friends gifts because, well, that&#8217;s the kind of thing we do this time of year. But lest you forget about yourself, Cooler Master today announced the Elite 431 Plus, a mid-tower computer case with [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower%2F&amp;title=Cooler+Master+Throws+Budget+Shoppers+a+Bone+with+Elite+431+Plus+Mid-Tower&amp;summary=The+holiday+shopping+season+is+upon+us%2C+and+that+means+setting+aside+some+hard+earned+funds+to+buy+your+family+and+friends+gifts+because%2C+well%2C+that%27s+the+kind+of+thing+we+do+this+time+of+year.+But+lest+you+forget+about+yourself%2C+Cooler+Master+today+announced+the+Elite+431+Plus%2C+a+mid-tower+computer+case+with+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The holiday shopping season is upon us, and that means setting aside some hard earned funds to buy your family and friends gifts because, well, that&#8217;s the kind of thing we do this time of year. But lest you forget about yourself, Cooler Master today announced the Elite 431 Plus, a mid-tower computer case with some high end features at a mainstream price.</p>
<p>The Elite 431 Plus is an all-black chassis with a somewhat aggressive styling, side window, and painted interior. A 120mm blue LED fan up front gives the case a bit of bling, in case you&#8217;re into that sort of thing, and there&#8217;s room for up to four more fans up top, on bottom, on the side, and in the back.</p>
<p>Cooler Master gives you three external 5.25-inch and two internal 3.5-inch drives to play with, along with five internal 3.5-inch drives and three internal 5.25-inch drives. According to Cooler Master, the Elite 431 Plus can accommodate long graphics cards like the AMD Radeon HD 6990 and Nvidia GeForce GTX 580, as well as larger size CPU coolers.</p>
<p>The Elite 431 Plus will be available later this month for $60.</p>
<p>Source:http://hothardware.com/News/Cooler-Master-Throws-Budget-Shoppers-a-Bone-with-Elite-431-Plus-MidTower/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FsroIqu&amp;text=Cooler%20Master%20Throws%20Budget%20Shoppers%20a%20Bone%20with%20Elite%20431%20Plus%20Mid-Tower&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fcooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/12/cooler-master-throws-budget-shoppers-a-bone-with-elite-431-plus-mid-tower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung readies 2GHz dual core for tablets</title>
		<link>http://onlyhardwareblog.com/2011/12/samsung-readies-2ghz-dual-core-for-tablets/</link>
		<comments>http://onlyhardwareblog.com/2011/12/samsung-readies-2ghz-dual-core-for-tablets/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 11:45:39 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Dual-core]]></category>
		<category><![CDATA[Samsung]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/12/samsung-readies-2ghz-dual-core-for-tablets/</guid>
		<description><![CDATA[
			
				
			
		
The Exynos 5250 dual-core CPU is Samsung’s latest offering based on the Coretex-A15 ARM design. It is ”designed specifically for high-end tablets” according to the company.
The chip is based on a 32nm manufacturing technology, which makes use of “high-k metal gate” processes that result in small chip dimensions, and is expected to offer nearly double [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fsamsung-readies-2ghz-dual-core-for-tablets%2F&amp;title=Samsung+readies+2GHz+dual+core+for+tablets&amp;summary=The+Exynos+5250+dual-core+CPU+is+Samsung%E2%80%99s+latest+offering+based+on+the+Coretex-A15+ARM+design.+It+is+%E2%80%9Ddesigned+specifically+for+high-end+tablets%E2%80%9D+according+to+the+company.%0AThe+chip+is+based+on+a+32nm+manufacturing+technology%2C+which+makes+use+of+%E2%80%9Chigh-k+metal+gate%E2%80%9D+processes+that+result+in+small+chip+dimensions%2C+and+is+expected+to+offer+nearly+double+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fsamsung-readies-2ghz-dual-core-for-tablets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fsamsung-readies-2ghz-dual-core-for-tablets%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The Exynos 5250 dual-core CPU is Samsung’s latest offering based on the Coretex-A15 ARM design. It is ”designed specifically for high-end tablets” according to the company.</p>
<p>The chip is based on a 32nm manufacturing technology, which makes use of “high-k metal gate” processes that result in small chip dimensions, and is expected to offer nearly double the performance of the current range of Coretex-A8 based dual core ARM processors running at 1.5Ghz.</p>
<p>“In particular, the Exynos 5250 design was architected to drive up to an industry leading 2560×1600 (WQXGA) display,” continued Samsung, reaffirming that the 5250 will find itself in high end tablet devices.</p>
<p>The company also noted that the new chip has a 12.8GB/s memory bandwidth, double that of Coretex-A9 based chips and a key factor in allowing the 5250 to support 3D graphics at high resolutions.</p>
<p>Samples of the chip have been shipped to customers, with Samsung expecting mass-production to kick off in Q2 of 2012.</p>
<p>Source:http://mybroadband.co.za/news/quick-news/39121-samsung-readies-2ghz-dual-core-for-tablets.html</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FrExxb7&amp;text=Samsung%20readies%202GHz%20dual%20core%20for%20tablets&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F12%2Fsamsung-readies-2ghz-dual-core-for-tablets%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/12/samsung-readies-2ghz-dual-core-for-tablets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Antec Introduces Kuhler H2O 920 Liquid CPU cooler in India</title>
		<link>http://onlyhardwareblog.com/2011/11/antec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india/</link>
		<comments>http://onlyhardwareblog.com/2011/11/antec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 03:46:00 +0000</pubDate>
		<dc:creator>Rahul</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/antec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india/</guid>
		<description><![CDATA[
			
				
			
		
The KÜHLER H2O 920 has a thicker radiator, dual fans, and is adjusted via Antec’s unique software, providing essential tools to control and monitor your CPU cooling system.
Antec Inc., the global leader in high-performance computer components and accessories for the gaming, PC upgrade and Do-It-Yourself markets, has announced the launch of the KÜHLER H2O 920 [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fantec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india%2F&amp;title=Antec+Introduces+Kuhler+H2O+920+Liquid+CPU+cooler+in+India&amp;summary=The+K%C3%9CHLER+H2O+920+has+a+thicker+radiator%2C+dual+fans%2C+and+is+adjusted+via+Antec%E2%80%99s+unique+software%2C+providing+essential+tools+to+control+and+monitor+your+CPU+cooling+system.%0AAntec+Inc.%2C+the+global+leader+in+high-performance+computer+components+and+accessories+for+the+gaming%2C+PC+upgrade+and+Do-It-Yourself+markets%2C+has+announced+the+launch+of+the+K%C3%9CHLER+H2O+920+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fantec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fantec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The KÜHLER H2O 920 has a thicker radiator, dual fans, and is adjusted via Antec’s unique software, providing essential tools to control and monitor your CPU cooling system.<br />
Antec Inc., the global leader in high-performance computer components and accessories for the gaming, PC upgrade and Do-It-Yourself markets, has announced the launch of the KÜHLER H2O 920 liquid CPU cooler, its newest product in its portfolio of cooling products. The KÜHLER H2O 920 has a thicker radiator, dual fans, and is adjusted via Antec’s unique software, providing essential tools to control and monitor your CPU cooling system.</p>
<p>Antec’s KÜHLER H2O 920 builds on success of KÜHLER H2O 620, offering improved airflow, zero maintenance and sealed liquid cooling solution. It provides an advanced fan control technology to deliver Antec’s renowned Quiet Computing™ technology for quiet, efficient performance. Additionally, the KÜHLER H2O 920’s dual Pulse Width Modulation (PWM) speed-switchable cooling fans provide finely tuned control delivering high-performance at minimum noise levels.</p>
<p>KÜHLER H2O 920 offers a sealed liquid CPU cooling solution for PC hardware, overclockers and gaming enthusiasts worldwide, and was developed in conjunction with Asetek the industry-leading supplier of OEM liquid cooling systems for computers.</p>
<p>“With CPU cooling, today’s users care primarily about four things: performance, low noise, reliability and ease-of-setup – all offered at the right price,” said Mr. Kevan Li, Regional Sales Manager, Antec Inc. “The new KÜHLER H2O 920 switches it up and packs a remarkable amount of cooling in a compact solution, and one that delivers performance greater than many of the tall dual-fan CPU coolers that barely fit into a system.”</p>
<p>Key Features:<br />
CPU Socket Compatibility: Intel LGA 775/1155/1156/1366, AMD AM2/AM3/AM2+/AM3+<br />
Included software provides essential tools to control and monitor the KUHLER H2O 920<br />
Non-corrugated easy-bend tubes for maximum flexibility in radiator positioning<br />
Pulse Width Modulation (PWM) radiator fans generate the quietest high performance cooling<br />
Customizable RGB LED creates brilliant illumination<br />
Cooling Liquid &#8211; Safe, environmentally-friendly, anti-corrosive</p>
<p>Backed by Antec’s Quality 3-year (AQ3) limited warranty on parts and labor, the product is available for a MSRP of INR 7.200 in Bangalore at Hollasons and Pixel Info Systems, in Chennai at Guru Shree Computers and R.C. Automation, in Hyderabad at Kompuserve and Shweta Computers, and also in Mumbai at Cassette World and Prima Infosolution. It is also available online through The IT Depot &#8211; India&#8217;s first IT online shopping store.</p>
<p>Source:http://www.indiainfoline.com/Markets/News/Antec-Introduces-Kuhler-H2O-920-Liquid-CPU-cooler-in-India/5292209615</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Ft5qvCd&amp;text=Antec%20Introduces%20Kuhler%20H2O%20920%20Liquid%20CPU%20cooler%20in%20India&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fantec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/antec-introduces-kuhler-h2o-920-liquid-cpu-cooler-in-india/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASUS Technical Summit: The New X79 Boards</title>
		<link>http://onlyhardwareblog.com/2011/11/asus-technical-summit-the-new-x79-boards/</link>
		<comments>http://onlyhardwareblog.com/2011/11/asus-technical-summit-the-new-x79-boards/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 09:18:19 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[Asus]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Motherboard]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/asus-technical-summit-the-new-x79-boards/</guid>
		<description><![CDATA[
			
				
			
		
A few weeks ago, the fine folks at ASUS invited a gaggle of us tech newsies out to San Jose to get up close and personal with their new X79 chipset-based motherboards. In addition to setting us up with top-notch accommodations, the ASUS crew had lots for us to see, hear, and busily jot down.
After [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fasus-technical-summit-the-new-x79-boards%2F&amp;title=ASUS+Technical+Summit%3A+The+New+X79+Boards&amp;summary=A+few+weeks+ago%2C+the+fine+folks+at+ASUS+invited+a+gaggle+of+us+tech+newsies+out+to+San+Jose+to+get+up+close+and+personal+with+their+new+X79+chipset-based+motherboards.+In+addition+to+setting+us+up+with+top-notch+accommodations%2C+the+ASUS+crew+had+lots+for+us+to+see%2C+hear%2C+and+busily+jot+down.%0AAfter+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fasus-technical-summit-the-new-x79-boards%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fasus-technical-summit-the-new-x79-boards%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>A few weeks ago, the fine folks at ASUS invited a gaggle of us tech newsies out to San Jose to get up close and personal with their new X79 chipset-based motherboards. In addition to setting us up with top-notch accommodations, the ASUS crew had lots for us to see, hear, and busily jot down.</p>
<p>After breakfast, we listened to several brief but informative presentations by various ASUS representatives on the X79 platform (and Intel’s upcoming CPUs) and all the new features on the ASUS X79-based motherboards. After that, we hit the demo floor.</p>
<p>ASUS had several stations set up where we could take our time getting familiar with the new products. Boy, they demoed a lot of new ones (which we mentioned in brief earlier), including the P9X79 Standard, Pro, and Deluxe; RoG Series Rampage IV Extremel TUF Series Sabertooth X79; and the P9X79 WS (worsktation board).</p>
<p>All of the new motherboards support second-gen Intel CPUs with the 2011 socket, and they all offer quad-channel DDR3 memory via 8 DIMM slots. All of the boards have either 8 or 10 SATA ports with equal number of SATA 6Gbps and 3Gbps as well as more than enough USB ports with a healthy mix of USB 3.0 and 2.0 represented. For graphics, the entire line supports PCI-e gen 3 and SLI/CrossFire X&#8211;2-way, 3-way, or 4-way, depending on the board.</p>
<p>There are plenty of other features of note as well, including support for SSD caching. If you’re aware of the features of the Z68 chipset, you know about SSD caching; however, with X79, SSD caching is not actually part of the chipset. ASUS nevertheless baked it in, so you can still take advantage of that feature.</p>
<p>Overclockers have some new options to try out. ASUS has updated its UEFI and included more granular fan controls (via ASUS Fan Xpert+) and a new version of Ai Suite. Further, ASUS included the third generation of Dual Intelligent Processors (TPU and EPU) and new Digi+ Power controls for precise RAM and CPU tuning. Fearless/foolish overclockers may also find that the BIOS Flashback feature (which allows you to update the BIOS via USB flash drive without the CPU or hard drive running) comes in handy.</p>
<p>Predictably, the Sabertooth X79 has a few extra features. In addition to being built with touch components for optimal stability and reliability, the board sports TUF Thermal Armor to protect the components from overheating, TUF Thermal Radar (which is comprised of no fewer than 12 thermal sensors), and eight fan headers. In terms of looks, this board is a sight to behold with the tan and metallic green accents. Even the DIMM slots (by Corsair) match the look.</p>
<p>Possibly the most impressive motherboard of the bunch is the RoG Rampage IV Extreme. The thing is just packed with features, including X Socket, which is kind of a universal cooler adapter; RoG Connect; an OC Key, which lets you overclock on the fly; VGA Hotwire, for easily overclocking your graphics card; and more.</p>
<p>The new lineup of ASUS motherboards has products for every class&#8211;entry, mainstream, enthusiast, and so on&#8211;and they’re all loaded with compelling features and solid specs.</p>
<p>Source:http://hothardware.com/News/ASUS-Technical-Summit-The-New-X79-Boards/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FughOD5&amp;text=ASUS%20Technical%20Summit%3A%20The%20New%20X79%20Boards&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fasus-technical-summit-the-new-x79-boards%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/asus-technical-summit-the-new-x79-boards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gigabyte Releases X79 Motherboard Series</title>
		<link>http://onlyhardwareblog.com/2011/11/gigabyte-releases-x79-motherboard-series/</link>
		<comments>http://onlyhardwareblog.com/2011/11/gigabyte-releases-x79-motherboard-series/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 09:16:02 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[INTEL]]></category>
		<category><![CDATA[Motherboard]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/gigabyte-releases-x79-motherboard-series/</guid>
		<description><![CDATA[
			
				
			
		
You understand the drill by now: Intel releases a new CPU, tons of PC makers unveil new machines with the new chip in it, and tons of motherboard makers offer up new boards to handle the new chip. One thing is very clear; there&#8217;s a lot of &#8220;new&#8221; going on this week. Gigabyte is now [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fgigabyte-releases-x79-motherboard-series%2F&amp;title=Gigabyte+Releases+X79+Motherboard+Series&amp;summary=You+understand+the+drill+by+now%3A+Intel+releases+a+new+CPU%2C+tons+of+PC+makers+unveil+new+machines+with+the+new+chip+in+it%2C+and+tons+of+motherboard+makers+offer+up+new+boards+to+handle+the+new+chip.+One+thing+is+very+clear%3B+there%27s+a+lot+of+%22new%22+going+on+this+week.+Gigabyte+is+now+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fgigabyte-releases-x79-motherboard-series%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fgigabyte-releases-x79-motherboard-series%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>You understand the drill by now: Intel releases a new CPU, tons of PC makers unveil new machines with the new chip in it, and tons of motherboard makers offer up new boards to handle the new chip. One thing is very clear; there&#8217;s a lot of &#8220;new&#8221; going on this week. Gigabyte is now on the bandwagon with their new X79 series of mainboards, featuring the company&#8217;s new 3-way digital engine, 3D power and 3D BIOS. As you&#8217;d guess, this board supports the latest 2nd-generation Intel Core i7 processor family (Sandy Bridge-E).</p>
<p>The new boards take advantage of the new and exclusive GIGABYTE 3D Power, based on a 3-way Digital Power Engine for both the PWM and memory that delivers unprecedented power delivery control. Utilizing a brand new Digital PWM controller, GIGABYTE’s 3D Power features three digital memory controllers for not only the memory, but VTT and VSA, for real-time adjustment and control. The GIGABYTE 3D Power™ application provides a range of controls via a graphical user interface, allowing adjustment of load line calibration, over voltage protection control and real-time adjustment of CPU, VTT, IMC and four-channel memory frequencies.</p>
<p>With an unprecedented 40 PCI Express lanes, enthusiast gamers can also enjoy the absolute maximum GPU performance in Multi-GPU SLI and CrossFireX configurations. The series includes the G1.Assassin 2, X79-UD7, X79-UD5 and X79-UD3, all of which should be filtering out soon.</p>
<p>Source:http://hothardware.com/News/Gigabyte-Releases-X79-Motherboard-Series/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fte5OR8&amp;text=Gigabyte%20Releases%20X79%20Motherboard%20Series&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fgigabyte-releases-x79-motherboard-series%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/gigabyte-releases-x79-motherboard-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NVIDIA&#8217;s Tegra CPUs And CUDA GPUs Hit Barcelona Supercomputing Center</title>
		<link>http://onlyhardwareblog.com/2011/11/nvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center/</link>
		<comments>http://onlyhardwareblog.com/2011/11/nvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 09:14:40 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Nvidia]]></category>
		<category><![CDATA[Supercomputer]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/nvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center/</guid>
		<description><![CDATA[
			
				
			
		
Wondering if ARM-based chips are powerful enough for the real world? Here&#8217;s your answer. NVIDIA has just unveiled a new prototype system with Tegra ARM CPUs and CUDA GPUs, and that system just so happens to be a supercomputer. The company has announced that the Barcelona Supercomputing Center (BSC) is developing a new hybrid supercomputer [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fnvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center%2F&amp;title=NVIDIA%26%238217%3Bs+Tegra+CPUs+And+CUDA+GPUs+Hit+Barcelona+Supercomputing+Center&amp;summary=Wondering+if+ARM-based+chips+are+powerful+enough+for+the+real+world%3F+Here%27s+your+answer.+NVIDIA+has+just+unveiled+a+new+prototype+system+with+Tegra+ARM+CPUs+and+CUDA+GPUs%2C+and+that+system+just+so+happens+to+be+a+supercomputer.+The+company+has+announced+that+the+Barcelona+Supercomputing+Center+%28BSC%29+is+developing+a+new+hybrid+supercomputer+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fnvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fnvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Wondering if ARM-based chips are powerful enough for the real world? Here&#8217;s your answer. NVIDIA has just unveiled a new prototype system with Tegra ARM CPUs and CUDA GPUs, and that system just so happens to be a supercomputer. The company has announced that the Barcelona Supercomputing Center (BSC) is developing a new hybrid supercomputer that, for the first time, uses energy-efficient, low-power NVIDIA Tegra ARM CPUs, together with high-performance NVIDIA CUDA GPUs.</p>
<p>BSC is planning to develop the first large scale system based on this technology, with a near term goal of demonstrating two to five times improvement in energy efficiency compared with today&#8217;s most efficient systems. BSC&#8217;s ultimate research goal is to deliver exascale-level performance while using 15 to 30 times less power than current supercomputer architectures. This so-called EU Mont-Blanc Project will explore next-generation HPC architectures and develop a portfolio of exascale applications that run efficiently on these kinds of energy-efficient, embedded mobile technologies.</p>
<p>&#8220;In most current systems, CPUs alone consume the lion&#8217;s share of the energy, often 40 percent or more,&#8221; said Alex Ramirez, leader of the Mont-Blanc Project. &#8220;By comparison, the Mont-Blanc architecture will rely on energy-efficient compute accelerators and ARM processors used in embedded and mobile devices to achieve a four- to 10-times increase in energy-efficiency by 2014.&#8221; To support growing demand for similar ARM-based initiatives around the world, NVIDIA also announced plans to develop a new hardware and software development kit. The kit, with hardware developed by SECO, will feature a quad-core NVIDIA Tegra 3 ARM CPU accelerated by a discrete NVIDIA GPU. It is expected to be available in the first half of 2012, and will be supported by the NVIDIA CUDA parallel programming toolkit.</p>
<p>Source:http://hothardware.com/News/NVIDIAs-Tegra-CPUs-And-CUDA-GPUs-Hit-Barcelona-Supercomputing-Center/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Ft7zkgY&amp;text=NVIDIA%27s%20Tegra%20CPUs%20And%20CUDA%20GPUs%20Hit%20Barcelona%20Supercomputing%20Center&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fnvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/nvidias-tegra-cpus-and-cuda-gpus-hit-barcelona-supercomputing-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maingear Adds Intel Core i7-3960X Extreme Edition CPU To Desktops</title>
		<link>http://onlyhardwareblog.com/2011/11/maingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops/</link>
		<comments>http://onlyhardwareblog.com/2011/11/maingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 05:38:01 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[INTEL]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/maingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops/</guid>
		<description><![CDATA[
			
				
			
		
Maingear&#8217;s got a new rig out today, and more importantly, there&#8217;s a new 2nd-generation Intel Core i7 chip to go along with it. The company has just updated their SHIFT and F131 desktops with the new 2nd generation Intel Core i7-3960X Extreme Edition processor and the company’s exclusive EPIC Audio Engine. Turbo Boost Technology 2.0 [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fmaingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops%2F&amp;title=Maingear+Adds+Intel+Core+i7-3960X+Extreme+Edition+CPU+To+Desktops&amp;summary=Maingear%27s+got+a+new+rig+out+today%2C+and+more+importantly%2C+there%27s+a+new+2nd-generation+Intel+Core+i7+chip+to+go+along+with+it.+The+company+has+just+updated+their+SHIFT+and+F131+desktops+with+the+new+2nd+generation+Intel+Core+i7-3960X+Extreme+Edition+processor+and+the+company%E2%80%99s+exclusive+EPIC+Audio+Engine.+Turbo+Boost+Technology+2.0+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fmaingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fmaingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Maingear&#8217;s got a new rig out today, and more importantly, there&#8217;s a new 2nd-generation Intel Core i7 chip to go along with it. The company has just updated their SHIFT and F131 desktops with the new 2nd generation Intel Core i7-3960X Extreme Edition processor and the company’s exclusive EPIC Audio Engine. Turbo Boost Technology 2.0 and Hyper-Threading are both here, as is a 34% improvement in performance at normal clock speeds that can also be overclocked up to 5.2 GHz. This top gaming computer platform is also the first to feature quad-channel memory offering up to 102% memory performance that is more than twice the memory bandwidth of the previous generation.</p>
<p>The EPIC Audio Engine leverages Aphex’s studio-grade processing technology in a custom designed high performance pc solution, headphone audio output and microphone input will be unmatched by any solution in the industry.  This unique technology harmonically brings audio to life without adding gain to deliver audio that’s more balanced, more articulated, and simply put, better sounding.</p>
<p>The new rigs are on sale today for those needing a pre-fab desktop tower to get their game on. </p>
<p>Source:http://hothardware.com/News/Maingear-Adds-Intel-Core-i73960X-Extreme-Edition-CPU-To-Desktops/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fsq5mC8&amp;text=Maingear%20Adds%20Intel%20Core%20i7-3960X%20Extreme%20Edition%20CPU%20To%20Desktops&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fmaingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/maingear-adds-intel-core-i7-3960x-extreme-edition-cpu-to-desktops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Power-PC times very softly</title>
		<link>http://onlyhardwareblog.com/2011/11/power-pc-times-very-softly/</link>
		<comments>http://onlyhardwareblog.com/2011/11/power-pc-times-very-softly/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 10:59:48 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[PC]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/11/power-pc-times-very-softly/</guid>
		<description><![CDATA[
			
				
			
		
We like to use our computer in our spare time. We download a video to play during which a flash game and pull in the background the latest Windows update. Not two minutes, the machine turned on, the fan already echoing relentlessly around the room.
As long as you have your own office, this might not [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fpower-pc-times-very-softly%2F&amp;title=Power-PC+times+very+softly&amp;summary=We+like+to+use+our+computer+in+our+spare+time.+We+download+a+video+to+play+during+which+a+flash+game+and+pull+in+the+background+the+latest+Windows+update.+Not+two+minutes%2C+the+machine+turned+on%2C+the+fan+already+echoing+relentlessly+around+the+room.%0AAs+long+as+you+have+your+own+office%2C+this+might+not+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fpower-pc-times-very-softly%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fpower-pc-times-very-softly%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We like to use our computer in our spare time. We download a video to play during which a flash game and pull in the background the latest Windows update. Not two minutes, the machine turned on, the fan already echoing relentlessly around the room.</p>
<p>As long as you have your own office, this might not be so bad. But often, the computer in the living room, others do not like watching TV with his constant and annoying background hairdryer. Clearly, we want a high-performance Power-PC, game console and home theater in one, but we do not want to hear him.</p>
<p>Many fans, or a compact solution</p>
<p>This is the most (if not the sole) of the noise from fans. The CPU has a fan, the graphics card has a fan and the housing also has one. However, there are now products that combine the CPU and graphics card to the motherboard and hold it practically silent as a passive cooling device with a cold and quiet.</p>
<p>Such devices include the ASUS E35M1-I Deluxe, a motherboard with a CPU from AMD&#8217;s new Fusion series, which combines a powerful processor with a graphics card on a board in mini-ITX form factor. In addition, scores the ASUS E35M1-I Deluxe with its connectivity, because it focuses on the same eight USB 2.0 and four USB 3.0 ports are available, as well as connections for the wireless antenna and an eSATA port for an external storage medium.</p>
<p>Particularly striking is the large fan that cools the entire package with passive cooling of the CPU, graphics card and motherboard. In addition to the passive cooling, there are also an optional CPU fan connector, which supports the Q-Fan technology. It is intended for those who overclock their computers.</p>
<p>Those who do not do can connect a case fan here and now faces three flies (CPU, graphics card and case) with one stone. Also, the fan on the Extensible Firmware Interface (EFI), which replaces the BIOS, be adjusted as required by mouse click.</p>
<p>Suitable insulation</p>
<p>Those who have computers with this hardware is still too loud, which should make for better insulation thoughts. Here, the right housing work wonders. Otherwise, there are insulating mats, with which you can insulate the housing and individual components themselves. Heavy layer mats also eliminate noise due to vibrations.</p>
<p>Resting on the plate</p>
<p>Besides the fans, but also makes the hard disk for unwanted noise. Here is an HD-Silencer provide for peace, by the hard drive is wrapped in a sound absorbing housing. For hobbyists is the decoupling of the plate is a simple and effective alternative.</p>
<p>Who wants it more elegant and has a small little money available, but which can also be a SSD (Solid State Drive) install in his PC. Unlike the conventional magnetic storage disk drives (HDD) are lacking moving parts. An SDD is completely silent in operation.</p>
<p>Moreover, it has much lower access times and faster read and write rate, which is why an SSD also offers more speed than a normal drive. Even the prices of SSDs are quite high, but the price decline is also used here. Already, there are cheap solid state drives by 50 to 100 €, as the OCZ Vertex 3 in the 60 GB version for around 75 €.</p>
<p>Power to silence</p>
<p>Finally, one should also take a look at the power supply. Also this may be the troublemaker, especially if one has been to silence all other parts. This also helps decouple or buying a quieter power supply via a specialized provider like silentmaxx.</p>
<p>Passive cooling for two at a time<br />
, the large passive cooling falls directly into the eye. The ASUS E35M1-I Deluxe is optimally cooled and the whisper-quiet. Since CPU on the motherboard and graphics card are installed together, not two individual fans are needed. Only those who overclocked, will probably also need the optional fan connector for the CPU. settings via mouse click is particularly pleasant, especially for all non-system administrators, is the possibility to fans about the Extensible Firmware Interface (EFI) is optimal with a mouse click for own use discontinue.</p>
<p>Excellent connectivity<br />
, but not only his qualities still draw the ASUS motherboard from the small mini-ITX format. Its connectivity is also a cause for joy. Wi-Fi and Bluetooth, plus all 12 USB ports (four USB 3.0) eSATA port and a speak for themselves.</p>
<p>Silent Solid State Drives (SSD)<br />
No moving parts, no noise. An SSD, such as the OCZ 3 SATA III 2.5 &#8220;SSD is not soft, it is absolutely silent when it works. This also makes it extremely fast, thanks to higher literacy rate. Also, the access times of all beat previously known as that an SSD for this reason a purchase consideration is value.</p>
<p>Prices for the SSD<br />
, the price decline this year alone is clearly visible. The expensive 240GB version of the OCZ Vertex 3 is dropped from around 400 € in the spring of 2011 to just over € 300 in November. The 60 GB version is already to have around 75 € and is also completely silent.</p>
<p>Disk insulate<br />
a magnetic memory can be brought to a hard disk HD silencers to silence. The hard drive is completely enclosed by this enclosure. The sound is swallowed and not penetrate to the outside. It is important but also a thermal pad and a heat sink as in silentmaxx HD silencers to the hard drive is not only quiet but also chilly cold.</p>
<p>PC-insulated housing<br />
also a way to stop the noise of a computer is to put him in an insulated housing. With around 70 € is one of the ITA-2767 silentmaxx, a specialist in quiet and silent PCs, here.</p>
<p>Insulating mats for self-upholsterer<br />
who wants to have a very good price and features, handcrafted skill, the line can be PC case and its inner workings and even with insulating mats. Sets of Cooltek here as it has been around for about 10 €.</p>
<p>Power supply with Pst-factor<br />
What was shifted to a laptop to the outside, is found inside the PC where it ensures proper heat and therefore fan noise: the power supply. Again, there are hardware silentmaxx cooled, fanless II as the 500th</p>
<p>Source:http://digitalewelt.freenet.de/computerzubehoer/ratgeber-powerpc-mal-ganz-leise_3032942_1055178.html</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FsFn6N7&amp;text=Power-PC%20times%20very%20softly&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F11%2Fpower-pc-times-very-softly%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/11/power-pc-times-very-softly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VIA Stuffs 1GHz C7 CPU And VX900 Into EPIA-M720 Mini-ITX Mobo</title>
		<link>http://onlyhardwareblog.com/2011/09/via-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo/</link>
		<comments>http://onlyhardwareblog.com/2011/09/via-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 03:52:19 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[SATA]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/09/via-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo/</guid>
		<description><![CDATA[
			
				
			
		
Embedded systems just aren&#8217;t what they used to be. And by that, we mean that they&#8217;re far more potent and useful to the masses than they were just a few years back, when they were only powerful enough to handle mundane enterprise chores and the like. VIA has been capitalizing on the uptick in power [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fvia-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo%2F&amp;title=VIA+Stuffs+1GHz+C7+CPU+And+VX900+Into+EPIA-M720+Mini-ITX+Mobo&amp;summary=Embedded+systems+just+aren%27t+what+they+used+to+be.+And+by+that%2C+we+mean+that+they%27re+far+more+potent+and+useful+to+the+masses+than+they+were+just+a+few+years+back%2C+when+they+were+only+powerful+enough+to+handle+mundane+enterprise+chores+and+the+like.+VIA+has+been+capitalizing+on+the+uptick+in+power+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fvia-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fvia-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Embedded systems just aren&#8217;t what they used to be. And by that, we mean that they&#8217;re far more potent and useful to the masses than they were just a few years back, when they were only powerful enough to handle mundane enterprise chores and the like. VIA has been capitalizing on the uptick in power and power efficiency lately, and their newest board is living proof. The next-gen EPIA-M720 Mini-ITX motherboard features the VIA VX900 MSP, and acts as the upgrade to the EPIA-LN. There&#8217;s DDR3 and SATA II support, as well as a VIA 1GHz C7 processor coupled with the VA VX900 all-in-one media system processor.</p>
<p>All combined, what you&#8217;re left with is a small footprint that&#8217;s plenty powerful to chew through most HD video, and there&#8217;s even HDMI support for carputers or small HTPCs. Measuring just 17cm x 17cm the VIA EPIA-M720 features the 1.0GHz VIA C7 processor for fanless configurations with ultra low power requirements. The VIA C7 processor is combined with the VIA VX900 MSP, supporting up to 4GB of DDR3 1066 DIMM system memory and featuring the VIA ChromotionHD 2.0 video processor. The VIA EPIA-M720 also adds support for Windows 7 and Windows Embedded 7 operating systems.</p>
<p>Rear panel I/O includes two PS/2 ports (KB/MS), one HDMI port, one VGA port, one COM port, one Gigabit LAN port, two USB 2.0 ports and three audio jacks. An onboard PCI slot is accompanied with two SATA II connectors, an additional COM port, a further three USB 2.0 pin headers for 6 USB ports (including two optional ports), SPDIF out, one pin header for LPT and an SMBus header. There&#8217;s no word on pricing just yet, but it should be hitting retailers soon.</p>
<p>Source:http://hothardware.com/News/VIA-Stuffs-1GHz-C7-CPU-And-VX900-Into-EPIAM720-MiniITX-Mobo/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FpPoSqL&amp;text=VIA%20Stuffs%201GHz%20C7%20CPU%20And%20VX900%20Into%20EPIA-M720%20Mini-ITX%20Mobo&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fvia-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/09/via-stuffs-1ghz-c7-cpu-and-vx900-into-epia-m720-mini-itx-mobo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hard Reset GPU &amp; CPU Performance Test</title>
		<link>http://onlyhardwareblog.com/2011/09/hard-reset-gpu-cpu-performance-test/</link>
		<comments>http://onlyhardwareblog.com/2011/09/hard-reset-gpu-cpu-performance-test/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 04:50:34 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hard]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/09/hard-reset-gpu-cpu-performance-test/</guid>
		<description><![CDATA[
			
				
			
		
For some time now we&#8217;ve been keeping our eyes out for exciting new games capable of testing the latest computer hardware. This year a number of games have cropped up on our radar, such as Crysis 2, Bulletstorm, Dragon Age II, Brink, The Witcher 2, Duke Nukem Forever, DiRT 3 and most recently Deus Ex.
Out [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fhard-reset-gpu-cpu-performance-test%2F&amp;title=Hard+Reset+GPU+%26amp%3B+CPU+Performance+Test&amp;summary=For+some+time+now+we%27ve+been+keeping+our+eyes+out+for+exciting+new+games+capable+of+testing+the+latest+computer+hardware.+This+year+a+number+of+games+have+cropped+up+on+our+radar%2C+such+as+Crysis+2%2C+Bulletstorm%2C+Dragon+Age+II%2C+Brink%2C+The+Witcher+2%2C+Duke+Nukem+Forever%2C+DiRT+3+and+most+recently+Deus+Ex.%0AOut+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fhard-reset-gpu-cpu-performance-test%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fhard-reset-gpu-cpu-performance-test%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>For some time now we&#8217;ve been keeping our eyes out for exciting new games capable of testing the latest computer hardware. This year a number of games have cropped up on our radar, such as Crysis 2, Bulletstorm, Dragon Age II, Brink, The Witcher 2, Duke Nukem Forever, DiRT 3 and most recently Deus Ex.</p>
<p>Out of those just a few of them have impressed us, largely because most of them have been console ports that were rushed out the door to the PC, or so it seemed. Therefore it comes as little surprise that the most impressive game we have tested this year was The Witcher 2: Assassins of Kings, a game designed exclusively for the PC. </p>
<p>For some time now we&#8217;ve been keeping our eyes out for exciting new games capable of testing the latest computer hardware. This year a number of games have cropped up on our radar, such as Crysis 2, Bulletstorm, Dragon Age II, Brink, The Witcher 2, Duke Nukem Forever, DiRT 3 and most recently Deus Ex.</p>
<p>Out of those just a few of them have impressed us, largely because most of them have been console ports that were rushed out the door to the PC, or so it seemed. Therefore it comes as little surprise that the most impressive game we have tested this year was The Witcher 2: Assassins of Kings, a game designed exclusively for the PC. </p>
<p>What makes Hard Reset an exciting release is not just that it&#8217;s a PC exclusive title, of course, but so far we&#8217;ve been pleased with its somewhat basic gameplay mechanics and overall feel. Also, the game has been built using a new previously unseen game engine called “Road Hog” that has been built from scratch, making it a serious investment for the developer.</p>
<p>With the playable demo being the first thing to really put Hard Reset on our radar, the game itself is somewhat unknown to us. That said, Hard Reset is incredibly fun to play, moreover the game looks impressive, featuring quality graphics, despite it&#8217;s a DX9 only title. Let’s move on to see how we tested the game</p>
<p>Testing Notes &amp; Methodology<br />
Put away Fraps because Flying Wild Hog have been hard at work. Not only they took the liberty of creating their own game engine from the ground up, but they even bothered to include a built-in benchmark as well.</p>
<p>The benchmark includes a fly-by of the first level and goes for 45 seconds. Typically when benchmarking with Fraps we test a busy 60-second portion of the game and that is more than enough to get an accurate measurement of performance.</p>
<p>It&#8217;s worth noting that only the demo includes the benchmark tool. This is disappointing, though it&#8217;s possible that in the future the developer will add it to the final version of the game via a patch if people want it, I for one WANT IT!</p>
<p>Our performance review is comprised of 22 graphics card configurations from AMD and Nvidia across all price ranges. The latest drivers were used for all cards and we overclocked the Intel Core i7-2600K to 5.0GHz in an attempt to remove any CPU bottlenecks.</p>
<p>Hard Reset was tested using three resolutions: 1680&#215;1050, 1920&#215;1200 and 2560&#215;1600. We used the highest possible in-game quality settings with the FSAA (Full Screen Anti-Aliasing) and then again with the MLAA (Morphological Filtering) anti-aliasing rendering method enabled.</p>
<p>The texture filter level was set to 16x Anisotropic, shadows were set to soft, SSAO was set to high and DOF was set to high as well. Other rendering features such as Tessellation, Post-Processing and Triple Buffering were all enabled.</p>
<p>We&#8217;ll be looking for an average of 60fps for stutter-free gameplay. </p>
<p>Source:http://www.techspot.com/review/440-hard-reset-performance-test/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FoHJjGP&amp;text=Hard%20Reset%20GPU%20%26amp%3B%20CPU%20Performance%20Test&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fhard-reset-gpu-cpu-performance-test%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/09/hard-reset-gpu-cpu-performance-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel CPUs power consumption to fall off a cliff</title>
		<link>http://onlyhardwareblog.com/2011/09/intel-cpus-power-consumption-to-fall-off-a-cliff/</link>
		<comments>http://onlyhardwareblog.com/2011/09/intel-cpus-power-consumption-to-fall-off-a-cliff/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 11:08:45 +0000</pubDate>
		<dc:creator>Rahul</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[INTEL]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/09/intel-cpus-power-consumption-to-fall-off-a-cliff/</guid>
		<description><![CDATA[
			
				
			
		
We attended the Intel Developer Forum’s (IDF) second keynote this morning (did you follow the live blog?), and the most important thing that you need to know is that Intel is making “low-power” its priority. Low-power is not a new theme: ever since the Pentium 4 got shelved, power efficiency has become increasingly important. However, [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fintel-cpus-power-consumption-to-fall-off-a-cliff%2F&amp;title=Intel+CPUs+power+consumption+to+fall+off+a+cliff&amp;summary=We+attended+the+Intel+Developer+Forum%E2%80%99s+%28IDF%29+second+keynote+this+morning+%28did+you+follow+the+live+blog%3F%29%2C+and+the+most+important+thing+that+you+need+to+know+is+that+Intel+is+making+%E2%80%9Clow-power%E2%80%9D+its+priority.+Low-power+is+not+a+new+theme%3A+ever+since+the+Pentium+4+got+shelved%2C+power+efficiency+has+become+increasingly+important.+However%2C+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fintel-cpus-power-consumption-to-fall-off-a-cliff%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fintel-cpus-power-consumption-to-fall-off-a-cliff%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We attended the Intel Developer Forum’s (IDF) second keynote this morning (did you follow the live blog?), and the most important thing that you need to know is that Intel is making “low-power” its priority. Low-power is not a new theme: ever since the Pentium 4 got shelved, power efficiency has become increasingly important. However, the pressure from mobile platforms, the rise of non-Intel tablets and the arrival of Windows 8 on ARM-based systems has made low-power the highest priority at Intel. That is partly why an upcoming generation of Intel processors, codenamed Haswell is going to consume up to 20X less power, says Intel.</p>
<p>Why does power need to come down so quickly?</p>
<p>The short answer is “because people want it”, and Intel has recognized that during its keynote. However the more correct answer is “because people can get low-power elsewhere”. ARM-based systems like the iPad, the Galaxy Tab and others offer up to 10 hours of battery life while doing intensive work (like decoding a movie). Most PC battery numbers are based on a depletion test where the PC is ON, but doing nothing. In the real world, you would be happy if you can watch 3 hrs of video on a laptop.</p>
<p>How can Intel pull this off?</p>
<p>Optimizing power efficiency is one of the most interesting and challenging areas in computing. There are several approaches that are best when combined (but it’s very hard).</p>
<p>The ARM way: going low-power using Design Efficiency</p>
<p>Historically, ARM has had much better power efficiency because it has been designed from the ground up to be that way. Also, the ARM architecture and instruction set is -by nature- more nimble than Intel’s, but it is not backwards compatible since the beginning of time. ARM combines that nimble nature and a host of other techniques to keep power usage very low. That said, ARM doesn’t always have the latest power-savings techniques.</p>
<p>For example, most dual-core designs from ARM can’t use different voltage and frequency for different cores. I think that Qualcomm has added this ability to their latest chip, and I don’t know of any other company who has done it. ARM’s power-oriented design has been extremely successful, and the only (but not small!) downside is that “peak performance” may be far from what Intel has to offer, and one cannot simple “crank the voltage up” to compete. ARM licensees may dispute this, but in reality there’s no ARM-based device that actually competes in real-world performance, even with a “slow” computer like the Macbook Air 11″.</p>
<p>Intel: going low power by being smart</p>
<p>Intel may not have a lot of options when it comes down to trimming its X86 instruction set, but in the past, it has been really good at increasing performance while maintaining backwards compatibility. This time, Intel will use a combination of advanced manufacturing process, hardware and software tweaks to not only make every transistor use less power, but also to shut them down completely whenever they have a chance. As we reported earlier, Intel is also researching ways to use ultra-low (0.1-0.3V, my guess) voltage as demonstrated by having a CPU powered by a single solar panel – an incredible feat for a PC processor. This is not coming to the market anytime soon, though.</p>
<p>With the upcoming Haswell architecture, Intel will coordinate efforts from the operating system (OS) and the processor hardware to put (or keep) as many components to sleep mode, when they are not utilized. Intel also plans to distribute the workload to components that are already awake, instead of awakening sleeping ones.</p>
<p>This is a very interesting way for Intel because of one reason: the transistor that consumes less power is the one that is turned OFF. Even an efficient design can’t beat that, as zero is zero. Obviously, ARM can try doing the same thing, but I suspect that it is not under the pressure of doing so, yet.</p>
<p>What does it mean for you?</p>
<p>ARM or Intel – why would you care? In the next 4 years, you should care because if Intel gets its way, it will let PC makers build small, light and long-lasting computers that have the functionality and speed (to some extent) of Windows machines, but near the battery life and weight of ARM tablets. Those computers will also be able to run every Windows app that you currently have, and they won’t even need to be recompiled (and re-distributed) for ARM. Every driver that works on a PC will continue to work, and today, the driver diversity is one of the greatest strength of the “WinIntel platform.</p>
<p>It is clear that without the pressure from low-power devices, Intel may not have moved so quickly. Competition is good for the end-user.</p>
<p>Is Intel in trouble?</p>
<p>Not really. Not yet.</p>
<p>It is imperative for Intel to draw a (power consumption) line in the sand at which ARM’s main added-value  doesn’t matter as much anymore. If Intel fails to do that, it risks giving developers more incentives to make apps for non-Intel platforms, and applications are the lifeblood of any hardware platform. This is the reason why Intel fought so hard -and won- to preserve backwards compatibility since the i8086.</p>
<p>Since Windows 8 will also run on ARM, it is a gigantic protective wall that will go away. Of course, Intel stays a formidable industry player, but the X86 exclusivity of Windows was like a bullet-proof vest that made Intel near-invincible.</p>
<p>If Intel can continue keeping this trend, it will probably do well as long as it provides customers with what they demand: very portable, affordable, devices with which they don’t have to worry (too much) about battery life. The years ahead are going to be exciting!</p>
<p>Source:http://www.ubergizmo.com/2011/09/intel-haswell-low-power/</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fn75iWz&amp;text=Intel%20CPUs%20power%20consumption%20to%20fall%20off%20a%20cliff&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fintel-cpus-power-consumption-to-fall-off-a-cliff%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/09/intel-cpus-power-consumption-to-fall-off-a-cliff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IDF 2011 Paul Otellini Keynote: Haswell, Solar CPUs, and Android on X86</title>
		<link>http://onlyhardwareblog.com/2011/09/idf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86/</link>
		<comments>http://onlyhardwareblog.com/2011/09/idf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 07:19:32 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[CPU]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/09/idf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86/</guid>
		<description><![CDATA[
			
				
			
		
As is traditionally the case, Intel’s CEO Paul Otellini opened up the Intel Developer’s Forum with a keynote address in the theater at the Moscone Center in San Francisco. The focus of Otellini’s talk was the “future of computing” and how Intel plans to capitalize on current trends and growth in the mobile device market. [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fidf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86%2F&amp;title=IDF+2011+Paul+Otellini+Keynote%3A+Haswell%2C+Solar+CPUs%2C+and+Android+on+X86&amp;summary=As+is+traditionally+the+case%2C+Intel%E2%80%99s+CEO+Paul+Otellini+opened+up+the+Intel+Developer%E2%80%99s+Forum+with+a+keynote+address+in+the+theater+at+the+Moscone+Center+in+San+Francisco.+The+focus+of+Otellini%E2%80%99s+talk+was+the+%E2%80%9Cfuture+of+computing%E2%80%9D+and+how+Intel+plans+to+capitalize+on+current+trends+and+growth+in+the+mobile+device+market.+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fidf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fidf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>As is traditionally the case, Intel’s CEO Paul Otellini opened up the Intel Developer’s Forum with a keynote address in the theater at the Moscone Center in San Francisco. The focus of Otellini’s talk was the “future of computing” and how Intel plans to capitalize on current trends and growth in the mobile device market. Otellini’s opinion is that we are still in the early stages in this evolution of computing and moving forward, no one device will be at the center of the computing experience.  But of course, Intel plans to capitalize on all of them.</p>
<p>Source:As is traditionally the case, Intel’s CEO Paul Otellini opened up the Intel Developer’s Forum with a keynote address in the theater at the Moscone Center in San Francisco. The focus of Otellini’s talk was the “future of computing” and how Intel plans to capitalize on current trends and growth in the mobile device market. Otellini’s opinion is that we are still in the early stages in this evolution of computing and moving forward, no one device will be at the center of the computing experience.  But of course, Intel plans to capitalize on all of them.</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FrlJhFT&amp;text=IDF%202011%20Paul%20Otellini%20Keynote%3A%20Haswell%2C%20Solar%20CPUs%2C%20and%20Android%20on%20X86&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Fidf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/09/idf-2011-paul-otellini-keynote-haswell-solar-cpus-and-android-on-x86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lenovo Airs First Ultrabook W/ Dedicated GPU, Acer Clones MacBook Air</title>
		<link>http://onlyhardwareblog.com/2011/09/lenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air/</link>
		<comments>http://onlyhardwareblog.com/2011/09/lenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 07:09:21 +0000</pubDate>
		<dc:creator>Manmohan</dc:creator>
				<category><![CDATA[Hardware News]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Lenovo]]></category>

		<guid isPermaLink="false">http://onlyhardwareblog.com/2011/09/lenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air/</guid>
		<description><![CDATA[
			
				
			
		
Acer hopes to use ultraportable to recover from netbook slump
Faced with an evaporating netbook market, Acer Inc. (TPE:2353) has dropped to fourth place in global, fifth place in U.S. sales.  In full scale panic mode, the company has vowed to transform itself to be more like Apple, Inc. (AAPL).
I. Acer Clones the MacBook Air [...]]]></description>
			<content:encoded><![CDATA[<div class="linkedin_share_container" style="float:left;margin:0px 10px 0px 0px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Flenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air%2F&amp;title=Lenovo+Airs+First+Ultrabook+W%2F+Dedicated+GPU%2C+Acer+Clones+MacBook+Air&amp;summary=Acer+hopes+to+use+ultraportable+to+recover+from+netbook+slump%0AFaced+with+an+evaporating+netbook+market%2C+Acer+Inc.+%28TPE%3A2353%29+has+dropped+to+fourth+place+in+global%2C+fifth+place+in+U.S.+sales.++In+full+scale+panic+mode%2C+the+company+has+vowed+to+transform+itself+to+be+more+like+Apple%2C+Inc.+%28AAPL%29.%0AI.+Acer+Clones+the+MacBook+Air+%5B...%5D&amp;source=OnlyHardwareBlog" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://onlyhardwareblog.com/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Flenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Flenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air%2F&amp;source=hardwarexpert&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Acer hopes to use ultraportable to recover from netbook slump</p>
<p>Faced with an evaporating netbook market, Acer Inc. (TPE:2353) has dropped to fourth place in global, fifth place in U.S. sales.  In full scale panic mode, the company has vowed to transform itself to be more like Apple, Inc. (AAPL).</p>
<p>I. Acer Clones the MacBook Air &#8212; Will it &#8220;Just Work&#8221;?</p>
<p>A critical first step in that transformation was revealed [press release] on Friday at Germany&#8217;s IFA 2011 technology show in Berlin.  Acer pulled the wraps off its first &#8220;ultrabook&#8221;, a slick ultra-portable mid-size laptop with decent power.</p>
<p>Dubbed the Acer Aspire S3, the ultrabook clearly targets Apple&#8217;s popular MacBook Air, following it closely in looks.  It features a slender thin hybrid plastic-metal design, which pairs an outer light metal lid with a plastic body.  The lid is 17 mm tall at its thickest point (identical to the MacBook Air) and tapers to 13 mm.  </p>
<p>The S3 can be found in a 13.3-inch and 11.6-inch design.  They pack a 1376&#215;768 pixel display.  The 13.3-inch model weighs &#8220;less than 1.4 kg (3 lbs.)&#8221;, which, according to sources, is 1.35 kg (2.976 lb), to be precise.  That places it roughly in line with the 2.96 lb. 13.3-inch MacBook Air.</p>
<p>The trackpad could also be mistaken for the MacBook Air&#8217;s, almost &#8212; it features the same multi-touch capable flat glass design which disguises clickable buttons in the bottom half of the depressed rectangle. </p>
<p>The peripheral ports are almost identical to the MacBook Air&#8217;s with a 3.5 mm headphone jack, SD card slot, and twin USB 2.0 ports.  It trades Apple&#8217;s proprietary ThunderBolt connector for a more widely used full-sized HDMI port.  There&#8217;s 1.3 MP camera and microphone for Skype chats, just like the Air.  And likewise Bluetooth 4.0 connectivity is also supported.</p>
<p>The laptop features a 20 GB SSD, which holds the fast-booting Windows installation and media you want to play at faster speeds.  The Acer Green Instant On features leverages this to promise 2.5 second boot times from sleep and 6 second boots from deep sleep.  The battery promises 7 hours of life (identical) to the MacBook Air.</p>
<p>So what&#8217;s different between the S3 and the MacBook Air?  Well, as we mentioned the case implementation is a bit divergent.  And the price is significantly lower &#8212; 799 € (appr. $1,150 USD) for a model equipped with a 1.7 GHz ultra-low voltage (ULV) second-generation Core i5 CPU from Intel Corp. (INTC) and 4 GB of RAM.  </p>
<p>A comparable MacBook Air is $150 more, at $1,300.  However, the Acer comes with a slower 320 GB traditional HDD in its stock configuration, where the Apple comes with a 128 GB SSD.  Given the internal small-size SSD for the OS, about the affects of this swap should be limited to slower times for some application launches, large file saves, or large copies &#8212; OS launch time will be spared.</p>
<p>The price on the fully loaded model is moderately attractive given the larger amount of RAM.  With a 240 GB SSD, 1.7 GHz ULV Core i7 CPU, and 8 GB of DDR3 RAM, you will have to spend 1199 € ($1,720 USD) &#8212; versus $1700 USD for a comparable MacBook Air with a 256 GB SSD, but only 4 GB RAM.</p>
<p>Like Apple, the biggest disappointment in this portable is the lack of dedicated graphics, which will make GPU-accelerated applications like Photoshop, web browsers, and video games slower.</p>
<p>Acer must beware, its competitors &#8212; Toshiba Corp. (TYO:6502) and ASUSTEK Computer Inc. (TPE:2357) both plan to launch similar ultraportables at under $1,000 USD.  </p>
<p>Also given Apple&#8217;s propensity for suing competitors, it would be unsurprising to see Acer smacked with a lawsuit, given its remarkable similarity to Apple&#8217;s MacBook Air.  Of course we&#8217;ve already stated that we feel such claims are legally baseless &#8212; but Apple does have the tendency to make them.</p>
<p>II. Lenovo U300 Packs Graphics Punch</p>
<p>Lenovo Group, Ltd. (HKG: 0992) &#8212; the fastest growing brand internationally &#8212; pulled the wraps off an ultrabook of its own &#8212; the slick U300. </p>
<p>Retailing at $1,200 USD in its base configuration, the device is moderately pricey like its Acer and Apple competitors.  The design is lightweight and thin, but looks less MacBook Air clone-like than the Acer S3, as it features a shorter taper at the edges.</p>
<p>Overall the specs are similar to the competitors&#8217; designs, with one fairly significant difference.  The Lenovo U300 packs a Radeon 5470M (1 GB memory) dedicated graphics chip courtesy of Advanced Micro Devices, Inc. (AMD).  </p>
<p>The bad news here is that the Radeon 5470M isn&#8217;t really that much more powerful than the stock Intel HD 3000 (found in the Core series chips), barely edging it in some benchmarks.  Still, the idea of including a dedicated GPU is a worthy one, so Lenovo&#8217;s design is important from the standpoint of supporting dedicated mobile GPUs, even if it picks the wrong chip for the job.</p>
<p>Hopefully similar designs will come along soon with beefier chips (e.g. NVIDIA Corp.&#8217;s (NVDA) GeForce 540M GT chip).</p>
<p>The Toshiba, Lenovo, Acer, and ASUSTEK products will all ship sometime this fall.</p>
<p>Source:http://www.dailytech.com/Lenovo+Airs+First+Ultrabook+W+Dedicated+GPU+Acer+Clones+MacBook+Air/article22613.htm</p>
<div class="tw_button" style=";float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fnjeugc&amp;text=Lenovo%20Airs%20First%20Ultrabook%20W%2F%20Dedicated%20GPU%2C%20Acer%20Clones%20MacBook%20Air&amp;related=&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fonlyhardwareblog.com%2F2011%2F09%2Flenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air%2F"  class="twitter-share-button" target="_blank" style="width:55px;height:22px;background:transparent url('http://onlyhardwareblog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://onlyhardwareblog.com/2011/09/lenovo-airs-first-ultrabook-w-dedicated-gpu-acer-clones-macbook-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

