<?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 Quote:mecej4 wrote: in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069059#M22130</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;mecej4 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;By the way, note that "Rotate" is not an apt word for what you want to do. "Reverse", "Reflect" or the more flippant "Flip" would be more appropriate.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;yes, you are right.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Sep 2016 10:21:40 GMT</pubDate>
    <dc:creator>caden_g_</dc:creator>
    <dc:date>2016-09-19T10:21:40Z</dc:date>
    <item>
      <title>How to rotate array in mkl</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069052#M22123</link>
      <description>&lt;P&gt;int arrA[]={1,2,3,..........100};&lt;/P&gt;

&lt;P&gt;I want to get arrB={100,.......3,2,1};&lt;/P&gt;

&lt;P&gt;What's the fastest fun?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2016 05:48:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069052#M22123</guid>
      <dc:creator>caden_g_</dc:creator>
      <dc:date>2016-09-08T05:48:25Z</dc:date>
    </item>
    <item>
      <title>If I want to get arrA={100,..</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069053#M22124</link>
      <description>&lt;P&gt;If I want to get arrA={100,.......3,2,1},too;&lt;/P&gt;

&lt;P&gt;What's the fastest fun?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2016 05:52:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069053#M22124</guid>
      <dc:creator>caden_g_</dc:creator>
      <dc:date>2016-09-08T05:52:55Z</dc:date>
    </item>
    <item>
      <title>MKL doesn't have such</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069054#M22125</link>
      <description>&lt;P&gt;MKL doesn't have such functions, but you may have a look at the existing IPP functionality ( ippsFlip_*,* or&amp;nbsp;&lt;SPAN style="color: rgb(102, 102, 102); font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: 13px; line-height: 18.2px;"&gt;ippsSortAscend/Descend ).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;A href="https://software.intel.com/en-us/node/502149" target="_blank"&gt;https://software.intel.com/en-us/node/502149&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2016 08:28:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069054#M22125</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2016-09-09T08:28:36Z</dc:date>
    </item>
    <item>
      <title>C++ reverse_copy() is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069055#M22126</link>
      <description>&lt;P&gt;C++ reverse_copy() is optimized for the designated architecture by Intel C++ and g++.&amp;nbsp; A plain loop would work as well.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2016 11:10:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069055#M22126</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2016-09-09T11:10:54Z</dc:date>
    </item>
    <item>
      <title>By the way, note that "rotate</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069056#M22127</link>
      <description>&lt;P&gt;By the way, note that "Rotate" is not an apt word for what you want to do. "Reverse", "Reflect" or the more flippant "Flip" would be more appropriate.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2016 11:39:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069056#M22127</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-09-09T11:39:00Z</dc:date>
    </item>
    <item>
      <title>Quote:Gennady Fedorov (Intel)</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069057#M22128</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Gennady Fedorov (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;MKL doesn't have such functions, but you may have a look at the existing IPP functionality ( ippsFlip_*,* or&amp;nbsp;ippsSortAscend/Descend ).&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/node/502149"&gt;https://software.intel.com/en-us/node/502149&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;ok,thank you&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2016 10:11:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069057#M22128</guid>
      <dc:creator>caden_g_</dc:creator>
      <dc:date>2016-09-19T10:11:14Z</dc:date>
    </item>
    <item>
      <title>Quote:Tim P. wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069058#M22129</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Tim P. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;C++ reverse_copy() is optimized for the designated architecture by Intel C++ and g++.&amp;nbsp; A plain loop would work as well.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;ok thank you&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2016 10:20:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069058#M22129</guid>
      <dc:creator>caden_g_</dc:creator>
      <dc:date>2016-09-19T10:20:42Z</dc:date>
    </item>
    <item>
      <title>Quote:mecej4 wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069059#M22130</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;mecej4 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;By the way, note that "Rotate" is not an apt word for what you want to do. "Reverse", "Reflect" or the more flippant "Flip" would be more appropriate.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;yes, you are right.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2016 10:21:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-rotate-array-in-mkl/m-p/1069059#M22130</guid>
      <dc:creator>caden_g_</dc:creator>
      <dc:date>2016-09-19T10:21:40Z</dc:date>
    </item>
  </channel>
</rss>

