<?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: FIRLMSMR in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991231#M22349</link>
    <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;every function in IPP is definetely completed. The only thing can be some bug or wrong usage. Could you please specify what version of IPP do you use and piece of code how do you call IPP function.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
    <pubDate>Fri, 13 May 2005 22:44:01 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2005-05-13T22:44:01Z</dc:date>
    <item>
      <title>FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991230#M22348</link>
      <description>&lt;DIV&gt;I have used the FIR and FIRLMS functions, however it appears that when I use FIRLMSMR functions I cannot get an output other than zero from the funtion. Have these algorithms been completed or are they not yet finished?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I use the InitAlloc function to load in filter taps and a delay line, and I set the appropriate paramters, then I call then main FIRLMSMR function to compute an output and it always appears to be zero.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Anyone else have luck with these functions?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Jeremy&lt;/DIV&gt;</description>
      <pubDate>Fri, 06 May 2005 09:44:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991230#M22348</guid>
      <dc:creator>jeremyfleming</dc:creator>
      <dc:date>2005-05-06T09:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991231#M22349</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;every function in IPP is definetely completed. The only thing can be some bug or wrong usage. Could you please specify what version of IPP do you use and piece of code how do you call IPP function.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Fri, 13 May 2005 22:44:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991231#M22349</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-05-13T22:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991232#M22350</link>
      <description>&lt;DIV&gt;By the way, there is sample from expert&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: black 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: black 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: black 1px solid"&gt;&lt;SPAN class="text_smallest"&gt;Code:&lt;/SPAN&gt;&lt;PRE&gt;/*
   Deconvolution test
*/
TestResult ta_lms_deconv_32f( void* ) {

   const int dataLen = 1000, tapsLen = 33, watch = 900;
   int errnum = 0;

   Ipp32f *x   = tsMalloc&lt;IPP32F&gt;( dataLen );
   Ipp32f *xx  = tsMalloc&lt;IPP32F&gt;( dataLen ), *pxx;
   Ipp32f *ref = tsMalloc&lt;IPP32F&gt;( dataLen ), *pref;

   Ipp32f dlyLine[tapsLen*2];
   Ipp32f tapsInv[tapsLen];

   tsDefault&lt;FLOAT&gt; mu( 0.03f, 0.0001f, 0.7f, " Adaptation step", "mu" );  g_istrm &amp;gt;&amp;gt; mu;

   tsRandU zero( 0,0 );

   for( int firlen=3; firlen&lt;TAPSLEN&gt;( x, ref, dataLen, 16, (Ipp32f)1, 1.5f );
      genTaps32f( tapsInv, firlen, 1 );

      int indx, n, minum = tsmin( 7, dataLen );
      g_ostrm &amp;lt;&amp;lt; "
 #taps " &amp;lt;&amp;lt; firlen &amp;lt;&amp;lt; ". some original source and found values : 
";
      for( n=watch; n&lt;WATCH&gt;; g_ostrm &amp;lt;&amp;lt; "
";

      indx = 0;
      pref = ref;
      zero.fill( dlyLine, firlen*2 );
      for( n=0; n&lt;DATALEN&gt;, pref++, tapsInv, firlen, dlyLine, &amp;amp;indx );

      IppsFIRLMSState_32f* ctx;
      ippsFIRLMSInitAlloc_32f( &amp;amp;ctx, 0, firlen, 0, 0 );
      ippsFIRLMS_32f( ref, x, xx, dataLen, mu/firlen, ctx );
      ippsFIRLMSGetTaps_32f( ctx, tapsInv );
      ippsFIRLMSFree_32f( ctx );

      for( n=0; n&lt;FIRLEN&gt;, tapsInv[firlen-n-1] );
      indx = 0;
      pxx = xx;
      zero.fill( dlyLine, firlen*2 );
      for( n=0; n&lt;DATALEN&gt;, pxx++, tapsInv, firlen, dlyLine, &amp;amp;indx );

      indx = firlen * 2;
      double stdev = tsStdDev( x+indx, xx+indx, dataLen-indx );

      for( n=watch; n&lt;WATCH&gt;; g_ostrm &amp;lt;&amp;lt; "
";
      g_ostrm &amp;lt;&amp;lt; " std dev of desired and output signal for "
         &amp;lt;&amp;lt; dataLen-indx &amp;lt;&amp;lt; " values " &amp;lt;&amp;lt; stdev &amp;lt;&amp;lt; "
";

      if( !ipp_finite( stdev ) || stdev &amp;gt; 0.3f ) errnum++;
   }
   tsFree( ref );
   tsFree( xx );
   tsFree( x );
   return errnum ? resFAIL : resOK;
}
&lt;/WATCH&gt;&lt;/DATALEN&gt;&lt;/FIRLEN&gt;&lt;/DATALEN&gt;&lt;/WATCH&gt;&lt;/TAPSLEN&gt;&lt;/FLOAT&gt;&lt;/IPP32F&gt;&lt;/IPP32F&gt;&lt;/IPP32F&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;BR /&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Fri, 13 May 2005 23:54:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991232#M22350</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-05-13T23:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991233#M22351</link>
      <description>Do you have an example for the FIRLMSMR functions?&lt;BR /&gt;&lt;BR /&gt;Jeremy</description>
      <pubDate>Sat, 14 May 2005 10:49:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991233#M22351</guid>
      <dc:creator>jeremyfleming</dc:creator>
      <dc:date>2005-05-14T10:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991234#M22352</link>
      <description>&lt;DIV&gt;Jeremy, actual goal of LMS is to reduce to zero the difference between reference and out signals that would indicate that you found/fit your filter. So in some sense zero is ok. If you are talking about your output signal which is zero then you have to check the convergence step value (mu), it is very critical in the adaptation process.&lt;/DIV&gt;</description>
      <pubDate>Sat, 14 May 2005 11:44:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991234#M22352</guid>
      <dc:creator>borix</dc:creator>
      <dc:date>2005-05-14T11:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: FIRLMSMR</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991235#M22353</link>
      <description>&lt;DIV&gt;the multi rate example looks like the single rate one. only init should be with "MR", again, sampling factor as well as mu affect convergency process much&lt;/DIV&gt;</description>
      <pubDate>Sat, 14 May 2005 11:51:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/FIRLMSMR/m-p/991235#M22353</guid>
      <dc:creator>borix</dc:creator>
      <dc:date>2005-05-14T11:51:31Z</dc:date>
    </item>
  </channel>
</rss>

