impi-devel 2021.15.0__py2.py3-none-manylinux_2_28_x86_64.whl → 2021.16.0__py2.py3-none-manylinux_2_28_x86_64.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.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpif77 +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpif90 +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpigcc +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpigxx +1 -1
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiicpx +14 -6
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiicx +14 -5
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiifx +17 -5
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/include/mpi.h +459 -358
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/include/mpif.h +9 -3
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/opt/mpi/bin/mpiptx +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/third-party-programs.txt +1 -1
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.0.dist-info}/METADATA +2 -2
- impi_devel-2021.16.0.dist-info/RECORD +25 -0
- impi_devel-2021.15.0.dist-info/RECORD +0 -25
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpicc +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpicxx +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpifc +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiicc +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiicpc +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/bin/mpiifort +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/include/mpicxx.h +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/include/mpio.h +0 -0
- {impi_devel-2021.15.0.data → impi_devel-2021.16.0.data}/data/share/doc/mpi/licensing/license.txt +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.0.dist-info}/LICENSE.txt +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.0.dist-info}/WHEEL +0 -0
- {impi_devel-2021.15.0.dist-info → impi_devel-2021.16.0.dist-info}/top_level.txt +0 -0
|
@@ -129,7 +129,7 @@ MPILIBNAME="mpi"
|
|
|
129
129
|
MPICXXLIBNAME="mpicxx"
|
|
130
130
|
|
|
131
131
|
# MPIVERSION is the version of the Intel(R) MPI Library that mpiicpc is intended for
|
|
132
|
-
MPIVERSION="2021.
|
|
132
|
+
MPIVERSION="2021.16"
|
|
133
133
|
|
|
134
134
|
# Internal variables
|
|
135
135
|
# Show is set to echo to cause the compilation command to be echoed instead
|
|
@@ -199,6 +199,7 @@ fi
|
|
|
199
199
|
# If these are *not* found, add the library options
|
|
200
200
|
|
|
201
201
|
linking=yes
|
|
202
|
+
verbose=no
|
|
202
203
|
allargs=""
|
|
203
204
|
for arg in "$@" ; do
|
|
204
205
|
# Set addarg to no if this arg should be ignored by the C compiler
|
|
@@ -273,13 +274,18 @@ for arg in "$@" ; do
|
|
|
273
274
|
;;
|
|
274
275
|
-v)
|
|
275
276
|
# Pass this argument to the compiler as well.
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
277
|
+
verbose=yes
|
|
278
|
+
if [ "$#" -eq 1 ]; then
|
|
279
|
+
linking=no
|
|
280
|
+
fi
|
|
279
281
|
;;
|
|
280
282
|
-V)
|
|
281
283
|
# Pass this argument to the compiler to query the compiler version.
|
|
282
|
-
|
|
284
|
+
if [ "$#" -eq 1 ]; then
|
|
285
|
+
linking=no
|
|
286
|
+
fi
|
|
287
|
+
echo "$(basename $0) for the Intel(R) MPI Library $MPIVERSION for Linux*"
|
|
288
|
+
echo "Copyright Intel Corporation."
|
|
283
289
|
;;
|
|
284
290
|
-profile=*)
|
|
285
291
|
# Pass the name of a profiling configuration. As
|
|
@@ -543,6 +549,9 @@ if [ "$linking" = yes ] ; then
|
|
|
543
549
|
if [ "$Show" = echo ] ; then
|
|
544
550
|
echo $cmd_line
|
|
545
551
|
else
|
|
552
|
+
if [ "$verbose" = yes ] ; then
|
|
553
|
+
echo mpiicpx generated: $cmd_line
|
|
554
|
+
fi
|
|
546
555
|
eval `echo $cmd_line`
|
|
547
556
|
fi
|
|
548
557
|
rc=$?
|
|
@@ -562,4 +571,3 @@ else
|
|
|
562
571
|
fi
|
|
563
572
|
|
|
564
573
|
exit $rc
|
|
565
|
-
|
|
@@ -131,7 +131,7 @@ LDFLAGS="-ldl"
|
|
|
131
131
|
MPILIBNAME="mpi"
|
|
132
132
|
|
|
133
133
|
# MPIVERSION is the version of the MPICH2 library that mpicc is intended for
|
|
134
|
-
MPIVERSION="2021.
|
|
134
|
+
MPIVERSION="2021.16"
|
|
135
135
|
#
|
|
136
136
|
# Internal variables
|
|
137
137
|
# Show is set to echo to cause the compilation command to be echoed instead
|
|
@@ -143,6 +143,7 @@ handle_executable=
|
|
|
143
143
|
executable=a.out
|
|
144
144
|
ilp64=no
|
|
145
145
|
no_rpath=no
|
|
146
|
+
verbose=no
|
|
146
147
|
#
|
|
147
148
|
# End of initialization of variables
|
|
148
149
|
#---------------------------------------------------------------------
|
|
@@ -263,13 +264,18 @@ for arg in "$@" ; do
|
|
|
263
264
|
;;
|
|
264
265
|
-v)
|
|
265
266
|
# Pass this argument to the compiler as well.
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
267
|
+
verbose=yes
|
|
268
|
+
if [ "$#" -eq 1 ]; then
|
|
269
|
+
linking=no
|
|
270
|
+
fi
|
|
269
271
|
;;
|
|
270
272
|
-V)
|
|
271
273
|
# Pass this argument to the compiler to query the compiler version.
|
|
272
|
-
|
|
274
|
+
if [ "$#" -eq 1 ]; then
|
|
275
|
+
linking=no
|
|
276
|
+
fi
|
|
277
|
+
echo "$(basename $0) for the Intel(R) MPI Library $MPIVERSION for Linux*"
|
|
278
|
+
echo "Copyright Intel Corporation."
|
|
273
279
|
;;
|
|
274
280
|
-profile=*)
|
|
275
281
|
# Pass the name of a profiling configuration. As
|
|
@@ -531,6 +537,9 @@ if [ "$linking" = yes ] ; then
|
|
|
531
537
|
if [ "$Show" = echo ] ; then
|
|
532
538
|
echo $cmd_line
|
|
533
539
|
else
|
|
540
|
+
if [ "$verbose" = yes ]; then
|
|
541
|
+
echo mpiicx generated: $cmd_line
|
|
542
|
+
fi
|
|
534
543
|
eval $(echo $cmd_line)
|
|
535
544
|
fi
|
|
536
545
|
rc=$?
|
|
@@ -147,7 +147,7 @@ LDFLAGS="-ldl"
|
|
|
147
147
|
MPILIBNAME="mpi"
|
|
148
148
|
|
|
149
149
|
# MPIVERSION is the version of the Intel(R) MPI Library for which mpiifort is intended
|
|
150
|
-
MPIVERSION="2021.
|
|
150
|
+
MPIVERSION="2021.16"
|
|
151
151
|
#
|
|
152
152
|
#
|
|
153
153
|
# Internal variables
|
|
@@ -161,6 +161,7 @@ executable=a.out
|
|
|
161
161
|
ilp64=no
|
|
162
162
|
no_ilp64=
|
|
163
163
|
no_rpath=no
|
|
164
|
+
verbose=no
|
|
164
165
|
#
|
|
165
166
|
# End of initialization of variables
|
|
166
167
|
#---------------------------------------------------------------------
|
|
@@ -290,13 +291,18 @@ for arg in "$@" ; do
|
|
|
290
291
|
;;
|
|
291
292
|
-v)
|
|
292
293
|
# Pass this argument to the compiler as well.
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
294
|
+
if [ "$#" -eq 1 ]; then
|
|
295
|
+
linking=no
|
|
296
|
+
fi
|
|
297
|
+
verbose=yes
|
|
296
298
|
;;
|
|
297
299
|
-V)
|
|
298
300
|
# Pass this argument to the compiler to query the compiler version.
|
|
299
|
-
|
|
301
|
+
echo "$(basename $0) for the Intel(R) MPI Library $MPIVERSION for Linux*"
|
|
302
|
+
echo "Copyright Intel Corporation."
|
|
303
|
+
if [ "$#" -eq 1 ]; then
|
|
304
|
+
linking=no
|
|
305
|
+
fi
|
|
300
306
|
;;
|
|
301
307
|
-profile=*)
|
|
302
308
|
# Pass the name of a profiling configuration. As
|
|
@@ -694,6 +700,9 @@ if [ "$linking" = yes ] ; then
|
|
|
694
700
|
if [ "$Show" = echo ] ; then
|
|
695
701
|
echo $cmd_line
|
|
696
702
|
else
|
|
703
|
+
if [ "$verbose" = yes ]; then
|
|
704
|
+
echo mpiifx generated: $cmd_line
|
|
705
|
+
fi
|
|
697
706
|
eval `echo $cmd_line`
|
|
698
707
|
fi
|
|
699
708
|
rc=$?
|
|
@@ -707,6 +716,9 @@ else
|
|
|
707
716
|
if [ "$Show" = echo ] ; then
|
|
708
717
|
echo $cmd_line
|
|
709
718
|
else
|
|
719
|
+
if [ "$verbose" = yes ]; then
|
|
720
|
+
echo mpiifx generated: $cmd_line
|
|
721
|
+
fi
|
|
710
722
|
eval `echo $cmd_line`
|
|
711
723
|
fi
|
|
712
724
|
rc=$?
|