<?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 problem of using IPP in C# in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915300#M15003</link>
    <description>&lt;SPAN&gt;
&lt;P align="left"&gt;&lt;FONT face="Arial" size="2"&gt;a little question when using IPP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;just migrate these code to C#:&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt; void mulpack( void ) {&lt;BR /&gt; Ipp32f x&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;, X&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;, h&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;={1.0f/3,1.0f/3,1.0f/3,0,0,0,0,0}, H&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;;&lt;BR /&gt; IppStatus st;&lt;BR /&gt; IppsFFTSpec_R_32f* spec;&lt;BR /&gt; st = ippsFFTInitAlloc_R_32f(&amp;amp;spec, 3, IPP_FFT_DIV_INV_BY_N,&lt;BR /&gt; ippAlgHintNone);&lt;BR /&gt; ippsSet_32f( 3, x, 8 );&lt;BR /&gt; x[3] = 5;&lt;BR /&gt; st = ippsFFTFwd_RToPack_32f( x, X, spec, NULL );&lt;BR /&gt; st = ippsFFTFwd_RToPack_32f( h, H, spec, NULL );&lt;BR /&gt; ippsMulPack_32f_I( H, X, 8 );&lt;BR /&gt; st = ippsFFTInv_PackToR_32f( X, x, spec, NULL );&lt;BR /&gt; printf_32f("filtered =", x, 8, st );&lt;BR /&gt; ippsFFTFree_R_32f( spec );&lt;BR /&gt; }&lt;/P&gt;
&lt;P align="left"&gt;this is if from mannual of intel.&lt;/P&gt;
&lt;P align="left"&gt;the warpper is here:&lt;/P&gt;
&lt;P align="left"&gt;[SuppressUnmanagedCodeSecurityAttribute()]&lt;BR /&gt;[DllImport(ipp.sp.libname)] public static extern&lt;BR /&gt;IppStatus ippsFFTInitAlloc_R_32f ( IppsFFTSpec_R_32f **pFFTSpec, int order, int flag, IppHintAlgorithm hint );&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt;then , it is difficult to transfer IppsFFTSpec_R_32f **pFFTSpec for me.&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt; ipp.IppsFFTSpec_R_32f[] spec = new ipp.IppsFFTSpec_R_32f[length];&lt;BR /&gt; fixed (ipp.IppsFFTSpec_R_32f* pspec = spec)&lt;BR /&gt; {&lt;BR /&gt; //ipp.IppsFFTSpec_R_32f** ppspec = pspec;&lt;BR /&gt;&amp;amp;nbs
p; ipp.IppsFFTSpec_R_32f** ppspec = (ipp.IppsFFTSpec_R_32f**)pspec;&lt;/P&gt;
&lt;P align="left"&gt; st = ipp.sp.ippsFFTInitAlloc_R_32f(ppspec, 3, 0, ipp.IppHintAlgorithm.ippAlgHintNone);&lt;/P&gt;
&lt;P align="left"&gt; //st = ipp.sp.ippsFFTInitAlloc_R_32f(&amp;amp;pspec, 3, 0, ipp.IppHintAlgorithm.ippAlgHintNone);&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;i get an error said "can'tget addr ofread only variable "...&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt;maybe , i use it in a wrong way.anybody kind enough to tell me the correct way??&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P align="left"&gt;thanks...&lt;/P&gt;&lt;/SPAN&gt;</description>
    <pubDate>Thu, 26 Jul 2007 09:04:27 GMT</pubDate>
    <dc:creator>Liang_Wen</dc:creator>
    <dc:date>2007-07-26T09:04:27Z</dc:date>
    <item>
      <title>problem of using IPP in C#</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915300#M15003</link>
      <description>&lt;SPAN&gt;
&lt;P align="left"&gt;&lt;FONT face="Arial" size="2"&gt;a little question when using IPP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;just migrate these code to C#:&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt; void mulpack( void ) {&lt;BR /&gt; Ipp32f x&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;, X&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;, h&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;={1.0f/3,1.0f/3,1.0f/3,0,0,0,0,0}, H&lt;IMG height="19" alt="Music" src="http://forums.microsoft.com/MSDN/emoticons/emotion-29.gif" width="19" /&gt;;&lt;BR /&gt; IppStatus st;&lt;BR /&gt; IppsFFTSpec_R_32f* spec;&lt;BR /&gt; st = ippsFFTInitAlloc_R_32f(&amp;amp;spec, 3, IPP_FFT_DIV_INV_BY_N,&lt;BR /&gt; ippAlgHintNone);&lt;BR /&gt; ippsSet_32f( 3, x, 8 );&lt;BR /&gt; x[3] = 5;&lt;BR /&gt; st = ippsFFTFwd_RToPack_32f( x, X, spec, NULL );&lt;BR /&gt; st = ippsFFTFwd_RToPack_32f( h, H, spec, NULL );&lt;BR /&gt; ippsMulPack_32f_I( H, X, 8 );&lt;BR /&gt; st = ippsFFTInv_PackToR_32f( X, x, spec, NULL );&lt;BR /&gt; printf_32f("filtered =", x, 8, st );&lt;BR /&gt; ippsFFTFree_R_32f( spec );&lt;BR /&gt; }&lt;/P&gt;
&lt;P align="left"&gt;this is if from mannual of intel.&lt;/P&gt;
&lt;P align="left"&gt;the warpper is here:&lt;/P&gt;
&lt;P align="left"&gt;[SuppressUnmanagedCodeSecurityAttribute()]&lt;BR /&gt;[DllImport(ipp.sp.libname)] public static extern&lt;BR /&gt;IppStatus ippsFFTInitAlloc_R_32f ( IppsFFTSpec_R_32f **pFFTSpec, int order, int flag, IppHintAlgorithm hint );&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt;then , it is difficult to transfer IppsFFTSpec_R_32f **pFFTSpec for me.&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt; ipp.IppsFFTSpec_R_32f[] spec = new ipp.IppsFFTSpec_R_32f[length];&lt;BR /&gt; fixed (ipp.IppsFFTSpec_R_32f* pspec = spec)&lt;BR /&gt; {&lt;BR /&gt; //ipp.IppsFFTSpec_R_32f** ppspec = pspec;&lt;BR /&gt;&amp;amp;nbs
p; ipp.IppsFFTSpec_R_32f** ppspec = (ipp.IppsFFTSpec_R_32f**)pspec;&lt;/P&gt;
&lt;P align="left"&gt; st = ipp.sp.ippsFFTInitAlloc_R_32f(ppspec, 3, 0, ipp.IppHintAlgorithm.ippAlgHintNone);&lt;/P&gt;
&lt;P align="left"&gt; //st = ipp.sp.ippsFFTInitAlloc_R_32f(&amp;amp;pspec, 3, 0, ipp.IppHintAlgorithm.ippAlgHintNone);&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;i get an error said "can'tget addr ofread only variable "...&lt;/P&gt;
&lt;P align="left"&gt;&lt;/P&gt;
&lt;P align="left"&gt;maybe , i use it in a wrong way.anybody kind enough to tell me the correct way??&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P align="left"&gt;thanks...&lt;/P&gt;&lt;/SPAN&gt;</description>
      <pubDate>Thu, 26 Jul 2007 09:04:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915300#M15003</guid>
      <dc:creator>Liang_Wen</dc:creator>
      <dc:date>2007-07-26T09:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem of using IPP in C#</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915301#M15004</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;our expert did changes in your code to make it work&lt;/P&gt;&lt;PRE&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;IppsFFTSpec_R_32f spec = &lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;new&lt;/SPAN&gt;&lt;/FONT&gt; IppsFFTSpec_R_32f();&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;IppsFFTSpec_R_32f* pSpec = &amp;amp;spec;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;float&lt;/SPAN&gt;&lt;/FONT&gt;[] h = {&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;1.0f&lt;/SPAN&gt;&lt;/FONT&gt;/&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;3&lt;/SPAN&gt;&lt;/FONT&gt;, &lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;1.0f&lt;/SPAN&gt;&lt;/FONT&gt;/&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;3&lt;/SPAN&gt;&lt;/FONT&gt; ,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;1.0f&lt;/SPAN&gt;&lt;/FONT&gt;/&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;3&lt;/SPAN&gt;&lt;/FONT&gt; ,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt; ,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt; ,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt; ,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt; , &lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;}, &lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;x = {&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;}, X = {&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;}, H = {&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;,&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;0&lt;/SPAN&gt;&lt;/FONT&gt;};&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;IppStatus st;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsFFTInitAlloc_R_32f(&amp;amp;pSpec,&lt;FONT color="navy"&gt;&lt;S pan="" style="COLOR: navy"&gt;3&lt;/S&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;,IPP_FFT_DIV_INV_BY_N,IppHintAlgorithm.ippAlgHintNone);&lt;P&gt;&lt;/P&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;&lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;fixed&lt;/SPAN&gt;&lt;/FONT&gt;( &lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;float&lt;/SPAN&gt;&lt;/FONT&gt;* px = x, pX = X, ph = h, pH = H ) &lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;{&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsSet_32f(&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;3.0f&lt;/SPAN&gt;&lt;/FONT&gt;, px, &lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;8&lt;/SPAN&gt;&lt;/FONT&gt; );&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;x[&lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;3&lt;/SPAN&gt;&lt;/FONT&gt;] = &lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;5.0f&lt;/SPAN&gt;&lt;/FONT&gt;;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsFFTFwd_RToPack_32f(px, pX, pSpec, &lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;null&lt;/SPAN&gt;&lt;/FONT&gt;);&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsFFTFwd_RToPack_32f(ph, pH, pSpec, &lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;null&lt;/SPAN&gt;&lt;/FONT&gt;);&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsMulPack_32f_I(pH, pX, &lt;FONT color="navy"&gt;&lt;SPAN style="COLOR: navy"&gt;8&lt;/SPAN&gt;&lt;/FONT&gt;);&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;st = sp.ippsFFTInv_PackToR_32f(pX, px, pSpec, &lt;FONT color="blue"&gt;&lt;SPAN style="COLOR: blue"&gt;null&lt;/SPAN&gt;&lt;/FONT&gt;);&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;}&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: 'Courier New'"&gt;sp.ippsFFTFree_R_32f(pSpec);&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/PRE&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2007 13:00:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915301#M15004</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-07-26T13:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: problem of using IPP in C# Worked :)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915302#M15005</link>
      <description>Hi Thanks for the code with corrections,&lt;BR /&gt;&lt;BR /&gt;It worked very well.&lt;BR /&gt;&lt;BR /&gt;Thanks Alot&lt;BR /&gt;&lt;A href="http://bodyguard1.wordpress.com"&gt;bodyguard&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Jul 2007 13:27:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/problem-of-using-IPP-in-C/m-p/915302#M15005</guid>
      <dc:creator>bodyguard</dc:creator>
      <dc:date>2007-07-28T13:27:37Z</dc:date>
    </item>
  </channel>
</rss>

