impi-devel 2021.14.2__py2.py3-none-win_amd64.whl → 2021.16.0__py2.py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of impi-devel might be problematic. Click here for more details.
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicc.bat +1 -6
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicl.bat +7 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpicxx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpif77.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpif90.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpifc.bat +1 -6
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicc.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicpc.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicpx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiicx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiifort.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/bin/mpiifx.bat +7 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpi.h +508 -350
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpicxx.h +9 -9
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/lib/impi.lib +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/METADATA +2 -2
- impi_devel-2021.16.0.dist-info/RECORD +24 -0
- impi_devel-2021.14.2.dist-info/RECORD +0 -24
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/Library/include/mpio.h +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/license.txt +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.14.2.dist-info → impi_devel-2021.16.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -27,7 +27,7 @@ rem Keep the self name (as "filename.ext") in the variable before cycle. We will
|
|
|
27
27
|
set selfname=%~nx0
|
|
28
28
|
|
|
29
29
|
rem MPIVERSION is the version of the Intel^(R^) MPI Library that mpicc is intended for
|
|
30
|
-
set MPIVERSION=2021.
|
|
30
|
+
set MPIVERSION=2021.16
|
|
31
31
|
|
|
32
32
|
echo %selfname% for the Intel^(R^) MPI Library %MPIVERSION% for Windows*
|
|
33
33
|
echo Copyright Intel Corporation.
|
|
@@ -191,11 +191,6 @@ set LINKER_OPTION=/link
|
|
|
191
191
|
|
|
192
192
|
rem ------------------------------------------------------------------------
|
|
193
193
|
rem Argument processing.
|
|
194
|
-
rem This is somewhat awkward because of the handling of arguments within
|
|
195
|
-
rem the shell. We want to handle arguments that include spaces without
|
|
196
|
-
rem loosing the spacing (an alternative would be to use a more powerful
|
|
197
|
-
rem scripting language that would allow us to retain the array of values,
|
|
198
|
-
rem which the basic (rather than enhanced) Bourne shell does not.
|
|
199
194
|
rem
|
|
200
195
|
rem Look through the arguments for arguments that indicate compile only.
|
|
201
196
|
rem If these are *not* found, add the library options
|
|
@@ -17,6 +17,13 @@ rem mpicl.bat
|
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Microsoft C++ Compiler.
|
|
18
18
|
rem This script sets some variable and the general script.
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
|
+
if not defined I_MPI_ROOT (
|
|
21
|
+
echo:
|
|
22
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
23
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
24
|
+
echo:
|
|
25
|
+
exit /b 255
|
|
26
|
+
)
|
|
20
27
|
|
|
21
28
|
if "%1" == "" (
|
|
22
29
|
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
@@ -20,6 +20,12 @@ rem ----------------------------------------------------------------------------
|
|
|
20
20
|
|
|
21
21
|
rem We need to use CXX lib additionally
|
|
22
22
|
set need_cxx_lib=yes
|
|
23
|
-
|
|
23
|
+
if not defined I_MPI_ROOT (
|
|
24
|
+
echo:
|
|
25
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
26
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
27
|
+
echo:
|
|
28
|
+
exit /b 255
|
|
29
|
+
)
|
|
24
30
|
rem Invoke C/C++ version of driver
|
|
25
31
|
call "%I_MPI_ROOT%\bin\mpicc.bat" %*
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpif77.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® Fortran Compiler.
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
28
|
) else (
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpif90.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® Fortran Compiler.
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
28
|
) else (
|
|
@@ -26,7 +26,7 @@ rem Keep the self name (as "filename.ext") in the variable before cycle. We will
|
|
|
26
26
|
set selfname=%~nx0
|
|
27
27
|
|
|
28
28
|
rem MPIVERSION is the version of the Intel^(R^) MPI Library that mpifc is intended for
|
|
29
|
-
set MPIVERSION=2021.
|
|
29
|
+
set MPIVERSION=2021.16
|
|
30
30
|
|
|
31
31
|
echo %selfname% for the Intel^(R^) MPI Library %MPIVERSION% for Windows*
|
|
32
32
|
echo Copyright Intel Corporation.
|
|
@@ -187,11 +187,6 @@ set PROFILE_POSTLIB=""
|
|
|
187
187
|
|
|
188
188
|
rem ------------------------------------------------------------------------
|
|
189
189
|
rem Argument processing.
|
|
190
|
-
rem This is somewhat awkward because of the handling of arguments within
|
|
191
|
-
rem the shell. We want to handle arguments that include spaces without
|
|
192
|
-
rem loosing the spacing (an alternative would be to use a more powerful
|
|
193
|
-
rem scripting language that would allow us to retain the array of values,
|
|
194
|
-
rem which the basic (rather than enhanced) Bourne shell does not.
|
|
195
190
|
rem
|
|
196
191
|
rem Look through the arguments for arguments that indicate compile only.
|
|
197
192
|
rem If these are *not* found, add the library options
|
|
@@ -17,7 +17,13 @@ rem mpiicc.bat
|
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® C++ Compiler.
|
|
18
18
|
rem This script sets some variable and the general script.
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
|
-
|
|
20
|
+
if not defined I_MPI_ROOT (
|
|
21
|
+
echo:
|
|
22
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
23
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
24
|
+
echo:
|
|
25
|
+
exit /b 255
|
|
26
|
+
)
|
|
21
27
|
if "%1" == "" (
|
|
22
28
|
call "%I_MPI_ROOT%\bin\mpicc.bat"
|
|
23
29
|
) else (
|
|
@@ -17,7 +17,13 @@ rem mpiicpc.bat
|
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® C++ Compiler.
|
|
18
18
|
rem This script sets some variable and the general script.
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
|
-
|
|
20
|
+
if not defined I_MPI_ROOT (
|
|
21
|
+
echo:
|
|
22
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
23
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
24
|
+
echo:
|
|
25
|
+
exit /b 255
|
|
26
|
+
)
|
|
21
27
|
if "%1" == "" (
|
|
22
28
|
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
23
29
|
) else (
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpicxx.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® LLVM-based C Compiler.
|
|
18
18
|
rem ----------------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
22
28
|
) else (
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpiicx.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® LLVM-based C Compiler.
|
|
18
18
|
rem ----------------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpicc.bat"
|
|
22
28
|
) else (
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpiifort.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® Fortran Compiler.
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
28
|
) else (
|
|
@@ -16,7 +16,13 @@ rem ----------------------------------------------------------------------------
|
|
|
16
16
|
rem mpiifx.bat
|
|
17
17
|
rem Simple script to compile and/or link MPI programs by Intel® LLVM-based Fortran Compiler.
|
|
18
18
|
rem -----------------------------------------------------------------------------------------
|
|
19
|
-
|
|
19
|
+
if not defined I_MPI_ROOT (
|
|
20
|
+
echo:
|
|
21
|
+
echo: ERROR: I_MPI_ROOT is not set. Please use setvars.bat script to setup environment.
|
|
22
|
+
echo: Try '[install-dir]\setvars.bat --help' for help.
|
|
23
|
+
echo:
|
|
24
|
+
exit /b 255
|
|
25
|
+
)
|
|
20
26
|
if "%1" == "" (
|
|
21
27
|
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
28
|
) else (
|