<?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: Problems with using custom dll in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915521#M15061</link>
    <description>my dll</description>
    <pubDate>Thu, 27 Jul 2006 21:24:39 GMT</pubDate>
    <dc:creator>imba_neurosoft</dc:creator>
    <dc:date>2006-07-27T21:24:39Z</dc:date>
    <item>
      <title>Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915520#M15060</link>
      <description>&lt;P&gt;I am running Visual Studio 2005 and I am having problems using custom dll, which contains some IPP Fourier transform functions. I am using the following code in C#:&lt;/P&gt;&lt;PRE&gt;internal const string lib = @"&lt;THE full="" path="" to="" my="" custom="" dll=""&gt;ippfouriertransform.dll";&lt;/THE&gt;&lt;/PRE&gt;&lt;PRE&gt;...&lt;/PRE&gt;&lt;PRE&gt;[DllImport(lib)]&lt;BR /&gt; public static extern&lt;BR /&gt; IppStatus ippsDFTInitAlloc_R_32f(IppsDFTSpec_R_32f** pDFTSpec,&lt;BR /&gt; int length, int flag, IppHintAlgorithm hint);&lt;/PRE&gt;&lt;PRE&gt;...&lt;/PRE&gt;&lt;PRE&gt;But if I try to use this function in my application, for example in such a way &lt;/PRE&gt;&lt;PRE&gt;...&lt;/PRE&gt;&lt;PRE&gt;IppStatus st; IppsDFTSpec_R_32f* spec;&lt;BR /&gt; st = SpectrumIpps.ippsDFTInitAlloc_R_32f(&amp;amp;spec,&lt;BR /&gt;   System.Convert.ToInt32(pSrc.Length), 1,&lt;BR /&gt; IppHintAlgorithm.ippAlgHintNone);&lt;/PRE&gt;&lt;PRE&gt;...&lt;/PRE&gt;&lt;PRE&gt;I always get the fatal error :&lt;/PRE&gt;&lt;PRE&gt;System.DllNotFoundException: Unable to load DLL '&lt;THE full="" path="" to="" my="" custom="" dll=""&gt;ippfouriertransform.dll': Indicated modulus not found (Exception from HRESULT: 0x8007007E)&lt;BR /&gt; at NeuroSoft.Math.Spectrum.SpectrumIpps.ippsDFTInitAlloc_R_32f(IppsDFTSpec_R_32f** pDFTSpec, Int32 length, Int32 flag, IppHintAlgorithm hint)&lt;/THE&gt;&lt;/PRE&gt;&lt;PRE&gt;I created custom dll with the help of files, attached in that (&lt;A href="https://community.intel.com/en-us/forums//topic/50289"&gt;http://softwareforums.intel.com/en-us/forums//topic/50289&lt;/A&gt;) topic .&lt;/PRE&gt;&lt;PRE&gt;I've attached my custom dll. Help me please.&lt;/PRE&gt;&lt;PRE&gt;&lt;DIV&gt;thanks,&lt;/DIV&gt;&lt;DIV&gt;    Anton&lt;/DIV&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Jul 2006 19:38:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915520#M15060</guid>
      <dc:creator>imba_neurosoft</dc:creator>
      <dc:date>2006-07-21T19:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915521#M15061</link>
      <description>my dll</description>
      <pubDate>Thu, 27 Jul 2006 21:24:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915521#M15061</guid>
      <dc:creator>imba_neurosoft</dc:creator>
      <dc:date>2006-07-27T21:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915522#M15062</link>
      <description>&lt;P&gt;Hello, you can check your DLL with depends.exe tools from MSVC package (it shows dependancies for your DLL). BTW, did you try to load this DLL from C/C++ program?&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2006 00:44:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915522#M15062</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-08-01T00:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915523#M15063</link>
      <description>&lt;P&gt;Greetings!&lt;BR /&gt;I have checked up my DLL with depends.exe tools from MSVC package and have found out one error and one warning in it. The error consist in absence of a DLL msvcr80.dll. I have copied msvcr80.dll in a directory of my DLL and the error has disappeared. &lt;BR /&gt;The warning consists in the following:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;"At least one module has an unresolved import due to a missing export function in a delay-load dependent module." &lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Except for that i see red icon near the &lt;/P&gt;
&lt;P&gt;"c:windowssystem32MPR.DLL"&lt;/P&gt;
&lt;P&gt;(this DLL exists in c:windowssystem32 ) and near the "WNetRestoreConnectionA" function of MPR.DLL. &lt;BR /&gt;I need to load my DLL from C# program. &lt;BR /&gt;What should i do with this warning?&lt;/P&gt;
&lt;P&gt;thanks, &lt;BR /&gt;Anton&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2006 16:24:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915523#M15063</guid>
      <dc:creator>imba_neurosoft</dc:creator>
      <dc:date>2006-08-03T16:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915524#M15064</link>
      <description>&lt;P&gt;Well, to be honest,I did not face problem like that (I'll inform our expert of course, they might have additional comments to that). What I can suggest you:&lt;/P&gt;
&lt;P&gt;1. to check if you can use this DLL in regular C++ program, just to ensure that there is no any hidden issues with build of it&lt;/P&gt;
&lt;P&gt;2. to try to load original IPP DLL, to ensure that youdo it correctly (I can recommend you to take a look on IPP C# sample, which demonstrates how to use IPP functions in C# program)&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2006 02:06:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915524#M15064</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-08-04T02:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915525#M15065</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I have noticed one strange thing - when I declare a variable "lib" as &lt;BR /&gt;internal const string lib = "ippfouriertransform.dll";&lt;BR /&gt;I receive an error with DllNotFoundException (at attempt of start of the application), but if i declare &lt;BR /&gt;a variable "lib" as&lt;BR /&gt;internal const string lib = @"E:...ippfouriertransform.dll"; (with the full path to my dll)&lt;BR /&gt;I receive a message : (twice)&lt;/P&gt;
&lt;P&gt;Microsoft Visual C++ Runtime Library&lt;/P&gt;
&lt;P&gt;Runtime Error!&lt;/P&gt;
&lt;P&gt;Program: E:CSharpPrograms|Neur ...&lt;/P&gt;
&lt;P&gt;R6034&lt;BR /&gt;An application has made an attempt to load the C runtime library incorrectly.&lt;BR /&gt;Please contact the application's support team for more information.&lt;/P&gt;
&lt;P&gt;and only after that a recieve an error with DllNotFoundException. &lt;/P&gt;
&lt;P&gt;But if I load original IPP dll (ipps.dll) my application works perfectly. &lt;BR /&gt;I tried to load my dll from Delphy / C++ applications but recieved the same message. I shall hope that expert canhelp me with the decision of the given problem.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2006 16:21:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915525#M15065</guid>
      <dc:creator>imba_neurosoft</dc:creator>
      <dc:date>2006-08-07T16:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with using custom dll</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915526#M15066</link>
      <description>&lt;P&gt;Hi Anton,&lt;/P&gt;
&lt;P&gt;while our experts are looking on that, I would like to inform you that we just released the next version of IPP, which is 5.1.1.It is update for IPP 5.1 and is targeted to cover the latest Intel micro-architecture innovations, Intel Core 2 Duo.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2006 23:21:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problems-with-using-custom-dll/m-p/915526#M15066</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-08-07T23:21:13Z</dc:date>
    </item>
  </channel>
</rss>

