<?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:Widening conversion for vector operations in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1272610#M31179</link>
    <description>&lt;P&gt;The issue is closing. In the case of any issues or updates, you may re-open the current issue or open the one or communicate with me directly via email (Gennady.Fedorov@intel.com).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 11 Apr 2021 03:08:50 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2021-04-11T03:08:50Z</dc:date>
    <item>
      <title>Widening conversion for vector operations</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271040#M31123</link>
      <description>I have an input data of int16 data that I need to convert to float32 in a widening conversion for floating point operations using either MKL or IPP.  Is there a way using either of those libraries to copy the int16 inputs to a float32 array?  I do not have any sample code at the moment to provide as I have not written it yet.  &lt;BR /&gt;&lt;BR /&gt;Generically, the computation will be to convert short[] to float[], then apply an elementwise addition to a scalar, followed by an elementwise multiplication by a scalar.  I know how to do those in-place with IPP.  It’s efficient widening conversion that has me at the moment.  Is there perhaps an even more efficient approach than widening conversion via copy?</description>
      <pubDate>Mon, 05 Apr 2021 23:05:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271040#M31123</guid>
      <dc:creator>RJMNOLA</dc:creator>
      <dc:date>2021-04-05T23:05:37Z</dc:date>
    </item>
    <item>
      <title>Re:Widening conversion for vector operations</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271189#M31130</link>
      <description>&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us, we are working on your issue and will get back to you soon.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Apr 2021 11:14:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271189#M31130</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-06T11:14:10Z</dc:date>
    </item>
    <item>
      <title>Re:Widening conversion for vector operations</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271444#M31140</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;You may try the following API:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;IppStatus ippsConvert_16s32f(const Ipp16s*&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;pSrc&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;, Ipp32f*&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;pDst&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;, int&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;len&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;IppStatus ippsConvert_16u32f(const Ipp16u*&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;pSrc&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;, Ipp32f*&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;pDst&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;, int&amp;nbsp;&lt;/SPAN&gt;&lt;I style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;len&lt;/I&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/ipp-dev-reference/top/volume-1-signal-and-data-processing/essential-functions/conversion-functions/convert.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/ipp-dev-reference/top/volume-1-signal-and-data-processing/essential-functions/conversion-functions/convert.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Apr 2021 03:40:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1271444#M31140</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-04-07T03:40:38Z</dc:date>
    </item>
    <item>
      <title>Re:Widening conversion for vector operations</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1272610#M31179</link>
      <description>&lt;P&gt;The issue is closing. In the case of any issues or updates, you may re-open the current issue or open the one or communicate with me directly via email (Gennady.Fedorov@intel.com).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 11 Apr 2021 03:08:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Widening-conversion-for-vector-operations/m-p/1272610#M31179</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-04-11T03:08:50Z</dc:date>
    </item>
  </channel>
</rss>

