<?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:dfdNewTask1D crash in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1540583#M35400</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since a new thread &amp;lt;&lt;A href="https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash-cont-d/m-p/1539864#M35389" rel="noopener noreferrer" target="_blank"&gt;https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash-cont-d/m-p/1539864#M35389&lt;/A&gt;&amp;gt; is raised on behalf of this thread, we will no longer monitor this thread. We will continue addressing this issue in the other thread.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Sat, 04 Nov 2023 11:16:12 GMT</pubDate>
    <dc:creator>ShanmukhS_Intel</dc:creator>
    <dc:date>2023-11-04T11:16:12Z</dc:date>
    <item>
      <title>dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1521441#M35060</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a source code doing an Akima spline that works perfectly in one dll but crashes in another one and I absolutely don't understand why!&lt;/P&gt;&lt;P&gt;Of course, the data sets used for the spline are different but nothing special here.&lt;/P&gt;&lt;P&gt;Here is the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;subroutine AkimaSpline(NDATA, XDATA, FDATA, X, Y)
    use IFWIN
    use MKL_DF
    use MKL_DF_TYPE

    implicit none

    ! Arguments
    integer(4), intent(in)  :: NDATA
    real(8),    intent(in)  :: XDATA(NDATA), FDATA(NDATA)
    real(8),    intent(in)  :: X
    real(8),    intent(out) :: Y

    ! Constants
    integer(4), parameter :: ERROR_INSUFFICIENT_DATA = APPLICATION_ERROR_MASK + ERROR_SEVERITY_ERROR + #00000002

    ! Variables locales

    ! Data Fitting task descriptor
    type (DF_TASK) task

    ! local pointers
    real(8), allocatable :: xx(:)
    real(8), allocatable :: yy(:)

    real(8), allocatable :: scoeff(:)

    integer nx, xhint, ny, yhint, sorder, stype, scoeffhint
    integer bc_type, ic_type, errcode, dorder(1)

    integer nsite, sitehint, ndorder, rhint
    real(8) site(1), r(1), datahint(2)

    ! Body of subroutine

    ! If not enough data points, raise exception
    if (NDATA &amp;lt; 5) call RaiseException(ERROR_INSUFFICIENT_DATA, EXCEPTION_NONCONTINUABLE, 0,  NULL)

    ! Parameters describing interpolation interval
    nx = NDATA
    if (allocated(xx)) deallocate(xx)
    allocate(xx(NDATA))
    xx(1:NDATA) = XDATA(1:NDATA)
    xhint = DF_NON_UNIFORM_PARTITION

    ! Parameters describing function
    ny = 1
    if (allocated(yy)) deallocate(yy)
    allocate(yy(NDATA))
    yy(1:NDATA) = FDATA(1:NDATA)
    yhint = DF_NO_HINT

    ! Parameters describing order and type of the spline
    sorder = DF_PP_CUBIC
    stype  = DF_PP_AKIMA

    ! Parameter describing additional info about spline coefficients
    if (allocated(scoeff)) deallocate(scoeff)
    allocate(scoeff(sorder*(nx-1)))
    scoeff(:) = 0.d0
    scoeffhint = DF_NO_HINT

    ! Parameters describing boundary conditions type
    bc_type = DF_BC_NOT_A_KNOT

    ! Parameters describing internal conditions type
    ! No internal conditions are provided for Akima cubic spline
    ic_type = DF_NO_IC

    ! Create Data Fitting task
    errcode = dfdNewTask1D(task, nx, xx, xhint, ny, yy, yhint)
    call CheckDfError(errcode,.false.)

    ! Edit task parameters for Akima cubic spline construction
    errcode = dfdEditPPSpline1D(task, sorder, stype, bc_type, ic_type=ic_type, scoeff=scoeff, scoeffhint=scoeffhint)
    call CheckDfError(errcode,.false.)

    ! Construct Akima cubic spline using STD method
    errcode = dfdConstruct1D(task, DF_PP_SPLINE, DF_METHOD_STD)
    call CheckDfError(errcode,.false.)

    ! Compute piecewise polynomial cubic spline at X
    nsite = 1
    ndorder = 1
    site(1)   = X
    dorder(1) = 1
    sitehint = DF_NON_UNIFORM_PARTITION ! DF_NO_HINT
    datahint(1) = 1.d0
    datahint(2) = dble(DF_NO_APRIORI_INFO)   ! No additional information about breakpoints or sites is provided.
    rhint = DF_MATRIX_STORAGE_COLS  ! The library packs interpolation results in row-major format.

    errcode = dfdInterpolate1D(task, DF_INTERP, DF_METHOD_PP, nsite, site, sitehint, ndorder, dorder, datahint, r, rhint)
    call CheckDfError(errcode,.false.)

    Y = r(1)

    ! Delete Data Fitting task
    errcode = dfDeleteTask(task)
    call CheckDfError(errcode,.false.)

    ! Memory deallocations
    if (allocated(scoeff)) deallocate(scoeff)
    if (allocated(yy))     deallocate(yy)
    if (allocated(xx))     deallocate(xx)

end subroutine AkimaSpline&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The crash happens when calling the&amp;nbsp;dfdNewTask1D routine (my app closes directly).&lt;/P&gt;&lt;P&gt;The differences between the two dlls is may be in the project settings but I don't know where !&lt;/P&gt;&lt;P&gt;here are the settings of the dll who crashes:&lt;/P&gt;&lt;P&gt;/nologo /debug:full /Od /fpp /DSIMULIS_INSIDE /DWIN32 /DHTML_CODE /DDVF /DUNIT_OP /arch:IA32 /extend-source:132 /debug-parameters:all /warn:interfaces /Qsave /align:commons /assume:byterecl /Qinit:zero /Qinit:arrays /fpe:1 /fp:source /fpconstant /Qfp-speculation=strict /iface:mixed_str_len_arg /module:"Win32\Debug\\" /object:"Win32\Debug\\" /Fd"Win32\Debug\vc170.pdb" /traceback /libs:dll /threads /dbglibs /Qmkl:sequential /c&lt;/P&gt;&lt;P&gt;(Note: I already tried to remove the /arch:IA32 but without success)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the ones for the dll who works perfectly:&lt;/P&gt;&lt;P&gt;/nologo /debug:full /Od /fpp /DWIN32 /DFRENCH /DSTARDUST /reentrancy:threaded /extend-source:132 /debug-parameters:all /warn:interfaces /Qauto /assume:byterecl /fpe:1 /fp:source /fpconstant /Qfp-speculation=strict /iface:mixed_str_len_arg /module:"Win32\Debug\\" /object:"Win32\Debug\\" /Fd"Win32\Debug\vc170.pdb" /traceback /check:bounds /check:uninit /libs:static /threads /dbglibs /Qmkl:parallel /c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My compiler version&amp;nbsp; is 2021.10.0 (oneAPI 2023.2.1) and I have installed only the minimum set ot tools I need (fortran compiler, tools (advisor, profiler and inspector) along with the mkl lib 32 bit from OneAPI basic and HPC kits).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any Idea ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 14:10:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1521441#M35060</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-09-07T14:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1521527#M35061</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Finally, I found that the difference comes from the libraries' settings. In the project that works, the setting is:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; /libs:static&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;whereas in the dll who crashes, it is&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; /libs:dll&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In my application I have a lot of dlls using this setting (to reduce their size) and the runtime libraries are preloaded by the calling process.&amp;nbsp; Here is the list of the preloaded dlls:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;libmmd.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;libmmdd.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;libifcoremdd.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;libifportmd.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;mkl_core.2.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;mkl_sequential.2.dll&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Do I need another one when using the interpolation functions?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that the crash also happened on my computer where intel OneAPI is installed and used to build my projects.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 14:43:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1521527#M35061</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-09-07T14:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1522150#M35085</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Any idea about how to solve this issue with the use of dynamic linking with the MKL (static link works but dynamic linking makes the call to dfdNewTask1D crash violently).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Sat, 09 Sep 2023 10:26:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1522150#M35085</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-09-09T10:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1522595#M35097</link>
      <description>&lt;P&gt;Hi Philippe,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting on Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for elaborating on the details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally, I found that the difference comes from the libraries' settings. In the project that works, the setting is: &amp;nbsp;&amp;nbsp;/libs:static&amp;nbsp; whereas in the dll who crashes, it is &amp;nbsp;&amp;nbsp;/libs:dll&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Glad to know that you are able to find the root cause. However, regarding the crash, could you please let us know if all the required routines were added to the dll and all the project properties were set properly? Could you please get back to us with the configuration properties settings? We will get back to you soon with an update as currently we are facing a technical issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 09:12:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1522595#M35097</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-11-20T09:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1524842#M35138</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Shanmukh,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any update concerning a possible fix?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 15:02:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1524842#M35138</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-09-18T15:02:49Z</dc:date>
    </item>
    <item>
      <title>Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1526189#M35158</link>
      <description>&lt;P&gt;Hi Phillippe,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have tried running the shared source code. However, it seems a few dependent module files were missing as mentioned below. Could you please share with us the same, so that we could triage the issue better?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Error in opening the compiled module file.&amp;nbsp;Check INCLUDE paths.&amp;nbsp;&amp;nbsp;[MKL_DF]  &lt;/P&gt;&lt;P&gt;Error in opening the compiled module file.&amp;nbsp;Check INCLUDE paths.&amp;nbsp;&amp;nbsp;[MKL_DF_TYPE]  &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Sep 2023 10:47:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1526189#M35158</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-21T10:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1526193#M35159</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Shanmukh,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here are the missing files.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that they came from the include folder of the MKL installation directory ("C:\Program Files (x86)\Intel\oneAPI\mkl\&amp;lt;version&amp;gt;\include\").&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;They are maybe not the latest ones since I needed to include them in my Mercurial repository. Should it be the source of the problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2023 11:05:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1526193#M35159</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-09-21T11:05:34Z</dc:date>
    </item>
    <item>
      <title>Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1528047#M35197</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;This is to kindly remind you that 32-bit version will be deprecated in the upcoming Intel® oneMKL 2024.0 release and targeted to be removed after one year deprecation notice.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;In addition, Could you please get back to us with the comprehensive reproducer which will contains all input data that not only includes the subroutines like this so that we could build statically, dynamically and check the behavior?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2023 09:43:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1528047#M35197</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-27T09:43:56Z</dc:date>
    </item>
    <item>
      <title>Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1530819#M35250</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Could you please get back to us with the earlier requested details to look into your issue further?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Oct 2023 18:15:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1530819#M35250</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-10-05T18:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1531746#M35269</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;here is a ZIP file that contains two solutions/projects, one for building the dll&amp;nbsp; which contains the AkimaSpline routine above and which is build using runtime libs (AkimaSpline folder) and the second which uses the AkimaApline dll to perform spline calculations. The runtime libs are loaded in the Akima_Test console app before calling the AkimaSpline dll. You need to build both Debug configurations.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;P.S.: To come back to your comment about the &lt;SPAN&gt;deprecation of the 32-bit version of the mkl, I am quite disappointed since we are still building 32-bit version of some of our software even if we are working on a 64-bit version, I hope that we will be ready before the 32-bit version disappear.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 10:27:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1531746#M35269</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-10-09T10:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1534207#M35319</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for sharing the files.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned earlier, Could you please cross-verify the project settings if all the properties were set as expected ? (&lt;SPAN&gt;the settings for the 64-bit platform mentioned by you&lt;/SPAN&gt;) Besides this, we are working on your issue. We have tried compiling the 2 project files shared. Akima_Test compiled fine, however, we are facing issues in compiling the AkimaSpline project file. We are trying to resolve the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 09:15:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1534207#M35319</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-11-20T09:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1534512#M35322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You are right, the settings for the 64-bit platform were not correct (the /Qmkl:sequential item is missing in the libraries category), but as I was only focusing on 32-bit version I did not notice that. Anyway, trying to build a version which can also be run in 64-bit, I got different behavior in using the 32-bit debug version inside the debugger or directly in a console window. In the debugger, the app crashes simply, but in the console window I got the following message (sorry if part of it is in french):&lt;/P&gt;&lt;P&gt;INTEL MKL ERROR: Le module spÚcifiÚ est introuvable. mkl_vml_avx512.2.dll.&lt;BR /&gt;Intel MKL FATAL ERROR: cannot load mkl_vml_avx512.2.dll or mkl_vml_p4.2.dll&lt;/P&gt;&lt;P&gt;Anyway, this means that another runtime library is required (mkl_vml_avx512.2.dll or&amp;nbsp;mkl_vml_p4.2.dll).&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added&amp;nbsp;mkl_vml_avx512.2.dll to the list of preloaded dlls and now it works fine. I will check with my other dll in which the problem was identified. Do you have a list of the required MKL dlls depending on the functions used? because I have another dll which can use PARDISO solver, and I am afraid it does not work either and I don't know which additional dlls I need.&lt;/P&gt;&lt;P&gt;If you want to check on your side (you can simply comment the line relating to mkl_vml_avx512.2.dll in the RuntimeLibraries.txt file by placing a semi-colon ";" at the beginning of the line), the updated ZIP archive is attached.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 13:40:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1534512#M35322</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2023-10-17T13:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1535881#M35343</link>
      <description>&lt;P&gt;Hi Phillipe,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&lt;EM&gt;Do you have a list of the required MKL dlls depending on the functions used?&amp;nbsp;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Please find the requested information below. Kindly go through the links as per your requirements.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Contents of the redist\\intel64 Directory:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/contents-of-the-redist-intel64-directory.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/contents-of-the-redist-intel64-directory.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dynamic Libraries in the lib\\intel64 Directory:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/dynamic-libraries-in-the-lib-intel64-directory.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/dynamic-libraries-in-the-lib-intel64-directory.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Linking with Computational Libraries:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/linking-with-computational-libraries.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-2/linking-with-computational-libraries.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for sharing the updated zip file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2023 09:19:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1535881#M35343</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-11-20T09:19:20Z</dc:date>
    </item>
    <item>
      <title>Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1538066#M35376</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know if there is any update on the earlier issue? &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Oct 2023 18:02:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1538066#M35376</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-10-27T18:02:53Z</dc:date>
    </item>
    <item>
      <title>Re:dfdNewTask1D crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1540583#M35400</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since a new thread &amp;lt;&lt;A href="https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash-cont-d/m-p/1539864#M35389" rel="noopener noreferrer" target="_blank"&gt;https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash-cont-d/m-p/1539864#M35389&lt;/A&gt;&amp;gt; is raised on behalf of this thread, we will no longer monitor this thread. We will continue addressing this issue in the other thread.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 04 Nov 2023 11:16:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfdNewTask1D-crash/m-p/1540583#M35400</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-11-04T11:16:12Z</dc:date>
    </item>
  </channel>
</rss>

