<?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 printf_32f error in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815128#M4228</link>
    <description>Yep, all ok here. I made a realization of printf_32f and works fine. It's the proof that I was in panic :) (29 days left) :P&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you again :)&lt;/DIV&gt;</description>
    <pubDate>Thu, 20 May 2010 21:35:34 GMT</pubDate>
    <dc:creator>Knoght</dc:creator>
    <dc:date>2010-05-20T21:35:34Z</dc:date>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815124#M4224</link>
      <description>&lt;P&gt;I'm trying to use IPP (eval for 30 days).&lt;/P&gt;&lt;P&gt;I used this example for FFT:&lt;/P&gt;&lt;P&gt; Ipp32f x[8], X[10];&lt;BR /&gt; int n;&lt;BR /&gt;&lt;BR /&gt; IppStatus status;&lt;BR /&gt; IppsFFTSpec_R_32f* spec;&lt;BR /&gt;&lt;BR /&gt; status = ippsFFTInitAlloc_R_32f (&amp;amp;spec, 3, IPP_FFT_DIV_INV_BY_N, ippAlgHintNone);&lt;BR /&gt; for (n=0; n&amp;lt;8; ++n) x&lt;N&gt; = (float)cos(IPP_2PI *n *16/64);&lt;BR /&gt;&lt;BR /&gt; status = ippsFFTFwd_RToCCS_32f (x, X, spec, NULL);&lt;BR /&gt; ippsMagnitude_32fc ((Ipp32fc*)X, x, 4);&lt;BR /&gt;  &lt;BR /&gt; ippsFFTFree_R_32f (spec);&lt;BR /&gt;&lt;BR /&gt; printf_32f("fft magn=", x, 4, status);&lt;BR /&gt; &lt;BR /&gt; return status;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;All is ok if I comment "printf_32f(...)". I haven't used this function since now, but i can't find anything about on the net. I'm using an i7-720QM so I'm using "IPP for Intel 64 Architecture", I've linked all possible .lib but "printf_32f(...) is a "unrecognised symbol".&lt;/P&gt;&lt;P&gt;What's my mistake?&lt;/P&gt;&lt;P&gt;Thanks and sorry for my bad english :)&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2010 14:56:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815124#M4224</guid>
      <dc:creator>Knoght</dc:creator>
      <dc:date>2010-05-20T14:56:45Z</dc:date>
    </item>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815125#M4225</link>
      <description>It seems you copied that piece of code from documentation? Obviously printf_32f is some wrapper on top of usual C run time printf functions which output to console floating point values. The realization of that should be somewhere in documentation from where you copied the code&lt;BR /&gt;&lt;BR /&gt;You also can substitute that call with your realization which may output to console array of FP values.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Thu, 20 May 2010 20:47:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815125#M4225</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2010-05-20T20:47:00Z</dc:date>
    </item>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815126#M4226</link>
      <description>You are right, I've copied the code from documentation. I suppose printf_32f() was on library, now I'm looking for it in documentation. Thank to give me an indication, for me it's very important because I'm alone here :P&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;If I can't find, I'll tell you. Can I?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you Vladimir.&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 May 2010 21:05:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815126#M4226</guid>
      <dc:creator>Knoght</dc:creator>
      <dc:date>2010-05-20T21:05:03Z</dc:date>
    </item>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815127#M4227</link>
      <description>Sure! That's why we maintain that forum isn't it?&lt;BR /&gt;&lt;BR /&gt;BTW, if there is no that function in documentation (by mistake for example) you can use any technique you know to dump array of FP values to console.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vladimir</description>
      <pubDate>Thu, 20 May 2010 21:12:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815127#M4227</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2010-05-20T21:12:09Z</dc:date>
    </item>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815128#M4228</link>
      <description>Yep, all ok here. I made a realization of printf_32f and works fine. It's the proof that I was in panic :) (29 days left) :P&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thank you again :)&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 May 2010 21:35:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815128#M4228</guid>
      <dc:creator>Knoght</dc:creator>
      <dc:date>2010-05-20T21:35:34Z</dc:date>
    </item>
    <item>
      <title>printf_32f error</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815129#M4229</link>
      <description>Do not be in panic with 30 day evaluation period. There is no time bomb in IPP, it still be fully functional out of evaluation period. During30 days evaluation you will have technical support and you may contactIntel Premier Supportchannel in case you need longer evaluation period&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt; Vladimir</description>
      <pubDate>Thu, 20 May 2010 21:43:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/printf-32f-error/m-p/815129#M4229</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2010-05-20T21:43:52Z</dc:date>
    </item>
  </channel>
</rss>

