<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.8.0-dev (info@mypapit.net)" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>AccelerEyes Forums</title>
        <description>GPU computing with Jacket for use with MATLAB® &amp;amp; ArrayFire for use with C, C++, Fortran, and Python</description>
        <link>http://forums.accelereyes.com/forums/smartfeed.php?feed_type=RSS2.0&amp;limit=1_DAY&amp;sort_by=standard&amp;feed_style=HTML&amp;</link>
        <lastBuildDate>Thu, 17 May 2012 11:32:24 GMT</lastBuildDate>
        <generator>FeedCreator 1.8.0-dev (info@mypapit.net)</generator>
<atom:link href="http://forums.accelereyes.com/forums/smartfeed.php?feed_type=RSS2.0&amp;limit=1_DAY&amp;sort_by=standard&amp;feed_style=HTML&amp;" rel="self" type="application/rss+xml" />
        <image>
            <url>http://forums.accelereyes.com/forums/styles/prosilver/imageset/site_logo.gif</url>
            <title>AccelerEyes Forums</title>
            <link>http://forums.accelereyes.com/forums/smartfeed.php?feed_type=RSS2.0&amp;limit=1_DAY&amp;sort_by=standard&amp;feed_style=HTML&amp;</link>
            <description>GPU computing with Jacket for use with MATLAB® &amp;amp; ArrayFire for use with C, C++, Fortran, and Python</description>
        </image>
        <language>en-GB</language>
        <webMaster>support@accelereyes.com</webMaster>
        <pubDate>Thu, 17 May 2012 15:32:24 GMT</pubDate>
        <ttl>5</ttl>
        <item>
            <title>Programming &amp; Development with Jacket for use with MATLAB® :: Re: Fatal Matlab Error and ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=7&amp;t=4022&amp;p=11921#p11921</link>
            <description><![CDATA[Hi Mike,<br /><br />Any chance we can have a look at the code ? I am guessing if you do geval(A); gysnc. before you do double(..) it would fail at gsync.<br />double(..) is a blocking operation so it waits until all previous gpu operations (related to A) are done. This may mean something else is broken and is being caught very late when doing double.<br /><br />It would really be helpful if we can have a look at the code  (or the smallest piece of code segment that will show this behavior) to figure this out.]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with Jacket for use with MATLAB®</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=7&amp;t=4022</comments>
            <pubDate>Wed, 16 May 2012 20:33:47 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=7&amp;t=4022&amp;p=11921#p11921</guid>
        </item>
        <item>
            <title>Programming &amp; Development with Jacket for use with MATLAB® :: Re: Fatal Matlab Error and ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=7&amp;t=4022&amp;p=11923#p11923</link>
            <description><![CDATA[It seems that if I cast before the second function call it works fine. Unfortunately, it would be quite a process to release the code. I can say that it is using a lot of random number generation calls and fft calls. Since I have it working with this workaround, I'm not too concerned. <br />Thanks,<br />Mike<br /><br />x = function1(....); % 3000x3000 gdouble complex<br />xCPU = double(x);<br />y = function2(x, ...); % y is 3000x3000x10 gdouble complex]]></description>
            <author>no_email@example.com (mjs454)</author>
            <category>Programming &amp; Development with Jacket for use with MATLAB®</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=7&amp;t=4022</comments>
            <pubDate>Thu, 17 May 2012 02:52:29 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=7&amp;t=4022&amp;p=11923#p11923</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: arrayfire 1. ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4016&amp;p=11918#p11918</link>
            <description><![CDATA[Hi eric,<br /><br />can you provide a sample code that is causing this problem ?]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4016</comments>
            <pubDate>Wed, 16 May 2012 20:05:38 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4016&amp;p=11918#p11918</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: Using ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4014&amp;p=11919#p11919</link>
            <description><![CDATA[Hi xiong,<br /><br />two things.<br /><br />- ArrayFire is zero based. so 1:15 would be 0:14.<br />- To get sequences, you qill have to use seq<br /><br /><br />seq can be used in two ways.<br /><br />1) seq(start, end) will produce start, start+1, start+2, ..., end.<br />example: start(3, 5) == 3, 4, 5. seq(0, 4) == 0, 1, 2, 3, 4.<br />2) seq(elements)  will produce 0, 1, 2, 3, 4, .... end - 1;<br />example seq(10) == 0, 1, 2, 3, 4, 5, ... 9;<br /><br />so in your sampe code it can be one of the following<br />- dopmag(span, span, seq(0, zsamples - 1));<br />- dopmag(span, span, seq(zsamples));]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4014</comments>
            <pubDate>Wed, 16 May 2012 20:10:28 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4014&amp;p=11919#p11919</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: How doe ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4020&amp;p=11920#p11920</link>
            <description><![CDATA[Hi xiong,<br /><br />This is a bug in interp. We are fixing this asap. When fixed, interp should work based on indices provided by hAi and not make any assumptions.]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4020</comments>
            <pubDate>Wed, 16 May 2012 20:21:06 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4020&amp;p=11920#p11920</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: max() ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=3922&amp;p=11922#p11922</link>
            <description><![CDATA[Kenneth,<br /><br />This is a bug and is being fixed.]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=3922</comments>
            <pubDate>Wed, 16 May 2012 20:53:26 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=3922&amp;p=11922#p11922</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: How best to ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11917#p11917</link>
            <description><![CDATA[Hi,<br /><br />The shortcut is failing because the compiler can not figure out the data type of {1, 2, 3, 4, 5};<br /><br />If you specify the data type in the following manner, it should work.<br /><br /><dl class="codebox"><dt>Code: <a href="#" onclick="selectCode(this); return false;">Select all</a></dt><dd><code> af::array myArray(1, 5, (float&#91;&#93;){1, 2, 3, 4, 5});<br />&nbsp; &nbsp; print(myArray);<br /></code></dd></dl><br /><br /><blockquote class="uncited"><div>myArray =  <br />           1.0000        2.0000        3.0000        4.0000        5.0000<br /></div></blockquote>]]></description>
            <author>no_email@example.com (pavanky)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4021</comments>
            <pubDate>Wed, 16 May 2012 19:57:41 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11917#p11917</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: How best to ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11927#p11927</link>
            <description><![CDATA[The code snippet does not compile. I get a <br /><br /><dl class="codebox"><dt>Code: <a href="#" onclick="selectCode(this); return false;">Select all</a></dt><dd><code>Error: type name not allowed</code></dd></dl><br /><br />error.]]></description>
            <author>no_email@example.com (xiongtx)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4021</comments>
            <pubDate>Thu, 17 May 2012 13:38:59 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11927#p11927</guid>
        </item>
        <item>
            <title>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python :: Re: How best to ...</title>
            <link>http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11928#p11928</link>
            <description><![CDATA[Depends on what compiler you're using.  Pretty much all compilers should support this vanilla method.  Both this and what Pavan posted have the same performance.<br /><br /><dl class="codebox"><dt>Code: <a href="#" onclick="selectCode(this); return false;">Select all</a></dt><dd><code>float ha&#91;&#93; = { 1, 2, 3, 4 };<br />array a(2, 2, ha);<br /></code></dd></dl>]]></description>
            <author>no_email@example.com (malcolm)</author>
            <category>Programming &amp; Development with ArrayFire for C, C++, Fortran, and Python</category>
            <comments>http://forums.accelereyes.com/forums/posting.php?mode=reply&amp;f=17&amp;t=4021</comments>
            <pubDate>Thu, 17 May 2012 15:30:10 GMT</pubDate>
            <guid isPermaLink="false">http://forums.accelereyes.com/forums/viewtopic.php?f=17&amp;t=4021&amp;p=11928#p11928</guid>
        </item>
    </channel>
</rss>

