Skip to content

Commit 7842909

Browse files
author
Ralph Castain
authored
Merge pull request #5857 from rhc54/topic/plat
Add intel/bend platform file
2 parents 925edf3 + 9520908 commit 7842909

File tree

2 files changed

+103
-0
lines changed

2 files changed

+103
-0
lines changed

contrib/platform/intel/bend/ubuntu

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
enable_orterun_prefix_by_default=yes
2+
enable_mpi_thread_multiple=no
3+
enable_mem_debug=no
4+
enable_mem_profile=no
5+
enable_debug_symbols=yes
6+
enable_binaries=yes
7+
enable_heterogeneous=no
8+
enable_picky=yes
9+
enable_debug=yes
10+
enable_shared=yes
11+
enable_static=no
12+
enable_memchecker=no
13+
enable_ipv6=no
14+
enable_mpi_fortran=no
15+
enable_mpi_cxx=no
16+
enable_mpi_cxx_seek=no
17+
enable_cxx_exceptions=no
18+
enable_mpi_java=no
19+
enable_io_romio=no
20+
enable_contrib_no_build=libnbc
21+
enable_install_libpmix=yes
22+
with_memory_manager=no
23+
with_tm=no
24+
with_psm=no
25+
with_psm2=no
26+
with_devel_headers=yes
27+
with_libfabric=no
28+
with_portals=no
29+
with_valgrind=no
30+
if [ -n "$SLURMHOME" ] ; then
31+
with_slurm=$SLURMHOME
32+
with_pmi=$SLURMHOME
33+
else
34+
with_slurm=no
35+
fi
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#
2+
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
3+
# University Research and Technology
4+
# Corporation. All rights reserved.
5+
# Copyright (c) 2004-2005 The University of Tennessee and The University
6+
# of Tennessee Research Foundation. All rights
7+
# reserved.
8+
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9+
# University of Stuttgart. All rights reserved.
10+
# Copyright (c) 2004-2005 The Regents of the University of California.
11+
# All rights reserved.
12+
# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
13+
# Copyright (c) 2018 Intel, Inc. All rights reserved.
14+
# $COPYRIGHT$
15+
#
16+
# Additional copyrights may follow
17+
#
18+
# $HEADER$
19+
#
20+
21+
# This is the default system-wide MCA parameters defaults file.
22+
# Specifically, the MCA parameter "mca_param_files" defaults to a
23+
# value of
24+
# "$HOME/.openmpi/mca-params.conf:$sysconf/openmpi-mca-params.conf"
25+
# (this file is the latter of the two). So if the default value of
26+
# mca_param_files is not changed, this file is used to set system-wide
27+
# MCA parameters. This file can therefore be used to set system-wide
28+
# default MCA parameters for all users. Of course, users can override
29+
# these values if they want, but this file is an excellent location
30+
# for setting system-specific MCA parameters for those users who don't
31+
# know / care enough to investigate the proper values for them.
32+
33+
# Note that this file is only applicable where it is visible (in a
34+
# filesystem sense). Specifically, MPI processes each read this file
35+
# during their startup to determine what default values for MCA
36+
# parameters should be used. mpirun does not bundle up the values in
37+
# this file from the node where it was run and send them to all nodes;
38+
# the default value decisions are effectively distributed. Hence,
39+
# these values are only applicable on nodes that "see" this file. If
40+
# $sysconf is a directory on a local disk, it is likely that changes
41+
# to this file will need to be propagated to other nodes. If $sysconf
42+
# is a directory that is shared via a networked filesystem, changes to
43+
# this file will be visible to all nodes that share this $sysconf.
44+
45+
# The format is straightforward: one per line, mca_param_name =
46+
# rvalue. Quoting is ignored (so if you use quotes or escape
47+
# characters, they'll be included as part of the value). For example:
48+
49+
# Disable run-time MPI parameter checking
50+
# mpi_param_check = 0
51+
52+
# Note that the value "~/" will be expanded to the current user's home
53+
# directory. For example:
54+
55+
# Change component loading path
56+
# component_path = /usr/local/lib/openmpi:~/my_openmpi_components
57+
58+
# See "ompi_info --param all all" for a full listing of Open MPI MCA
59+
# parameters available and their default values.
60+
#
61+
62+
# Basic behavior to smooth startup
63+
mca_base_component_show_load_errors = 1
64+
orte_abort_timeout = 10
65+
hwloc_base_mem_bind_failure_action = silent
66+
oob=^ud
67+
btl=self,vader,tcp
68+
btl_tcp_if_include=enp0s3

0 commit comments

Comments
 (0)