<?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: VML - user DLL in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915950#M12570</link>
    <description>I think I am misinterpreting what you said. Let me know give some more details - &lt;BR /&gt;&lt;BR /&gt;I have a VC++ DLL (VS 2005) project and I am linking it to mkl_c_dll.lib and libguide40.lib.&lt;BR /&gt;When I call the optimization solver, I get these linker errors, so I link to the following:&lt;BR /&gt;mkl_c.lib, libguide.lib and mkl_solver.lib.&lt;BR /&gt;After this step, I get runtime errors on all VML calls in my code, due to the TLS allocation issue.&lt;BR /&gt;&lt;BR /&gt;Now, as per your solutions - I should be doing the following:&lt;BR /&gt;&lt;BR /&gt;Build a custom dll with all the optimization solver calls into some dll as optsol.dll. And then dynamically link my VC++ dll to the optsol.lib file. &lt;BR /&gt;Is my understanding correct ?&lt;BR /&gt;&lt;BR /&gt;Thanks alot for your advice.&lt;BR /&gt;-VA&lt;BR /&gt;</description>
    <pubDate>Fri, 20 Jul 2007 13:59:48 GMT</pubDate>
    <dc:creator>vikrantca</dc:creator>
    <dc:date>2007-07-20T13:59:48Z</dc:date>
    <item>
      <title>VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915946#M12566</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Previously, there was an issue with the VML - i.e. not being able to build user/custom dll with VML with static linking. &lt;BR /&gt;Is this issue still present in 9.1 ?&lt;BR /&gt;&lt;BR /&gt;I am trying to build a dll which requires the optimization solver and the VML. Turns out, the optimization solver requires static linking, but then, ALL my routines that call VML fail.&lt;BR /&gt;If I comment out the optimization solver calls and link dynamically, the VML calls work (the optimization calls dont work, ofcourse).&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated ?&lt;BR /&gt;Thank you.&lt;BR /&gt;vikrantca&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Jul 2007 20:01:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915946#M12566</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-18T20:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915947#M12567</link>
      <description>I think, you are trying to create your own DLL directly from static libraries. Am I right? It`s incorrect way for VML&amp;amp;VSL functions. If you want to create your own DLL - use custom DLL builder feature</description>
      <pubDate>Fri, 20 Jul 2007 05:54:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915947#M12567</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-20T05:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915948#M12568</link>
      <description>Yes, you are right.&lt;BR /&gt;But, the optimization solver (which I also need in my custom dll) does not work with the dynamic linking, since there is no DLL version of the solver. Therein lies the problem.&lt;BR /&gt;&lt;BR /&gt;-VA&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Jul 2007 12:34:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915948#M12568</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-20T12:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915949#M12569</link>
      <description>&lt;P&gt;Custom dll builder tool is designed for helping to resolve the same tasks as your task - produce dll library from statical libraries. You need just to put list of needed functionsto the tool (for detailed description of custom dll builder see MKL manual).&lt;/P&gt;
&lt;P&gt;You can`t produce your own DLL directly from statical libraries in case of VML&amp;amp;VSL because we have Threading Safe mechanism and it can`t be implemented in samemanner for statical and dynamical librariesin windows.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2007 12:52:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915949#M12569</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-20T12:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915950#M12570</link>
      <description>I think I am misinterpreting what you said. Let me know give some more details - &lt;BR /&gt;&lt;BR /&gt;I have a VC++ DLL (VS 2005) project and I am linking it to mkl_c_dll.lib and libguide40.lib.&lt;BR /&gt;When I call the optimization solver, I get these linker errors, so I link to the following:&lt;BR /&gt;mkl_c.lib, libguide.lib and mkl_solver.lib.&lt;BR /&gt;After this step, I get runtime errors on all VML calls in my code, due to the TLS allocation issue.&lt;BR /&gt;&lt;BR /&gt;Now, as per your solutions - I should be doing the following:&lt;BR /&gt;&lt;BR /&gt;Build a custom dll with all the optimization solver calls into some dll as optsol.dll. And then dynamically link my VC++ dll to the optsol.lib file. &lt;BR /&gt;Is my understanding correct ?&lt;BR /&gt;&lt;BR /&gt;Thanks alot for your advice.&lt;BR /&gt;-VA&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:59:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915950#M12570</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-20T13:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915951#M12571</link>
      <description>&lt;P&gt;Hmmm... Looks like I incorrectly understood your problem. To fix it I need answers at two folloving questions:&lt;/P&gt;
&lt;P&gt;1) What is result of your project: Dll, Exe, Lib or something else?&lt;/P&gt;
&lt;P&gt;2) Can you send text of linker error message then you trying to build your project with mkl_c_dll.lib and libguide40.lib?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2007 14:10:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915951#M12571</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-20T14:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915952#M12572</link>
      <description>Below are the answers:&lt;BR /&gt;1. The result of my project is a DLL that is used by a couple of exe's.&lt;BR /&gt;2. The error messages are:&lt;BR /&gt;&lt;BR /&gt;******************&lt;BR /&gt;&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_nlsqp_withMP.obj)
: error LNK2019: unresolved external symbol _mkl_lapack_dpotrs
referenced in function _dmintr_ls_pd_withmp&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_nlsqp_withoutMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dpotrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_bc_subP_withMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dpotrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_bc_subP_withoutMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dpotrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_nlsqp_withMP.obj)
: error LNK2019: unresolved external symbol _mkl_lapack_dtrtrs
referenced in function _dmintr_ls_pd_withmp&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_nlsqp_withoutMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dtrtrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_bc_subP_withMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dtrtrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_bc_subP_withoutMP.obj) : error LNK2001: unresolved external symbol _mkl_lapack_dtrtrs&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_utils.obj)
: error LNK2019: unresolved external symbol _mkl_blas_dasum referenced
in function _dgrgbound&lt;BR /&gt;&lt;BR /&gt;**************************&lt;BR /&gt;&lt;BR /&gt;All of these go away, once I link to the mkl_c.lib and libguide.lib.&lt;BR /&gt;&lt;BR /&gt;Just to add - I have raised this as an issue , asking for the DLL version of the solver, but havent received anything yet.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;-VA&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Jul 2007 14:52:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915952#M12572</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-20T14:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915953#M12573</link>
      <description>If result of your project is DLL - you shoul link mkl_c_dll.lib and libguide40.lib against mkl_c.lib and libguide.lib. Only in this case your DLL will work properly. Add lapacklibrary to link string and problem with unresolved symbols will disappear.</description>
      <pubDate>Fri, 20 Jul 2007 15:00:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915953#M12573</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-20T15:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915954#M12574</link>
      <description>Thanks for the prompt reply - agilev.&lt;BR /&gt;Now the errors have reduced to the following:&lt;BR /&gt;&lt;BR /&gt;1&amp;gt;mkl_solver.lib(d_tr_trialstep_utils.obj) : error LNK2019: unresolved external symbol _mkl_blas_dasum referenced in function _dgrgbound&lt;BR /&gt;1&amp;gt;mkl_lapack.lib(dpotrs.obj) : error LNK2019: unresolved external symbol _mkl_serv_lsame referenced in function _mkl_lapack_dpotrs&lt;BR /&gt;1&amp;gt;mkl_lapack.lib(dtrtrs.obj) : error LNK2001: unresolved external symbol _mkl_serv_lsame&lt;BR /&gt;&lt;BR /&gt;Thanks again for your patience.&lt;BR /&gt;&lt;BR /&gt;-VA&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Jul 2007 15:52:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915954#M12574</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-20T15:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915955#M12575</link>
      <description>I can`t give advice to you right now. Some consultations with solvers and lapack developers needed.</description>
      <pubDate>Sat, 21 Jul 2007 09:26:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915955#M12575</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-21T09:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915956#M12576</link>
      <description>&lt;P&gt;I linked with mkl_ia32.lib and the remaining errors went away.&lt;/P&gt;
&lt;P&gt;Interestingly, the documentation does not mention linking to mkl_ia32.lib anywhere.&lt;/P&gt;
&lt;P&gt;-VA&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2007 00:09:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915956#M12576</guid>
      <dc:creator>vikrantca</dc:creator>
      <dc:date>2007-07-23T00:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915957#M12577</link>
      <description>In on of threads at this forum you already receive answer about unavailability of solvers in dynamical variant of MKL libraries because someperformance reasons exists. Then you linking mkl_ia32.lib you are use statical MKL libraries.</description>
      <pubDate>Mon, 23 Jul 2007 04:52:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915957#M12577</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-07-23T04:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915958#M12578</link>
      <description>Thanks you both, your discussion make me understand more about MKL. &lt;FONT size="3"&gt;Andrey, I still dealing with the problem. As you said at &lt;/FONT&gt;&lt;FONT size="3"&gt;&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=55340#47656" target="_blank"&gt;http://software.intel.com/en-us/forums/showthread.php?t=55340#47656&lt;/A&gt;, in anyway, we should use lib files (in ia32lib). So what's the purpose of the DLL files (in ia32dll) ? &lt;BR /&gt;&lt;BR /&gt;I still need DLLs to use in Borland, namely VML (trigonometry math). I don't know how to use MKL DLLs. And as you said, we should use LIB files to let it detect the proper DLL used for my own CPU. So I concentrate on LIBs. I intend to wrap that LIB file into DLLs and then use DLL for Borland (using IMPLIB). But what's the right LIB I should use, mkl_c.lib OR mkl_s_dll.lib ? And other LIB? What's necessary for using VML?&lt;BR /&gt;&lt;BR /&gt;After reading this thread, looks like I have to use custom dll builder (MKL's tool) to make DLLs (rather than wrap LIB into DLL). Is it right? But the simple command line hereafter doesn't work: nmake ia32 interface=stdcall &lt;BR /&gt;I use stdcall in other to have it work with Borland.&lt;BR /&gt;But I just get the error:&lt;BR /&gt;&lt;FONT face="Lucida Console" size="2"&gt;&lt;BR /&gt;user_def_file.def : warning LNK4022: cannot find unique match for symbol "DDOT"&lt;BR /&gt;user_def_file.def : warning LNK4002: _DDOT defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : warning LNK4002: _DDOT@20 defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : warning LNK4022: cannot find unique match for symbol "DGEMM"&lt;BR /&gt;user_def_file.def : warning LNK4002: _DGEMM defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : warning LNK4002: _DGEMM@60 defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : warning LNK4022: cannot find unique match for symbol "DGETRF"&lt;BR /&gt;user_def_file.def : warning LNK4002: _DGETRF defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : warning LNK4002: _DGETRF@24 defined in ....ia32libmkl_s.lib&lt;BR /&gt;user_def_file.def : error LNK2001: unresolved external symbol cblas_dgemmmkl_custom.lib : fatal error LNK1120: 1 unresolved externals&lt;BR /&gt;LINK : fatal error LNK1141: failure during build of exports file&lt;BR /&gt;NMAKE : fatal error U1077: 'link' : return code '0x475'&lt;BR /&gt;Stop.&lt;BR /&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;I may have ask you too much, but I'm so confused, if you can, please help me. Thanks very much!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Look forward to your answer.&lt;BR /&gt;&lt;/FONT&gt;</description>
      <pubDate>Thu, 06 Sep 2007 10:15:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915958#M12578</guid>
      <dc:creator>rockballad</dc:creator>
      <dc:date>2007-09-06T10:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915959#M12579</link>
      <description>&lt;P&gt;&lt;A href="https://community.intel.com/isn/Community/en-US/members/rockballad.aspx"&gt;&lt;FONT size="2"&gt;rockballad&lt;/FONT&gt;&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;yes, you can use "custom dll builder tool" for your needs. By using this tool you can create dll which you can use by LoadDll function. You also can create import library for this dll.&lt;/P&gt;
&lt;P&gt;The usage model of "custom dll builder tool" is pretty simple. You should specify two things: target architecture (ia32/em64t/ipf) and file with list of functions which you plan to use. For example: if you want to VML functions only and plan to use them at IA32 architecture, run "custom dll builder tool"usingfollowing command line&lt;/P&gt;
&lt;P&gt;nmake ia32 interface=stdcall export=vml_vsl_stdcall_list&lt;/P&gt;
&lt;P&gt;vml_vsl_stdcall_list - contains list of all VML&amp;amp;VSL functions with stdcall interface.&lt;/P&gt;
&lt;P&gt;As result, you will receive mkl_custom.dll. You can use this library for your needs.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2007 10:43:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915959#M12579</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-09-06T10:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915960#M12580</link>
      <description>Great! Many thanks to you! My command didn't work because I used "export=functions_list" as exampled in userguild.pdf. Now I get the DLL for VML, Using tdump I can see many trigonometry function here with the undercore sign. &lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;DIV&gt;&lt;BR /&gt;---&lt;BR /&gt;Exports from mkl_custom.dll&lt;BR /&gt; 663 exported name(s), 663 export addresse(s). Ordinal base is 1.&lt;BR /&gt; Sorted by Name:&lt;BR /&gt; RVA Ord. Hint Name&lt;BR /&gt; -------- ---- ---- ----&lt;BR /&gt; 000049C4 1 0000 _VCACOS@12&lt;BR /&gt; 00005228 2 0001 _VCACOSH@12&lt;BR /&gt; 00005A94 3 0002 _VCASIN@12&lt;BR /&gt; 000062F8 4 0003 _VCASINH@12&lt;BR /&gt; 00006B64 5 0004 _VCATAN@12&lt;BR /&gt; 000073C8 6 0005 _VCATANH@12&lt;BR /&gt; 00007C34 7 0006 _VCCOS@12&lt;BR /&gt; 00008490 8 0007 _VCCOSH@12&lt;BR /&gt; 00008CEC 9 0008 _VCEXP@12&lt;BR /&gt; 00009548 10 0009 _VCLN@12&lt;BR /&gt; 00009DA4 11 000A _VCLOG10@12&lt;BR /&gt; 0000A64C 12 000B _VCPOW@16&lt;BR /&gt; 0000AF60 13 000C _VCPOWX@16&lt;BR /&gt; 0000B804 14 000D _VCSIN@12&lt;BR /&gt; 0000C068 15 000E _VCSINH@12&lt;BR /&gt; 0000C8D4 16 000F _VCSQRT@12&lt;BR /&gt; 0000D130 17 0010 _VCTAN@12&lt;BR /&gt; 0000D994 18 0011 _VCTANH@12&lt;BR /&gt; 0000E208 19 0012 _VDACOS@12&lt;BR /&gt; 0000EA7C 20 0013 _VDACOSH@12&lt;BR /&gt; 0000F2F0 21 0014 _VDASIN@12&lt;BR /&gt; ...&lt;BR /&gt;&lt;PRE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;But I see warnings of &lt;B&gt;dupicated &lt;/B&gt;functions in that DLL. Do you know the reason why? And when I compile your &lt;B&gt;vssin.c&lt;/B&gt; file in Borland, it's still the error &lt;BR /&gt;&lt;FONT face="Lucida Console" size="2"&gt;[Linker Error] Error: Unresolved external '_vsSin' referenced from ...&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;Looks strange. All functions are already prefixed by "_" as expected. So what's wrong you can figure out?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Sep 2007 02:47:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915960#M12580</guid>
      <dc:creator>rockballad</dc:creator>
      <dc:date>2007-09-07T02:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915961#M12581</link>
      <description>&lt;P&gt;As I can see, you receive needed MKL dll. Can you explain step-by-step your next actions (what are you doing with this dll, how are you include dll to your project and ect.)?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:40:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915961#M12581</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-09-07T06:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915962#M12582</link>
      <description>Yes. I need to use VML in Borland C++ Builder. I usually test with VS2005 first, and import library to use in BCB (using implib). To be simply, I ask for your help to use this custom dll in VS2005. &lt;BR /&gt;&lt;BR /&gt;Here is my step-by-step action in using VS2005.&lt;BR /&gt;&lt;BR /&gt;1/ Create a console application &lt;BR /&gt;&lt;BR /&gt;2/ Copy func_interv.h, mkl_custom.lib, mkl_custom.dll into project folder&lt;BR /&gt;&lt;BR /&gt;3/ Alt+F7 to get Project Setting. &lt;BR /&gt;&lt;BR /&gt;* C/C++ branch: &lt;BR /&gt; [Additional Include Dir:] &lt;I&gt;c:Program FilesIntelMKL9.1.027include&lt;/I&gt;&lt;BR /&gt;* Linker: &lt;BR /&gt; [Additional Lib Dir:] &lt;I&gt;c:Program FilesIntelMKL9.1.027ia32lib&lt;/I&gt;&lt;BR /&gt;and [Additional Dependencies:]&lt;I&gt; mkl_custom.lib&lt;/I&gt;&lt;BR /&gt;&lt;BR /&gt;The main function is the same as &lt;I&gt;vssin.c&lt;/I&gt; in MKL example.&lt;BR /&gt;&lt;BR /&gt;Everything seems OK. but there's a error &lt;B&gt;LNK2019: unresolved external symbol _vsSin referenced in function _wmain&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;It's Friday at my time, I hope to get your help to solve it before this weekend. Could you please check it for me? Thanks very much!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Sep 2007 07:47:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915962#M12582</guid>
      <dc:creator>rockballad</dc:creator>
      <dc:date>2007-09-07T07:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915963#M12583</link>
      <description>Do you remember what at previuos step you are created mkl_custom.lib with with functions with STDCALL calling conventions? Why you are using CDECL in your current project?</description>
      <pubDate>Fri, 07 Sep 2007 08:06:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915963#M12583</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-09-07T08:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915964#M12584</link>
      <description>Yes, I do. But I'm sorry, I don't know I'm using CDECL. Please tell me? &lt;BR /&gt;</description>
      <pubDate>Fri, 07 Sep 2007 08:47:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915964#M12584</guid>
      <dc:creator>rockballad</dc:creator>
      <dc:date>2007-09-07T08:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: VML - user DLL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915965#M12585</link>
      <description>&lt;P&gt;From one side - you are built and tryed to use STDCALL library. From another site - all function in includemkl_vml_functions.h declared as CDECL. Some conflict have place here. I see two ways to resolve this problem:&lt;/P&gt;
&lt;P&gt;1) define macro MKL_VML_STDCALL (and use STDCALL library). after that, all function (in includemkl_vml_functions.h)will be declared as STDCALL.&lt;/P&gt;
&lt;P&gt;2) build and use CDECL library (nmake ia32 interface=cdecl export=vml_vsl_cdecl_list)&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2007 09:01:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/VML-user-DLL/m-p/915965#M12585</guid>
      <dc:creator>Andrey_G_Intel2</dc:creator>
      <dc:date>2007-09-07T09:01:02Z</dc:date>
    </item>
  </channel>
</rss>

