impi-devel 2021.14.2__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.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpif77 +1 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpif90 +1 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpigcc +1 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpigxx +1 -1
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiicpx +21 -13
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiicx +14 -10
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiifx +17 -10
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/include/mpi.h +514 -353
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/include/mpif.h +9 -3
- impi_devel-2021.16.0.data/data/opt/mpi/bin/mpiptx +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 +25 -0
- impi_devel-2021.14.2.dist-info/RECORD +0 -24
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpicc +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpicxx +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpifc +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiicc +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiicpc +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/bin/mpiifort +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/include/mpicxx.h +0 -0
- {impi_devel-2021.14.2.data → impi_devel-2021.16.0.data}/data/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
|
@@ -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
|
|
@@ -141,6 +141,7 @@ handle_executable=
|
|
|
141
141
|
executable=a.out
|
|
142
142
|
ilp64=no
|
|
143
143
|
no_rpath=no
|
|
144
|
+
cuda_sycl_opts=
|
|
144
145
|
# End of initialization of variables
|
|
145
146
|
#
|
|
146
147
|
#---------------------------------------------------------------------
|
|
@@ -193,16 +194,12 @@ fi
|
|
|
193
194
|
#
|
|
194
195
|
# ------------------------------------------------------------------------
|
|
195
196
|
# Argument processing.
|
|
196
|
-
# This is somewhat awkward because of the handling of arguments within
|
|
197
|
-
# the shell. We want to handle arguments that include spaces without
|
|
198
|
-
# loosing the spacing (an alternative would be to use a more powerful
|
|
199
|
-
# scripting language that would allow us to retain the array of values,
|
|
200
|
-
# which the basic (rather than enhanced) Bourne shell does not.
|
|
201
197
|
#
|
|
202
198
|
# Look through the arguments for arguments that indicate compile only.
|
|
203
199
|
# If these are *not* found, add the library options
|
|
204
200
|
|
|
205
201
|
linking=yes
|
|
202
|
+
verbose=no
|
|
206
203
|
allargs=""
|
|
207
204
|
for arg in "$@" ; do
|
|
208
205
|
# Set addarg to no if this arg should be ignored by the C compiler
|
|
@@ -277,13 +274,18 @@ for arg in "$@" ; do
|
|
|
277
274
|
;;
|
|
278
275
|
-v)
|
|
279
276
|
# Pass this argument to the compiler as well.
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
277
|
+
verbose=yes
|
|
278
|
+
if [ "$#" -eq 1 ]; then
|
|
279
|
+
linking=no
|
|
280
|
+
fi
|
|
283
281
|
;;
|
|
284
282
|
-V)
|
|
285
283
|
# Pass this argument to the compiler to query the compiler version.
|
|
286
|
-
|
|
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."
|
|
287
289
|
;;
|
|
288
290
|
-profile=*)
|
|
289
291
|
# Pass the name of a profiling configuration. As
|
|
@@ -293,6 +295,10 @@ for arg in "$@" ; do
|
|
|
293
295
|
addarg=no
|
|
294
296
|
# Loading the profConf file is handled below
|
|
295
297
|
;;
|
|
298
|
+
-enable-cuda-device-initiated)
|
|
299
|
+
cuda_sycl_opts="--ptxas-path=$I_MPI_ROOT/opt/mpi/bin/mpiptx"
|
|
300
|
+
addarg=no
|
|
301
|
+
;;
|
|
296
302
|
-help)
|
|
297
303
|
# Print mini-help if started without parameters
|
|
298
304
|
echo "Simple script to compile and/or link MPI programs."
|
|
@@ -539,10 +545,13 @@ else
|
|
|
539
545
|
rpath_opt="-Xlinker --enable-new-dtags -Xlinker -rpath -Xlinker \"${libdir}${MPILIBDIR}\" -Xlinker -rpath -Xlinker \"${libdir}\""
|
|
540
546
|
fi
|
|
541
547
|
if [ "$linking" = yes ] ; then
|
|
542
|
-
cmd_line="$CXX $CXXFLAGS $allargs -I\"${includedir}\" -L\"${libdir}${MPILIBDIR}\" -L\"${libdir}\" $rpath_opt $cxxlibs $mpilibs $I_MPI_OTHERLIBS $LDFLAGS $MPI_OTHERLIBS"
|
|
548
|
+
cmd_line="$CXX $CXXFLAGS $cuda_sycl_opts $allargs -I\"${includedir}\" -L\"${libdir}${MPILIBDIR}\" -L\"${libdir}\" $rpath_opt $cxxlibs $mpilibs $I_MPI_OTHERLIBS $LDFLAGS $MPI_OTHERLIBS"
|
|
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=$?
|
|
@@ -552,7 +561,7 @@ if [ "$linking" = yes ] ; then
|
|
|
552
561
|
$Show objcopy --add-gnu-debuglink=${executable}.dbg ${executable}
|
|
553
562
|
fi
|
|
554
563
|
else
|
|
555
|
-
cmd_line="$CXX $CXXFLAGS $allargs -I\"${includedir}\""
|
|
564
|
+
cmd_line="$CXX $CXXFLAGS $cuda_sycl_opts $allargs -I\"${includedir}\""
|
|
556
565
|
if [ "$Show" = echo ] ; then
|
|
557
566
|
$Show $cmd_line
|
|
558
567
|
else
|
|
@@ -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
|
#---------------------------------------------------------------------
|
|
@@ -194,11 +195,6 @@ fi
|
|
|
194
195
|
#
|
|
195
196
|
# ------------------------------------------------------------------------
|
|
196
197
|
# Argument processing.
|
|
197
|
-
# This is somewhat awkward because of the handling of arguments within
|
|
198
|
-
# the shell. We want to handle arguments that include spaces without
|
|
199
|
-
# loosing the spacing (an alternative would be to use a more powerful
|
|
200
|
-
# scripting language that would allow us to retain the array of values,
|
|
201
|
-
# which the basic (rather than enhanced) Bourne shell does not.
|
|
202
198
|
#
|
|
203
199
|
# Look through the arguments for arguments that indicate compile only.
|
|
204
200
|
# If these are *not* found, add the library options
|
|
@@ -268,13 +264,18 @@ for arg in "$@" ; do
|
|
|
268
264
|
;;
|
|
269
265
|
-v)
|
|
270
266
|
# Pass this argument to the compiler as well.
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
267
|
+
verbose=yes
|
|
268
|
+
if [ "$#" -eq 1 ]; then
|
|
269
|
+
linking=no
|
|
270
|
+
fi
|
|
274
271
|
;;
|
|
275
272
|
-V)
|
|
276
273
|
# Pass this argument to the compiler to query the compiler version.
|
|
277
|
-
|
|
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."
|
|
278
279
|
;;
|
|
279
280
|
-profile=*)
|
|
280
281
|
# Pass the name of a profiling configuration. As
|
|
@@ -536,6 +537,9 @@ if [ "$linking" = yes ] ; then
|
|
|
536
537
|
if [ "$Show" = echo ] ; then
|
|
537
538
|
echo $cmd_line
|
|
538
539
|
else
|
|
540
|
+
if [ "$verbose" = yes ]; then
|
|
541
|
+
echo mpiicx generated: $cmd_line
|
|
542
|
+
fi
|
|
539
543
|
eval $(echo $cmd_line)
|
|
540
544
|
fi
|
|
541
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
|
#---------------------------------------------------------------------
|
|
@@ -219,11 +220,6 @@ fi
|
|
|
219
220
|
#
|
|
220
221
|
# ------------------------------------------------------------------------
|
|
221
222
|
# Argument processing.
|
|
222
|
-
# This is somewhat awkward because of the handling of arguments within
|
|
223
|
-
# the shell. We want to handle arguments that include spaces without
|
|
224
|
-
# loosing the spacing (an alternative would be to use a more powerful
|
|
225
|
-
# scripting language that would allow us to retain the array of values,
|
|
226
|
-
# which the basic (rather than enhanced) Bourne shell does not.
|
|
227
223
|
#
|
|
228
224
|
# Look through the arguments for arguments that indicate compile only.
|
|
229
225
|
# If these are *not* found, add the library options
|
|
@@ -295,13 +291,18 @@ for arg in "$@" ; do
|
|
|
295
291
|
;;
|
|
296
292
|
-v)
|
|
297
293
|
# Pass this argument to the compiler as well.
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
294
|
+
if [ "$#" -eq 1 ]; then
|
|
295
|
+
linking=no
|
|
296
|
+
fi
|
|
297
|
+
verbose=yes
|
|
301
298
|
;;
|
|
302
299
|
-V)
|
|
303
300
|
# Pass this argument to the compiler to query the compiler version.
|
|
304
|
-
|
|
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
|
|
305
306
|
;;
|
|
306
307
|
-profile=*)
|
|
307
308
|
# Pass the name of a profiling configuration. As
|
|
@@ -699,6 +700,9 @@ if [ "$linking" = yes ] ; then
|
|
|
699
700
|
if [ "$Show" = echo ] ; then
|
|
700
701
|
echo $cmd_line
|
|
701
702
|
else
|
|
703
|
+
if [ "$verbose" = yes ]; then
|
|
704
|
+
echo mpiifx generated: $cmd_line
|
|
705
|
+
fi
|
|
702
706
|
eval `echo $cmd_line`
|
|
703
707
|
fi
|
|
704
708
|
rc=$?
|
|
@@ -712,6 +716,9 @@ else
|
|
|
712
716
|
if [ "$Show" = echo ] ; then
|
|
713
717
|
echo $cmd_line
|
|
714
718
|
else
|
|
719
|
+
if [ "$verbose" = yes ]; then
|
|
720
|
+
echo mpiifx generated: $cmd_line
|
|
721
|
+
fi
|
|
715
722
|
eval `echo $cmd_line`
|
|
716
723
|
fi
|
|
717
724
|
rc=$?
|