<?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 Segmentation Fault from ippsFIRMRInitAlloc_32fc in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786224#M2039</link>
    <description>Kristin,&lt;DIV&gt;please check the problem with the latest versin of IPP 7.0 update 5 which is now available and let us know the results.&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
    <pubDate>Wed, 07 Sep 2011 05:32:01 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2011-09-07T05:32:01Z</dc:date>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786220#M2035</link>
      <description>When using the ippsFIRMRInitAlloc_32fc function I have found that for large interpolation, decimation and filter length values the function results in a segmentation fault. It seems to me that if there are size limitations, the function should fail more gracefully. I'm wondering if anybody else has encountered this problem or if, perhaps, I'm calling the function wrong or failing to perform certain necessary checks.&lt;BR /&gt;&lt;BR /&gt;The following code snippit reliably fails every time I run it:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;//*****************************************************************&lt;BR /&gt;#include &lt;IOSTREAM&gt;&lt;BR /&gt;#include &lt;CSTDLIB&gt;&lt;BR /&gt;#include &lt;IPPS.H&gt;&lt;BR /&gt;&lt;BR /&gt;using namespace std;&lt;BR /&gt;&lt;BR /&gt;int main() {&lt;BR /&gt;&lt;BR /&gt; // It will also fail for other values of taps_len and for other&lt;BR /&gt; // interpolation/decimation values.&lt;BR /&gt;&lt;BR /&gt; int L = 24009;&lt;BR /&gt; int M = 22795;&lt;BR /&gt; &lt;BR /&gt; int taps_len = 435123;&lt;BR /&gt;&lt;BR /&gt; int upPhase = 0;&lt;BR /&gt; int downPhase = 0;&lt;BR /&gt;&lt;BR /&gt; Ipp32fc* pTaps = new Ipp32fc[taps_len];&lt;BR /&gt; &lt;BR /&gt; Ipp32fc* pDlyLine = NULL;&lt;BR /&gt; &lt;BR /&gt; IppStatus status = ippStsNoErr;&lt;BR /&gt; &lt;BR /&gt; IppsFIRState_32fc* pState;&lt;BR /&gt; &lt;BR /&gt; status = ippsFIRMRInitAlloc_32fc(&amp;amp;pState, pTaps, taps_len, L, upPhase, M, downPhase, pDlyLine);&lt;BR /&gt;&lt;BR /&gt; if(status != ippStsNoErr) cout &amp;lt;&amp;lt; "IPP STATUS ERROR!\\n" &amp;lt;&amp;lt; flush;&lt;BR /&gt;&lt;BR /&gt; delete[] pTaps;&lt;BR /&gt; &lt;BR /&gt;}&lt;BR /&gt;//*************************************************************************&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any comments or suggestions are much appreciated.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;-Kristin&lt;/IPPS.H&gt;&lt;/CSTDLIB&gt;&lt;/IOSTREAM&gt;</description>
      <pubDate>Tue, 08 Mar 2011 15:46:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786220#M2035</guid>
      <dc:creator>kristinmj</dc:creator>
      <dc:date>2011-03-08T15:46:15Z</dc:date>
    </item>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786221#M2036</link>
      <description>Kristin,&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;there are no size limitations with this function.&lt;/SPAN&gt;I checked your code with version 6.1 u5, win32.&lt;/DIV&gt;&lt;DIV&gt;ippsFIRMRInitAlloc_32fc returns ippStsNoErr.&lt;/DIV&gt;&lt;DIV&gt;Can you give us more details (OS, architecture, IPP version) for reproducning the problem?&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Mar 2011 18:11:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786221#M2036</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-03-08T18:11:11Z</dc:date>
    </item>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786222#M2037</link>
      <description>Gennady,&lt;BR /&gt;&lt;BR /&gt;Thank you for your reply. We are running on Red Hat Linux&lt;BR /&gt;&lt;BR /&gt;Some specifics:&lt;BR /&gt;&lt;BR /&gt;The problem occurs for:&lt;BR /&gt;
Intel Compiler Suite 12.0.2&lt;BR /&gt;
IPP 7.0&lt;BR /&gt;
Kernel: 2.6.18-128.el5PAE&lt;BR /&gt;&lt;BR /&gt;We are able to run the code successfully for:&lt;BR /&gt;Intel Compiler Suite 11.1.073&lt;BR /&gt;IPP 6.1.6.063 (l_ipp_ia32_p_6.1.6.063)&lt;BR /&gt;Kernel: 2.6.18-1.2801.mastodonPAE&lt;BR /&gt;&lt;BR /&gt;-Kristin</description>
      <pubDate>Tue, 08 Mar 2011 19:22:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786222#M2037</guid>
      <dc:creator>kristinmj</dc:creator>
      <dc:date>2011-03-08T19:22:52Z</dc:date>
    </item>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786223#M2038</link>
      <description>&lt;P&gt;Kristin,&lt;/P&gt;&lt;P&gt;Thanks for the update. I reproduced the
segmentation.This issue has been submitted to our internal development
tracking database for further investigation, we will inform you once a new
update becomes available.Here is a bug
tracking number for your reference: 200207720.&lt;/P&gt;&lt;P&gt;I will back to you as soon as any update from the owner of the code.&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2011 11:07:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786223#M2038</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-03-10T11:07:55Z</dc:date>
    </item>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786224#M2039</link>
      <description>Kristin,&lt;DIV&gt;please check the problem with the latest versin of IPP 7.0 update 5 which is now available and let us know the results.&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Wed, 07 Sep 2011 05:32:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786224#M2039</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-09-07T05:32:01Z</dc:date>
    </item>
    <item>
      <title>Segmentation Fault from ippsFIRMRInitAlloc_32fc</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786225#M2040</link>
      <description>Gennady,&lt;BR /&gt;I installed the updates, ran my test code and the problem is corrected. &lt;BR /&gt;Thank you for your help.&lt;BR /&gt;-Kristin</description>
      <pubDate>Wed, 07 Sep 2011 18:15:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Segmentation-Fault-from-ippsFIRMRInitAlloc-32fc/m-p/786225#M2040</guid>
      <dc:creator>kristinmj</dc:creator>
      <dc:date>2011-09-07T18:15:52Z</dc:date>
    </item>
  </channel>
</rss>

