<?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: FP10: Vector vs Array</title>
	<atom:link href="http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/feed/" rel="self" type="application/rss+xml" />
	<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/</link>
	<description>Flash, Flex, AIR, ActionScript and Design</description>
	<pubDate>Tue, 06 Jan 2009 04:14:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hannes Moser</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20828</link>
		<dc:creator>Hannes Moser</dc:creator>
		<pubDate>Wed, 18 Jun 2008 20:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20828</guid>
		<description>@Derek: Have a lookt at the test-file, there are several tests with primitives (read, write, simple maths), sometimes advantages, but little.</description>
		<content:encoded><![CDATA[<p>@Derek: Have a lookt at the test-file, there are several tests with primitives (read, write, simple maths), sometimes advantages, but little.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Wischusen</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20826</link>
		<dc:creator>Derek Wischusen</dc:creator>
		<pubDate>Wed, 18 Jun 2008 18:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20826</guid>
		<description>Have you tried the test using primitives?

Depending on what they are doing behind the scenes to create the the typed array, it could be that the only real performance benefit will occur when you use primitives.  

Derek</description>
		<content:encoded><![CDATA[<p>Have you tried the test using primitives?</p>
<p>Depending on what they are doing behind the scenes to create the the typed array, it could be that the only real performance benefit will occur when you use primitives.  </p>
<p>Derek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannes Moser</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20824</link>
		<dc:creator>Hannes Moser</dc:creator>
		<pubDate>Wed, 18 Jun 2008 17:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20824</guid>
		<description>@jd: To be honest, i have no idea what is the right test for the "Vector". In my opinion it's a "typed" array, or like a Generic, and so my conclusio was to test if an object-access to a Vector is faster than it is with an Array.

Array -&gt; non-typed, has to be checked at runtime
Vector -&gt; typed, faster, no check for type

I am happy enough, that i have a field which is typed now, but there was this little abstract about performance and Vector in the docs ;)</description>
		<content:encoded><![CDATA[<p>@jd: To be honest, i have no idea what is the right test for the &#8220;Vector&#8221;. In my opinion it&#8217;s a &#8220;typed&#8221; array, or like a Generic, and so my conclusio was to test if an object-access to a Vector is faster than it is with an Array.</p>
<p>Array -> non-typed, has to be checked at runtime<br />
Vector -> typed, faster, no check for type</p>
<p>I am happy enough, that i have a field which is typed now, but there was this little abstract about performance and Vector in the docs <img src='http://impossiblearts.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Dowdell</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20822</link>
		<dc:creator>John Dowdell</dc:creator>
		<pubDate>Wed, 18 Jun 2008 16:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20822</guid>
		<description>I'm not sure that an access call or a screen write would be the thing to benchmark here. I don't have non-public info on the vector type myself, but from reading it assumed it enabled a more parallel-like processing of data. But the references to it in the docs were oblique enough that I suspect we'll know much more by time of final release.

Glad it piqued your interest, though. ;-)

cu, jd/adobe</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure that an access call or a screen write would be the thing to benchmark here. I don&#8217;t have non-public info on the vector type myself, but from reading it assumed it enabled a more parallel-like processing of data. But the references to it in the docs were oblique enough that I suspect we&#8217;ll know much more by time of final release.</p>
<p>Glad it piqued your interest, though. <img src='http://impossiblearts.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>cu, jd/adobe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hannes Moser</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20820</link>
		<dc:creator>Hannes Moser</dc:creator>
		<pubDate>Wed, 18 Jun 2008 15:40:38 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20820</guid>
		<description>I simply followed the instructions from the Adobe Flex SDK Wiki to compile.

http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10+Beta+with+Flex+SDK+3.0.x

The SWF was opened in Browser (FF 3). Are there any compiler-tags to produce release/environment swf for Flex?
I have used a nightly build of the SDK from this week and compile it with "mxlmc VectorSpeedFP10Test.as"</description>
		<content:encoded><![CDATA[<p>I simply followed the instructions from the Adobe Flex SDK Wiki to compile.</p>
<p><a href="http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10+Beta+with+Flex+SDK+3.0.x" rel="nofollow">http://opensource.adobe.com/wiki/display/flexsdk/Targeting+Flash+Player+10+Beta+with+Flex+SDK+3.0.x</a></p>
<p>The SWF was opened in Browser (FF 3). Are there any compiler-tags to produce release/environment swf for Flex?<br />
I have used a nightly build of the SDK from this week and compile it with &#8220;mxlmc VectorSpeedFP10Test.as&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://impossiblearts.com/blog/2008/06/18/fp10-vector-vs-array/comment-page-1/#comment-20819</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Wed, 18 Jun 2008 15:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://impossiblearts.com/blog/?p=379#comment-20819</guid>
		<description>Are these results from work environment or release SWFs?</description>
		<content:encoded><![CDATA[<p>Are these results from work environment or release SWFs?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
