<?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: IPP-Headers and Delphi, again in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904737#M13274</link>
    <description>&lt;P&gt;Thanks, I think it should be interesting for those who use IPP in Delphi environment&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
    <pubDate>Tue, 28 Nov 2006 03:50:48 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2006-11-28T03:50:48Z</dc:date>
    <item>
      <title>IPP-Headers and Delphi, again</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904734#M13271</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;i try to convert a fully coded FFT transformation using the IPP Libraray from C++ to Delphi. Transfering the headers from C++ to Delphi, ok it is a question of application. But one IPP comand makes trouble: &lt;SPAN style="font-family: Courier New;"&gt;IppStatus ippsFFTInitAlloc_C_32f(IppsFFTSpec_C_32f** ppFFTSpec, int order, int&lt;/SPAN&gt;&lt;BR style="font-family: Courier New;" /&gt;&lt;SPAN style="font-family: Courier New;"&gt;flag, IppHintAlgorithm hint); &lt;/SPAN&gt;The definition of the IppsFFTSpec_C_32F type is not done in a public header, as described in the manual. &lt;BR /&gt;&lt;BR /&gt;Any idea how to convert this hidden structure to something usefull in Delphi?&lt;BR /&gt;&lt;BR /&gt;Thanx a lot!&lt;BR /&gt;&lt;BR /&gt;CK&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Oct 2006 02:31:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904734#M13271</guid>
      <dc:creator>monacor101</dc:creator>
      <dc:date>2006-10-20T02:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: IPP-Headers and Delphi, again</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904735#M13272</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;you mignt be interested with reading some similar topics here&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.intel.com/ISN/Community/en-US/forums/permalink/5480056/5480056/ShowThread.aspx#5480056"&gt;Calling Intel's IPP from Delphi6&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.intel.com/ISN/Community/en-US/forums/permalink/5482129/5482129/ShowThread.aspx#5482129"&gt;Intel IPP and headers&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.intel.com/ISN/Community/en-US/forums/permalink/5482353/5482353/ShowThread.aspx#5482353"&gt;ROI for DFT (Delphi)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2006 03:15:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904735#M13272</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-10-20T03:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: IPP-Headers and Delphi, again</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904736#M13273</link>
      <description>There is no hint in the demo so i found out by myself:&lt;BR /&gt;&lt;BR /&gt;The C-Types &lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;ppsFFTSpec_C_32F&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;ppsFFTSpec_C_64F&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;are represented in Delphi as:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;type IppsFFTSpec_C_32f = Pointer;&lt;BR /&gt;
type PIppsFFTSpec_C_32f = ^IppsFFTSpec_C_32f;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;type IppsFFTSpec_C_64f = Pointer;&lt;BR /&gt;type PIppsFFTSpec_C_64f = ^IppsFFTSpec_C_64f;&lt;BR /&gt;&lt;/FONT&gt;&lt;BR /&gt;So the Alloc-Function is defined then:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New"&gt;ippsFFTInitAlloc_C_64f(pFFTSpec : PIppsFFTSpec_C_64f; ...&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Hope anyone else can use it, too.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Nov 2006 22:42:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904736#M13273</guid>
      <dc:creator>monacor101</dc:creator>
      <dc:date>2006-11-27T22:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: IPP-Headers and Delphi, again</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904737#M13274</link>
      <description>&lt;P&gt;Thanks, I think it should be interesting for those who use IPP in Delphi environment&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2006 03:50:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-Headers-and-Delphi-again/m-p/904737#M13274</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-11-28T03:50:48Z</dc:date>
    </item>
  </channel>
</rss>

