impi-devel 2021.13.1__py2.py3-none-win_amd64.whl → 2021.14.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.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpi/debug/impi.dll +0 -0
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicc.bat +35 -4
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicl.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpicxx.bat +1 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpif77.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpif90.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpifc.bat +8 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicc.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicpc.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicpx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiicx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiifort.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/bin/mpiifx.bat +2 -2
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpi.h +1145 -1079
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpicxx.h +4 -4
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/lib/impi.lib +0 -0
- impi_devel-2021.14.0.data/data/share/doc/mpi/licensing/license.txt +72 -0
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/METADATA +2 -2
- impi_devel-2021.14.0.dist-info/RECORD +24 -0
- impi_devel-2021.13.1.data/data/share/doc/mpi/licensing/license.txt +0 -334
- impi_devel-2021.13.1.dist-info/RECORD +0 -24
- {impi_devel-2021.13.1.data → impi_devel-2021.14.0.data}/data/Library/include/mpio.h +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.13.1.dist-info → impi_devel-2021.14.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.14
|
|
31
31
|
|
|
32
32
|
echo %selfname% for the Intel^(R^) MPI Library %MPIVERSION% for Windows*
|
|
33
33
|
echo Copyright Intel Corporation.
|
|
@@ -95,18 +95,48 @@ if NOT "%I_MPI_COMPILER_CONFIG_DIR%" == "" (
|
|
|
95
95
|
set I_MPI_CFGDIR=%I_MPI_COMPILER_CONFIG_DIR%
|
|
96
96
|
)
|
|
97
97
|
|
|
98
|
-
:: The
|
|
98
|
+
:: The default compiler is cl.exe. Here we get the full path to cl.exe
|
|
99
|
+
:: to avoid a binary hijacking vulnerability. To do that we use vswhere
|
|
100
|
+
:: if available, otherwise the VcToolsInstallDir env var.
|
|
101
|
+
set CC=
|
|
102
|
+
set CCname="cl.exe"
|
|
103
|
+
set InstallDir=
|
|
104
|
+
set Version=
|
|
105
|
+
set VsWhere="C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"
|
|
106
|
+
if exist "%VsWhere%" (
|
|
107
|
+
setlocal EnableDelayedExpansion
|
|
108
|
+
for /f "usebackq tokens=*" %%i in (`%VsWhere% -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath`) do (
|
|
109
|
+
set InstallDir=%%i
|
|
110
|
+
)
|
|
111
|
+
if NOT "%I_MPI_MSVC_VERSION%" == "" (
|
|
112
|
+
set Version=%I_MPI_MSVC_VERSION%
|
|
113
|
+
) else if exist "%InstallDir%\VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt" (
|
|
114
|
+
set /p Version=<"%InstallDir%\VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt"
|
|
115
|
+
set Version=!Version: =!
|
|
116
|
+
)
|
|
117
|
+
set CC="%InstallDir%\VC\Tools\MSVC\%Version%\bin\HostX64\x64\cl.exe"
|
|
118
|
+
set CCname="cl.exe"
|
|
119
|
+
setlocal DisableDelayedExpansion
|
|
120
|
+
) else (
|
|
121
|
+
set CC="%VCToolsInstallDir%\bin\Hostx64\x64\cl.exe"
|
|
122
|
+
set CCname="cl.exe"
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
:: The environment variables I_MPI_{CC,CXX} and MPICH_{CC,CXX} may
|
|
99
126
|
:: be used to override the default choice (the CC has highest priority).
|
|
100
|
-
set CC=cl.exe
|
|
101
127
|
if NOT "%I_MPI_CC%" == "" (
|
|
102
128
|
set CC=%I_MPI_CC%
|
|
129
|
+
set CCname=%CC%
|
|
103
130
|
) else if NOT "%MPICH_CC%" == "" (
|
|
104
131
|
set CC=%MPICH_CC%
|
|
132
|
+
set CCname=%CC%
|
|
105
133
|
)
|
|
106
134
|
if NOT "%I_MPI_CXX%" == "" (
|
|
107
135
|
set CC=%I_MPI_CXX%
|
|
136
|
+
set CCname=%CC%
|
|
108
137
|
) else if NOT "%MPICH_CXX%" == "" (
|
|
109
138
|
set CC=%MPICH_CXX%
|
|
139
|
+
set CCname=%CC%
|
|
110
140
|
)
|
|
111
141
|
|
|
112
142
|
:: The environment variables I_MPI_{CC,CXX}_PROFILE and MPI{CC,CXX}_RPOFILE
|
|
@@ -302,7 +332,6 @@ rem where CCname is the name of the compiler with all spaces replaced by hyphens
|
|
|
302
332
|
rem (e.g., "cc -64" becomes "cc--64", that file is sources, allowing other
|
|
303
333
|
rem changes to the compilation environment. See the variables used by the
|
|
304
334
|
rem script (defined above)
|
|
305
|
-
set CCname=%CC%
|
|
306
335
|
rem echo CCname=%CCname%
|
|
307
336
|
if EXIST "%I_MPI_CFGDIR%\mpicc-%CCname%.conf" (
|
|
308
337
|
call :CALL_CONF_FILE "%I_MPI_CFGDIR%\mpicc-%CCname%.conf"
|
|
@@ -460,6 +489,7 @@ rem set CC=%arg:~4%
|
|
|
460
489
|
rem -cc=* -config=*
|
|
461
490
|
if "%arg%" == "-cc" ( rem "-cc=*"
|
|
462
491
|
set CC=%_param: =%
|
|
492
|
+
set CCname=%CC%
|
|
463
493
|
set addarg=no
|
|
464
494
|
set param_was_processed=yes
|
|
465
495
|
goto END_OF_CASE
|
|
@@ -473,6 +503,7 @@ rem set CC=%arg:~4%
|
|
|
473
503
|
rem -cxx=* -config=*
|
|
474
504
|
if "%arg%" == "-cxx" ( rem "-cxx=*"
|
|
475
505
|
set CC=%_param: =%
|
|
506
|
+
set CCname=%CC%
|
|
476
507
|
set addarg=no
|
|
477
508
|
set param_was_processed=yes
|
|
478
509
|
set need_cxx_lib=yes
|
|
@@ -19,8 +19,8 @@ rem This script sets some variable and the general script.
|
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
20
|
|
|
21
21
|
if "%1" == "" (
|
|
22
|
-
|
|
22
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
23
23
|
) else (
|
|
24
|
-
|
|
24
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat" -cxx=cl %*
|
|
25
25
|
)
|
|
26
26
|
|
|
@@ -18,8 +18,8 @@ rem Simple script to compile and/or link MPI programs by Intel® Fortran Compile
|
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat" -fc=ifort %*
|
|
24
24
|
)
|
|
25
25
|
|
|
@@ -18,8 +18,8 @@ rem Simple script to compile and/or link MPI programs by Intel® Fortran Compile
|
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat" -fc=ifort %*
|
|
24
24
|
)
|
|
25
25
|
|
|
@@ -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.14
|
|
30
30
|
|
|
31
31
|
echo %selfname% for the Intel^(R^) MPI Library %MPIVERSION% for Windows*
|
|
32
32
|
echo Copyright Intel Corporation.
|
|
@@ -61,6 +61,7 @@ if "%fisrst_arg%" == "x" (
|
|
|
61
61
|
echo All other options will be passed to the compiler without changing.
|
|
62
62
|
echo ----------------------------------------------------------------------------
|
|
63
63
|
echo The following environment variables are used:
|
|
64
|
+
echo CMPLR_ROOT Intel^(R^) Compiler installation directory path
|
|
64
65
|
echo I_MPI_ROOT Intel^(R^) MPI Library installation directory path
|
|
65
66
|
echo I_MPI_{FC,F77,F90} or MPICH_{FC,F77,F90}
|
|
66
67
|
echo the path/name of the underlying compiler to be used.
|
|
@@ -73,6 +74,11 @@ if "%fisrst_arg%" == "x" (
|
|
|
73
74
|
exit /B 0
|
|
74
75
|
)
|
|
75
76
|
|
|
77
|
+
rem The CMPLR_ROOT should be defined by a installer
|
|
78
|
+
if "%CMPLR_ROOT%" == "" (
|
|
79
|
+
echo You have to source ^<Intel Compiler^>\bin\vars.bat
|
|
80
|
+
exit /B 1
|
|
81
|
+
)
|
|
76
82
|
rem The I_MPI_ROOT should be defined by a installer
|
|
77
83
|
if "%I_MPI_ROOT%" == "" (
|
|
78
84
|
echo You have to source ^<Intel MPI^>\bin\mpivars.bat
|
|
@@ -96,7 +102,7 @@ if NOT "%I_MPI_COMPILER_CONFIG_DIR%" == "" (
|
|
|
96
102
|
|
|
97
103
|
:: The environment variables I_MPI_{FC,F77,F90} and MPICH_{FC,F77,F90} may
|
|
98
104
|
:: be used to override the default choice (the FC has highest priority).
|
|
99
|
-
set FC=ifort.exe
|
|
105
|
+
set FC="%CMPLR_ROOT%\bin\ifort.exe"
|
|
100
106
|
if NOT "%I_MPI_F77%" == "" (
|
|
101
107
|
set FC=%I_MPI_F77%
|
|
102
108
|
) else if NOT "%MPICH_F77%" == "" (
|
|
@@ -19,8 +19,8 @@ rem This script sets some variable and the general script.
|
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
20
|
|
|
21
21
|
if "%1" == "" (
|
|
22
|
-
|
|
22
|
+
call "%I_MPI_ROOT%\bin\mpicc.bat"
|
|
23
23
|
) else (
|
|
24
|
-
|
|
24
|
+
call "%I_MPI_ROOT%\bin\mpicc.bat" -cc=icl %*
|
|
25
25
|
)
|
|
26
26
|
|
|
@@ -19,8 +19,8 @@ rem This script sets some variable and the general script.
|
|
|
19
19
|
rem ----------------------------------------------------------------------------
|
|
20
20
|
|
|
21
21
|
if "%1" == "" (
|
|
22
|
-
|
|
22
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
23
23
|
) else (
|
|
24
|
-
|
|
24
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat" -cxx=icl %*
|
|
25
25
|
)
|
|
26
26
|
|
|
@@ -18,7 +18,7 @@ rem Simple script to compile and/or link MPI programs by Intel® LLVM-based C Co
|
|
|
18
18
|
rem ----------------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpicxx.bat" -cxx=icpx %*
|
|
24
24
|
)
|
|
@@ -18,7 +18,7 @@ rem Simple script to compile and/or link MPI programs by Intel® LLVM-based C Co
|
|
|
18
18
|
rem ----------------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpicc.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpicc.bat" -cc=icx %*
|
|
24
24
|
)
|
|
@@ -18,8 +18,8 @@ rem Simple script to compile and/or link MPI programs by Intel® Fortran Compile
|
|
|
18
18
|
rem ----------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat" -fc=ifort %*
|
|
24
24
|
)
|
|
25
25
|
|
|
@@ -18,7 +18,7 @@ rem Simple script to compile and/or link MPI programs by Intel® LLVM-based For
|
|
|
18
18
|
rem -----------------------------------------------------------------------------------------
|
|
19
19
|
|
|
20
20
|
if "%1" == "" (
|
|
21
|
-
|
|
21
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat"
|
|
22
22
|
) else (
|
|
23
|
-
|
|
23
|
+
call "%I_MPI_ROOT%\bin\mpifc.bat" -fc=ifx %*
|
|
24
24
|
)
|