<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Android performance 2: Loop speed and the Dalvik VM</title>
	<atom:link href="http://occipital.com/blog/2008/10/31/android-performance-2-loop-speed-and-the-dalvik-vm/feed/" rel="self" type="application/rss+xml" />
	<link>http://occipital.com/blog/2008/10/31/android-performance-2-loop-speed-and-the-dalvik-vm/</link>
	<description>It starts with pixels</description>
	<lastBuildDate>Tue, 09 Mar 2010 10:09:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anthony</title>
		<link>http://occipital.com/blog/2008/10/31/android-performance-2-loop-speed-and-the-dalvik-vm/comment-page-1/#comment-281</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Tue, 05 Jan 2010 22:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://occipital.com/blog/?p=71#comment-281</guid>
		<description>Sorry...ignore that last post.  Ran the wrong routine and posted the wrong time. 
 
Here&#039;s the routine that I now ran: 
 
        for(int i = 0; i &lt; 50; i++) { 
        int[] image = new int[8*320*480]; 
        for(int j = 0; j &lt; (8*320*480); j++) { 
        image[j] = j; 
        } 
        } 
 
This took 34 seconds on my HTC Hero (v1.5 Cupcake).   </description>
		<content:encoded><![CDATA[<p>Sorry&#8230;ignore that last post.  Ran the wrong routine and posted the wrong time. </p>
<p>Here&#039;s the routine that I now ran: </p>
<p>        for(int i = 0; i &lt; 50; i++) {<br />
        int[] image = new int[8*320*480];<br />
        for(int j = 0; j &lt; (8*320*480); j++) {<br />
        image[j] = j;<br />
        }<br />
        } </p>
<p>This took 34 seconds on my HTC Hero (v1.5 Cupcake).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://occipital.com/blog/2008/10/31/android-performance-2-loop-speed-and-the-dalvik-vm/comment-page-1/#comment-280</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Tue, 05 Jan 2010 22:02:45 +0000</pubDate>
		<guid isPermaLink="false">http://occipital.com/blog/?p=71#comment-280</guid>
		<description>FYI...I just ran this on my HTC Hero: 
 
       for(int i = 0; i &lt; (8*320*480); i++) { 
        int[] image = new int[8*320*400]; 
        for(int j = 0; j &lt; (8*320*480); j++) { 
        image[j] = j; 
        } 
        } 
 
Total time: 10.5 seconds 
 
That would still be 5x the old iPhone.  I wonder how this compares to the 3G or 3GS? 
 
Anthony </description>
		<content:encoded><![CDATA[<p>FYI&#8230;I just ran this on my HTC Hero: </p>
<p>       for(int i = 0; i &lt; (8*320*480); i++) {<br />
        int[] image = new int[8*320*400];<br />
        for(int j = 0; j &lt; (8*320*480); j++) {<br />
        image[j] = j;<br />
        }<br />
        } </p>
<p>Total time: 10.5 seconds </p>
<p>That would still be 5x the old iPhone.  I wonder how this compares to the 3G or 3GS? </p>
<p>Anthony</p>
]]></content:encoded>
	</item>
</channel>
</rss>
