Blame CommonInstall/comp_delta_prereq_SLES151.pl

Packit 857059
#!/usr/bin/perl
Packit 857059
## BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
#
Packit 857059
# Copyright (c) 2015-2019, Intel Corporation
Packit 857059
#
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
#
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
#
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
Packit 857059
## END_ICS_COPYRIGHT8   ****************************************
Packit 857059
#
Packit 857059
## [ICS VERSION STRING: unknown]
Packit 857059
#use strict;
Packit 857059
##use Term::ANSIColor;
Packit 857059
##use Term::ANSIColor qw(:constants);
Packit 857059
##use File::Basename;
Packit 857059
##use Math::BigInt;
Packit 857059
#
Packit 857059
## ==========================================================================
Packit 857059
#
Packit 857059
#Installation Prequisites array for delta components
Packit 857059
my @opa_stack_prereq = (
Packit 857059
			"bash",
Packit 857059
			"kmod",
Packit 857059
			"rdma-core",
Packit 857059
			"rdma-ndd",
Packit 857059
			"systemd",
Packit 857059
			"coreutils",
Packit 857059
			"grep",
Packit 857059
			"libosmcomp4",
Packit 857059
			"libibmad5",
Packit 857059
			"libibumad3",
Packit 857059
			"rdma-core-devel",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'opa_stack_prereq'} = \@opa_stack_prereq;
Packit 857059
Packit 857059
my @intel_hfi_prereq = (
Packit 857059
			"glibc",
Packit 857059
			"libgcc_s1",
Packit 857059
			"bash",
Packit 857059
			"udev",
Packit 857059
			"libudev-devel",
Packit 857059
			"python-base",
Packit 857059
			"libedit0",
Packit 857059
			"libncurses6",
Packit 857059
			"libnuma1",
Packit 857059
			"irqbalance",
Packit 857059
			"libatomic1",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'intel_hfi_prereq'} = \@intel_hfi_prereq;
Packit 857059
Packit 857059
my @mvapich2_gcc_hfi_prereq = (
Packit 857059
			"bash",
Packit 857059
			"glibc",
Packit 857059
			"libz1",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'mvapich2_gcc_hfi_prereq'} = \@mvapich2_gcc_hfi_prereq;
Packit 857059
Packit 857059
my @mvapich2_intel_hfi_prereq = (
Packit 857059
			"bash",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'mvapich2_intel_hfi_prereq'} = \@mvapich2_intel_hfi_prereq;
Packit 857059
Packit 857059
my @openmpi_gcc_hfi_prereq = (
Packit 857059
			"glibc",
Packit 857059
			"bash",
Packit 857059
			"libpsm_infinipath1",
Packit 857059
			"pkg-config",
Packit 857059
			"libgcc_s1",
Packit 857059
			"libgfortran4",
Packit 857059
			"gcc-fortran",
Packit 857059
			"libgomp1",
Packit 857059
			"libibverbs1",
Packit 857059
			"libquadmath0",
Packit 857059
			"librdmacm1",
Packit 857059
			"libstdc++6",
Packit 857059
			"libz1",
Packit 857059
			"opensm-devel",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'openmpi_gcc_hfi_prereq'} = \@openmpi_gcc_hfi_prereq;
Packit 857059
Packit 857059
my @openmpi_intel_hfi_prereq = (
Packit 857059
			"bash",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'openmpi_intel_hfi_prereq'} = \@openmpi_intel_hfi_prereq;
Packit 857059
Packit 857059
my @mvapich2_prereq = (
Packit 857059
			"bash",
Packit 857059
			"libibverbs1",
Packit 857059
			"librdmacm1",
Packit 857059
			"glibc",
Packit 857059
			"libz1",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'mvapich2_prereq'} = \@mvapich2_prereq;
Packit 857059
Packit 857059
my @openmpi_prereq = (
Packit 857059
			"glibc",
Packit 857059
			"bash",
Packit 857059
			"libz1",
Packit 857059
			"pkg-config",
Packit 857059
			"libgcc_s1",
Packit 857059
			"libgfortran3",
Packit 857059
			"gcc-fortran",
Packit 857059
			"libgomp1",
Packit 857059
			"libibverbs1",
Packit 857059
			"libquadmath0",
Packit 857059
			"librdmacm1",
Packit 857059
			"libstdc++6",
Packit 857059
			"libz1",
Packit 857059
			"opensm-libs3",
Packit 857059
			"opensm-devel",
Packit 857059
			"mpi-selector",
Packit 857059
);
Packit 857059
$comp_prereq_hash{'openmpi_prereq'} = \@openmpi_prereq;