<?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: IFX in the Intel® oneAPI 2022.3 Release in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557854#M170185</link>
    <description>&lt;P&gt;Thanks for the reproducer. I duplicated the link error with /Qopenmp-stubs. I first thought that all those compiler options may be causing the failure, but no. I'll keep investigating.&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;Q:\06093771&amp;gt;ifx /Qopenmp-stubs ifxifort.f90
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2024.0.0 Build 20231017
Copyright (C) 1985-2023 Intel Corporation. All rights reserved.

Microsoft (R) Incremental Linker Version 14.38.33130.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:ifxifort.exe
-subsystem:console
ifxifort.obj
ifxifort.obj : error LNK2019: unresolved external symbol omp_get_num_procs referenced in function MAIN__
ifxifort.obj : error LNK2019: unresolved external symbol omp_get_max_threads referenced in function MAIN__
ifxifort.exe : fatal error LNK1120: 2 unresolved externals

Q:\06093771&amp;gt;ifx /Qopenmp ifxifort.f90
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2024.0.0 Build 20231017
Copyright (C) 1985-2023 Intel Corporation. All rights reserved.

Microsoft (R) Incremental Linker Version 14.38.33130.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:ifxifort.exe
-subsystem:console
-defaultlib:libiomp5md.lib
-nodefaultlib:vcomp.lib
-nodefaultlib:vcompd.lib
ifxifort.obj

Q:\06093771&amp;gt;ifxifort.exe
omp_get_num_procs() = 8: the number of processors that are available to the device
omp_get_max_threads() = 8: the number of threads used to form a new team&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Dec 2023 15:36:10 GMT</pubDate>
    <dc:creator>Barbara_P_Intel</dc:creator>
    <dc:date>2023-12-27T15:36:10Z</dc:date>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557406#M170162</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am not sure that this is the right place to post the following. If not, please direct me to the right place.&lt;/P&gt;&lt;P&gt;I have a problem migrating from ifort to ifx, related to building code with and without OpenMP.&lt;BR /&gt;IFORT works fine, but IFX does not.&lt;/P&gt;&lt;P&gt;There is no need to look at the source code, I believe (there is a USE omp_lib statement in the MAIN__).&lt;/P&gt;&lt;P&gt;System info: Windows 11 Pro 22H2 (22621.2861)&lt;/P&gt;&lt;P&gt;ifx /logo&lt;BR /&gt;Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2023.2.0 Build 20230627&lt;BR /&gt;Copyright (C) 1985-2023 Intel Corporation. All rights reserved.&lt;/P&gt;&lt;P&gt;According to ifx /help:&lt;BR /&gt;/Qopenmp-stubs&lt;BR /&gt;enables the user to compile OpenMP programs in sequential mode. The&lt;BR /&gt;OpenMP directives are ignored and a stub OpenMP library is linked&lt;BR /&gt;(sequential)&lt;BR /&gt;ifort /logo&lt;BR /&gt;Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.10.0 Build 20230609_000000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With OpenMP:&lt;BR /&gt;1.&amp;nbsp; ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp /Qopt-report /warn:nodeclarations "source files" /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:psa2.exe&lt;BR /&gt;Code runs well.&lt;/P&gt;&lt;P&gt;Without OpenMP, using the stub library:&lt;BR /&gt;2.&amp;nbsp; ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /warn:nodeclarations /Qopenmp-stubs "source files" /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:psa2noomp.exe&lt;BR /&gt;psa2.obj : error LNK2019: unresolved external symbol omp_get_num_procs referenced in function MAIN__&lt;BR /&gt;psa2.obj : error LNK2019: unresolved external symbol omp_get_max_threads referenced in function MAIN__&lt;BR /&gt;psa2noomp.exe : fatal error LNK1120: 2 unresolved externals&lt;BR /&gt;NMAKE : fatal error U1077: 'ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /warn:nodeclarations /Qopenmp-stubs "source files" /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:psa2noomp.exe' : return code '0x460'&lt;BR /&gt;Stop.&lt;BR /&gt;Clearly, this one fails to link.&lt;/P&gt;&lt;P&gt;Without OpenMP, using the stub library:&lt;BR /&gt;3.&amp;nbsp; ifort /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /warn:nodeclarations /Qopenmp-stubs "source files" /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:psa2noomp.exe&lt;BR /&gt;This one works, code runs well.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Hans De Raedt&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 09:21:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557406#M170162</guid>
      <dc:creator>hansderaedt</dc:creator>
      <dc:date>2023-12-26T09:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557621#M170167</link>
      <description>&lt;P&gt;I compiled and ran a simple matmul that uses OpenMP directives. Using ifx it compiled and ran okay for me with /Qopenmp and again with /Qopenmp-stubs in a oneAPI command window on Windows.&lt;/P&gt;
&lt;P&gt;Can you please upload an example that fails?&lt;/P&gt;
&lt;P&gt;I used&amp;nbsp;Intel(R) 64, Version 2024.0.0 Build 20231017. It was released about a month ago, around Thanksgiving.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Dec 2023 22:41:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557621#M170167</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-12-26T22:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557755#M170175</link>
      <description>&lt;P&gt;Thanks for the quick response. A minimal example is attached. The problem seems to be in the link step. Using IFORT there is no problem linking with the OpenMP stub&amp;nbsp; but with IFX there seems to be one.&lt;/P&gt;&lt;P&gt;ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp /Qopt-report ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifxomp.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ifort /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp-stubs /Qdiag-disable:10448 ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifortnoomp.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp-stubs ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifxnoomp.exe&lt;BR /&gt;ifxifort.obj : error LNK2019: unresolved external symbol omp_get_num_procs referenced in function MAIN__&lt;BR /&gt;ifxifort.obj : error LNK2019: unresolved external symbol omp_get_max_threads referenced in function MAIN__&lt;BR /&gt;ifxnoomp.exe : fatal error LNK1120: 2 unresolved externals&lt;BR /&gt;NMAKE : fatal error U1077: 'ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp-stubs ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifxnoomp.exe' : return code '0x460'&lt;BR /&gt;Stop.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 09:46:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557755#M170175</guid>
      <dc:creator>hansderaedt</dc:creator>
      <dc:date>2023-12-27T09:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557776#M170176</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="none"&gt;ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp /Qopt-report ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifxomp.exe

 Volume in drive C is OS
 Volume Serial Number is 3257-09CB
 Directory of C:\Users\cadfi\OneDrive\Desktop\ifxtest
27/12/2023  11:09    &amp;lt;DIR&amp;gt;          .
27/12/2023  11:07    &amp;lt;DIR&amp;gt;          ..
27/12/2023  11:06               258 ifxifort.f90
27/12/2023  11:09             2,629 ifxifort.obj
27/12/2023  11:09            11,842 ifxifort.opt.yaml
27/12/2023  11:09               318 ifxifort.optrpt
27/12/2023  11:09         7,393,280 ifxifort.pdb
27/12/2023  11:09         1,080,832 ifxomp.exe
               6 File(s)      8,489,159 bytes
               2 Dir(s)  68,060,684,288 bytes free&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I opened a x64 command window, downloaded your file, pasted your build command and it built ok. I think your install or omp version is broken.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ifxomp&lt;BR /&gt;omp_get_num_procs() = 12: the number of processors that are available to the device&lt;BR /&gt;omp_get_max_threads() = 12: the number of threads used to form a new team&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Checking mu ENV I see:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I_MPI_ONEAPI_ROOT=C:\Program Files (x86)\Intel\oneAPI\mpi\2021.10.0&lt;BR /&gt;I_MPI_ROOT=C:\Program Files (x86)\Intel\oneAPI\mpi\latest\env\\..&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 11:33:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557776#M170176</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-12-27T11:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557779#M170177</link>
      <description>&lt;P&gt;It is not clear to me if you also tried:&lt;BR /&gt;&lt;BR /&gt;ifx /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /Qopenmp-stubs ifxifort.f90 /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:ifxnoomp.exe&lt;BR /&gt;&lt;BR /&gt;My env says (yesterday I downloaded and installed version 2024.0.2):&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I_MPI_ONEAPI_ROOT=C:\Program Files (x86)\Intel\oneAPI\mpi\2021.10.0&lt;BR /&gt;I_MPI_ROOT=C:\Program Files (x86)\Intel\oneAPI\2024.0&lt;BR /&gt;LIB=C:\Program Files (x86)\Intel\oneAPI\2024.0\lib;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.22621.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.22621.0\\um\x64&lt;BR /&gt;LIBPATH=C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.38.33130\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.22621.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.22621.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319&lt;BR /&gt;LIBRARY_PATH=C:\Program Files (x86)\Intel\oneAPI\2024.0\lib;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;... &amp;gt;ifx&lt;BR /&gt;Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2024.0.2 Build 20231213&lt;BR /&gt;Copyright (C) 1985-2023 Intel Corporation. All rights reserved.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 11:33:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557779#M170177</guid>
      <dc:creator>hansderaedt</dc:creator>
      <dc:date>2023-12-27T11:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557814#M170178</link>
      <description>&lt;P&gt;OK yes the "stubs" generates the link error I had missed that option. That said I don't understand what the option means, is not a 'stub' library the one that has the references for dynamic linking via dlls? My understanding is that there is no static linking for openmp in ifort so if that is the case the option is redundant?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrew_4619_0-1703681467479.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/49737iC0CF7F2CCDFC23FB/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="andrew_4619_0-1703681467479.png" alt="andrew_4619_0-1703681467479.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 12:51:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557814#M170178</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-12-27T12:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557818#M170181</link>
      <description>&lt;P&gt;According to ifx /help (or ifort /help) :&lt;BR /&gt;/Qopenmp-stubs&lt;BR /&gt;enables the user to compile OpenMP programs in sequential mode. The OpenMP directives are ignored and a stub OpenMP library is linked (sequential)&lt;BR /&gt;&lt;BR /&gt;The option is very useful to test the code in sequential mode (without having to change anything to the source files).&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Linking with the stub OpenMP library is expected to replace all OpenMP runtime procedures by "dummies" that give some default output.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If we replace ifx by ifort:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class=""&gt;ifort /nologo /O3 /nodebug /nocheck /heap-arrays /Qdiag-error-limit:4 /warn:nodeclarations /Qopenmp-stubs "source files" /link /INCREMENTAL:NO /NOLOGO /OPT:NOREF /out:psa2noomp.exe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;the build is ok and the code runs fine. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Just try the command above and run psa2noomp.exe to see the output.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;My wild guess is that "ifx /Qopenmp-stubs"&amp;nbsp; does not pass the name/path of the openmp-stubs library to the linker whereas "ifort&amp;nbsp;/Qopenmp-stubs" does.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;The libs are in &lt;/SPAN&gt;&lt;SPAN class=""&gt;C:\Program Files (x86)\Intel\oneAPI\2024.0\lib&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;libiomp5md.lib&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;libiompstubs5md.lib&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 13:11:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557818#M170181</guid>
      <dc:creator>hansderaedt</dc:creator>
      <dc:date>2023-12-27T13:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557832#M170182</link>
      <description>&lt;P&gt;OK I get that. I think you are correct becuase adding&amp;nbsp;!DIR$OBJCOMMENT LIB:"libiompstubs5md.lib" to the source fixes it as a&amp;nbsp; workaround.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 14:26:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557832#M170182</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-12-27T14:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557854#M170185</link>
      <description>&lt;P&gt;Thanks for the reproducer. I duplicated the link error with /Qopenmp-stubs. I first thought that all those compiler options may be causing the failure, but no. I'll keep investigating.&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;Q:\06093771&amp;gt;ifx /Qopenmp-stubs ifxifort.f90
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2024.0.0 Build 20231017
Copyright (C) 1985-2023 Intel Corporation. All rights reserved.

Microsoft (R) Incremental Linker Version 14.38.33130.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:ifxifort.exe
-subsystem:console
ifxifort.obj
ifxifort.obj : error LNK2019: unresolved external symbol omp_get_num_procs referenced in function MAIN__
ifxifort.obj : error LNK2019: unresolved external symbol omp_get_max_threads referenced in function MAIN__
ifxifort.exe : fatal error LNK1120: 2 unresolved externals

Q:\06093771&amp;gt;ifx /Qopenmp ifxifort.f90
Intel(R) Fortran Compiler for applications running on Intel(R) 64, Version 2024.0.0 Build 20231017
Copyright (C) 1985-2023 Intel Corporation. All rights reserved.

Microsoft (R) Incremental Linker Version 14.38.33130.0
Copyright (C) Microsoft Corporation.  All rights reserved.

-out:ifxifort.exe
-subsystem:console
-defaultlib:libiomp5md.lib
-nodefaultlib:vcomp.lib
-nodefaultlib:vcompd.lib
ifxifort.obj

Q:\06093771&amp;gt;ifxifort.exe
omp_get_num_procs() = 8: the number of processors that are available to the device
omp_get_max_threads() = 8: the number of threads used to form a new team&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 15:36:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557854#M170185</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-12-27T15:36:10Z</dc:date>
    </item>
    <item>
      <title>Re:Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557875#M170188</link>
      <description>&lt;P&gt;Bug filed: CMPLRLLVM-54924. &lt;/P&gt;&lt;P&gt;Today my matmul fails to link with /Qopenmp-stubs. Wonder what I saw yesterday. Sigh...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Dec 2023 16:24:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557875#M170188</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-12-27T16:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557883#M170189</link>
      <description>&lt;P&gt;There is no need to sigh..., it was boxing day, a day of joy in the old Commonwealth Countries, where excess eggnog is removed by old grandmother's who like the taste of brandy, people stand in the wind on the beach in Norfolk and freeze to death, whilst bonding as a family, I await the oneapi to reinstall so I have some spare minutes, the difference between -infinity and +infinity is explained, of course we cannot count to infinity as there are not enough atoms in the universe, the Norseman suggests that I not get ahead of Intel and there is a web link for PRC people that leads nowhere that I can see would interest them on the Intel site,&amp;nbsp;&lt;/P&gt;&lt;P&gt;So stay relaxed and just enjoy the cool weather.&amp;nbsp; I can now return to programming.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Happy New Year.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Dec 2023 16:39:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1557883#M170189</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-12-27T16:39:45Z</dc:date>
    </item>
    <item>
      <title>Re:Re: IFX in the Intel® oneAPI 2022.3 Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1587840#M171720</link>
      <description>&lt;P&gt;With the ifx compiler version 2024.2.0 linking with &lt;SPAN style="font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen, Ubuntu, &amp;quot;Fira Sans&amp;quot;, &amp;quot;Droid Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, sans-serif;"&gt;/Qopenmp-stubs works on Windows. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Roboto, Oxygen, Ubuntu, &amp;quot;Fira Sans&amp;quot;, &amp;quot;Droid Sans&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, sans-serif;"&gt;Look for this release in mid-2024.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Apr 2024 21:54:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Re-IFX-in-the-Intel-oneAPI-2022-3-Release/m-p/1587840#M171720</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-04-09T21:54:03Z</dc:date>
    </item>
  </channel>
</rss>

