<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multiply and accumulate support in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932328#M16850</link>
    <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;By the way, did you see ippsDotProd and ippsAddProductC functions? Their combination can provide you functionality you are looking for&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2006 16:49:28 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2006-05-02T16:49:28Z</dc:date>
    <item>
      <title>Multiply and accumulate support</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932326#M16848</link>
      <description>Hey, I was wondering what support the IPP had for multiply and accumulate operations. I know that WirelessMMX/MMX have the instructions WMADD and PMADDWD for taking 4 16-bit numbers multiplying them and adding them into an accumulator. But, I don't see any corresponding functions in the IPP... I end up an ippsMul and an ippsSum which seems kind of wasteful since there is hardware support for doing the multiply and accumulate.&lt;BR /&gt;&lt;BR /&gt;Is there support for this that I'm just not seeing or is ippsMul and ippsSum the best that I can hope for? I'm assuming that the ippsMul and ippsSum functions use MMX instructions when they can so I'm not sure why an accumulator function isn't available. Im using both the desktop and PCA version of the IPP so my options are limited to functions which are supported in both (but, both should have MAC support).&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.intel.com/cd/ids/developer/asmo-na/eng/dc/pca/knowledgebase/168863.htm" target="_blank"&gt;http://www.intel.com/cd/ids/developer/asmo-na/eng/dc/pca/knowledgebase/168863.htm&lt;/A&gt;&lt;BR /&gt;Has some hints on you could do it if you wanted to code it up yourself but I would prefer to stick with the IPP functions so I dont have to deal with having multiple versions of the same code that I have to test myself.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;-Jonathan</description>
      <pubDate>Tue, 25 Apr 2006 05:51:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932326#M16848</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2006-04-25T05:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply and accumulate support</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932327#M16849</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello Jonathan,&lt;/P&gt;
&lt;P&gt;IPP use multply-add instructions internally when it can provide additional optimization.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2006 04:13:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932327#M16849</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-05-01T04:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply and accumulate support</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932328#M16850</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;By the way, did you see ippsDotProd and ippsAddProductC functions? Their combination can provide you functionality you are looking for&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2006 16:49:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932328#M16850</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-05-02T16:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply and accumulate support</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932329#M16851</link>
      <description>Hey Vladimir,&lt;BR /&gt;&lt;BR /&gt;I found the ippsDotProd functions (didn't see the ippsAddProductC functions though).&lt;BR /&gt;&lt;BR /&gt;I'm limited to using functions on both the PCA/ia32 version of the IPP, and unfortunately the PCA version only has ippsDotProd_16s available. The problem with this function is that it has an Ipp16s accumulator which is too small for my application.&lt;BR /&gt;&lt;BR /&gt;It looks like the only way to do a multiply-accumulate/dot product would be to write a for loop with the appropriate wirelessMMX/MMX intrinsics (which should give me at 64-bit accumulator). This isnt too hard to implement; but, I was hoping there was some IPP function that did this I was just overlooking. Also it might turn out that an ippsMul and ippsSum are fast enough.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;-Jonathan</description>
      <pubDate>Wed, 03 May 2006 02:41:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932329#M16851</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2006-05-03T02:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply and accumulate support</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932330#M16852</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;IPP for PCA has only subset functionality in comparison with IPP for IA, so some functions can be missed.&lt;/P&gt;
&lt;P&gt;Vladimir&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2006 03:47:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Multiply-and-accumulate-support/m-p/932330#M16852</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-05-03T03:47:50Z</dc:date>
    </item>
  </channel>
</rss>

