<?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: Google&#8217;s &#8220;go&#8221; simple &amp; stupid benchmark (1st round: I/O)</title>
	<atom:link href="http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/</link>
	<description>porque a veces uno se aburre...</description>
	<lastBuildDate>Thu, 03 Jun 2010 17:01:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Processor Benchmark</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-763</link>
		<dc:creator>Processor Benchmark</dc:creator>
		<pubDate>Fri, 05 Mar 2010 17:18:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-763</guid>
		<description>Sweet.... This is what I&#039;m looking for</description>
		<content:encoded><![CDATA[<p>Sweet&#8230;. This is what I&#8217;m looking for</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trantaloid</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-490</link>
		<dc:creator>trantaloid</dc:creator>
		<pubDate>Tue, 15 Dec 2009 09:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-490</guid>
		<description>Joe Gester, cant you fucking read? which part of &quot;1st round: I/O&quot; didnt you understand?

nice test btw</description>
		<content:encoded><![CDATA[<p>Joe Gester, cant you fucking read? which part of &#8220;1st round: I/O&#8221; didnt you understand?</p>
<p>nice test btw</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Gester</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-453</link>
		<dc:creator>Joe Gester</dc:creator>
		<pubDate>Thu, 12 Nov 2009 13:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-453</guid>
		<description>You aren&#039;t benchmarking real go code here.  You&#039;re benchmarking the terminal IO code and terminal system.  Systems programming doesn&#039;t do much terminal IO.</description>
		<content:encoded><![CDATA[<p>You aren&#8217;t benchmarking real go code here.  You&#8217;re benchmarking the terminal IO code and terminal system.  Systems programming doesn&#8217;t do much terminal IO.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stenyak.com &#187; Blog Archive &#187; Google&#8217;s &#8220;go&#8221; simple &#38; stupid benchmark (2nd round: memspeed)</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-450</link>
		<dc:creator>stenyak.com &#187; Blog Archive &#187; Google&#8217;s &#8220;go&#8221; simple &#38; stupid benchmark (2nd round: memspeed)</dc:creator>
		<pubDate>Thu, 12 Nov 2009 08:31:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-450</guid>
		<description>[...] Thanks to Juanval for the suggestion. [...]</description>
		<content:encoded><![CDATA[<p>[...] Thanks to Juanval for the suggestion. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saghul</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-448</link>
		<dc:creator>saghul</dc:creator>
		<pubDate>Wed, 11 Nov 2009 20:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-448</guid>
		<description>Nice benchmark! BTW I don&#039;t absolutely like Go&#039;s syntax, those braces, ... and we&#039;ve got Python, Ruby and lots of interesnting languages. Why would we want another?</description>
		<content:encoded><![CDATA[<p>Nice benchmark! BTW I don&#8217;t absolutely like Go&#8217;s syntax, those braces, &#8230; and we&#8217;ve got Python, Ruby and lots of interesnting languages. Why would we want another?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanval</title>
		<link>http://www.stenyak.com/archives/697/googles-go-simple-stupid-benchmark/comment-page-1/#comment-447</link>
		<dc:creator>juanval</dc:creator>
		<pubDate>Wed, 11 Nov 2009 18:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.stenyak.com/?p=697#comment-447</guid>
		<description>warf! 7 seconds?? Holy crap! 
But maybe testing for I/O is not the best benchmark

Could you try something like more CPU/memory intensive like this and see how much it takes in go? In C++, in my computer it takes about 13 seconds

int main()
{
    const int BUFSIZE = 1500;
    int in1[BUFSIZE];
    int in2[BUFSIZE];
    int out[BUFSIZE];

    for(int i=0;i&lt;BUFSIZE;++i)
        for(int j=0;j&lt;BUFSIZE;++j)
            for(int k=0;k&lt;BUFSIZE;++k)
                out[k]+=in1[i]*in2[j];

    return 0;
}</description>
		<content:encoded><![CDATA[<p>warf! 7 seconds?? Holy crap!<br />
But maybe testing for I/O is not the best benchmark</p>
<p>Could you try something like more CPU/memory intensive like this and see how much it takes in go? In C++, in my computer it takes about 13 seconds</p>
<p>int main()<br />
{<br />
    const int BUFSIZE = 1500;<br />
    int in1[BUFSIZE];<br />
    int in2[BUFSIZE];<br />
    int out[BUFSIZE];</p>
<p>    for(int i=0;i&lt;BUFSIZE;++i)<br />
        for(int j=0;j&lt;BUFSIZE;++j)<br />
            for(int k=0;k&lt;BUFSIZE;++k)<br />
                out[k]+=in1[i]*in2[j];</p>
<p>    return 0;<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
