impi-devel 2021.14.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.0.data/data/bin/mpicc +81 -0
- impi_devel-2021.14.0.data/data/bin/mpicxx +81 -0
- impi_devel-2021.14.0.data/data/bin/mpif77 +740 -0
- impi_devel-2021.14.0.data/data/bin/mpif90 +921 -0
- impi_devel-2021.14.0.data/data/bin/mpifc +81 -0
- impi_devel-2021.14.0.data/data/bin/mpigcc +661 -0
- impi_devel-2021.14.0.data/data/bin/mpigxx +662 -0
- impi_devel-2021.14.0.data/data/bin/mpiicc +42 -0
- impi_devel-2021.14.0.data/data/bin/mpiicpc +42 -0
- impi_devel-2021.14.0.data/data/bin/mpiicpx +565 -0
- impi_devel-2021.14.0.data/data/bin/mpiicx +557 -0
- impi_devel-2021.14.0.data/data/bin/mpiifort +46 -0
- impi_devel-2021.14.0.data/data/bin/mpiifx +731 -0
- impi_devel-2021.14.0.data/data/include/mpi.h +3594 -0
- impi_devel-2021.14.0.data/data/include/mpicxx.h +2796 -0
- impi_devel-2021.14.0.data/data/include/mpif.h +633 -0
- impi_devel-2021.14.0.data/data/include/mpio.h +765 -0
- impi_devel-2021.14.0.data/data/share/doc/mpi/licensing/license.txt +72 -0
- impi_devel-2021.14.0.data/data/share/doc/mpi/licensing/third-party-programs.txt +1476 -0
- impi_devel-2021.14.0.dist-info/LICENSE.txt +25 -0
- impi_devel-2021.14.0.dist-info/METADATA +23 -0
- impi_devel-2021.14.0.dist-info/RECORD +24 -0
- impi_devel-2021.14.0.dist-info/WHEEL +6 -0
- impi_devel-2021.14.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#
|
|
3
|
+
# Copyright Intel Corporation.
|
|
4
|
+
#
|
|
5
|
+
# This software and the related documents are Intel copyrighted materials, and
|
|
6
|
+
# your use of them is governed by the express license under which they were
|
|
7
|
+
# provided to you (License). Unless the License provides otherwise, you may
|
|
8
|
+
# not use, modify, copy, publish, distribute, disclose or transmit this
|
|
9
|
+
# software or the related documents without Intel's prior written permission.
|
|
10
|
+
#
|
|
11
|
+
# This software and the related documents are provided as is, with no express
|
|
12
|
+
# or implied warranties, other than those that are expressly stated in the
|
|
13
|
+
# License.
|
|
14
|
+
#
|
|
15
|
+
|
|
16
|
+
default_compiler_name="gfortran"
|
|
17
|
+
user_set_compiler=0
|
|
18
|
+
|
|
19
|
+
#------------------------------------------------------------------------------
|
|
20
|
+
# Print mini-help if started without parameters
|
|
21
|
+
if [ -z "$1" ] ; then
|
|
22
|
+
echo "This script invokes an appropriate specialized FORTRAN MPI compiler driver."
|
|
23
|
+
echo "The following ways (priority order) can be used for changing default"
|
|
24
|
+
echo "compiler name (${default_compiler_name:?}):"
|
|
25
|
+
echo " 1. Command line option: -fc=<compiler_name>"
|
|
26
|
+
echo " 2. Environment variable: I_MPI_FC (current value '$I_MPI_FC')"
|
|
27
|
+
echo " 3. Environment variable: MPICH_FC (current value '$MPICH_FC')"
|
|
28
|
+
exit 0
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
#------------------------------------------------------------------------------
|
|
32
|
+
dir=$(dirname "$0")
|
|
33
|
+
compiler_name=${I_MPI_FC:-${MPICH_FC:-${default_compiler_name:?}}}
|
|
34
|
+
|
|
35
|
+
for arg in "$@" ; do
|
|
36
|
+
case $arg in
|
|
37
|
+
-fc=*)
|
|
38
|
+
compiler_name=`echo A$arg | sed -e 's/A-fc=//g'`
|
|
39
|
+
user_set_compiler=1
|
|
40
|
+
;;
|
|
41
|
+
esac
|
|
42
|
+
done
|
|
43
|
+
|
|
44
|
+
compiler_short_name=`basename ${compiler_name:?}`
|
|
45
|
+
|
|
46
|
+
opt_args=""
|
|
47
|
+
if [ $# -eq 1 -a "$1" = "-v" ] ; then
|
|
48
|
+
opt_args="-nolinkage"
|
|
49
|
+
fi
|
|
50
|
+
|
|
51
|
+
if [ $user_set_compiler -eq 0 ]; then
|
|
52
|
+
# default compiler
|
|
53
|
+
if [ x"$opt_args" == x"" ]; then
|
|
54
|
+
"$dir"/mpif90 -fc=$compiler_name "$@"
|
|
55
|
+
else
|
|
56
|
+
"$dir"/mpif90 -fc=$compiler_name "$@" $opt_args
|
|
57
|
+
fi
|
|
58
|
+
else
|
|
59
|
+
# don't need to duplicate -cc since user already provided the option
|
|
60
|
+
if [ x"$opt_args" == x"" ]; then
|
|
61
|
+
case "${compiler_short_name}" in
|
|
62
|
+
ifort|ifx) "$dir"/mpiifx "$@" ;;
|
|
63
|
+
*g77*) "$dir"/mpif77 "$@" ;;
|
|
64
|
+
*gfortran*) "$dir"/mpif90 "$@" ;;
|
|
65
|
+
*)
|
|
66
|
+
echo "Error: unsupported compiler name '$compiler_name'."
|
|
67
|
+
echo "Check -fc=<compiler_name> command line option and I_MPI_FC='$I_MPI_FC' and MPICH_FC='$MPICH_FC' variables.";
|
|
68
|
+
exit 1 ;;
|
|
69
|
+
esac
|
|
70
|
+
else
|
|
71
|
+
case "${compiler_short_name}" in
|
|
72
|
+
ifort|ifx) "$dir"/mpiifx "$@" $opt_args ;;
|
|
73
|
+
*g77*) "$dir"/mpif77 "$@" $opt_args ;;
|
|
74
|
+
*gfortran*) "$dir"/mpif90 "$@" $opt_args ;;
|
|
75
|
+
*)
|
|
76
|
+
echo "Error: unsupported compiler name '$compiler_name'."
|
|
77
|
+
echo "Check -fc=<compiler_name> command line option and I_MPI_FC='$I_MPI_FC' and MPICH_FC='$MPICH_FC' variables.";
|
|
78
|
+
exit 1 ;;
|
|
79
|
+
esac
|
|
80
|
+
fi
|
|
81
|
+
fi
|