Skip to content

Commit 4d73a3f

Browse files
authored
Merge pull request #10160 from jsquyres/pr/master-to-main-rename
Rename relevant "master" references
2 parents eb87378 + 6845ac0 commit 4d73a3f

File tree

17 files changed

+30
-29
lines changed

17 files changed

+30
-29
lines changed

.ci/mellanox/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
trigger: none
22
pr:
3-
- master
3+
- main
44
- v*.*.x
55

66
pool:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ Developers who clone the Open MPI Git repository will not have the
2828
HTML documentation and man pages by default; it must be built.
2929
Instructions for how to build the Open MPI documentation can be found
3030
here:
31-
https://docs.open-mpi.org/en/master/developers/prerequisites.html#sphinx.
31+
https://docs.open-mpi.org/en/main/developers/prerequisites.html#sphinx.

contrib/annual-maintenance/convert-to-git.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ From Dave:
33
For fun, here's the Git version of the "AUTHORS with commits in the past year" part of your script:
44

55
----8<----
6-
savbu-usnic-a ~/g/ompi-svn-mirror git:master ❮❮❮ git log --all --since='1 year ago' --pretty=tformat:'%ae' | sort | uniq -c
6+
savbu-usnic-a ~/g/ompi-svn-mirror git:main ❮❮❮ git log --all --since='1 year ago' --pretty=tformat:'%ae' | sort | uniq -c
77
39 adrian@open-mpi-git-mirror.example.com
88
3 alex@open-mpi-git-mirror.example.com
99
5 alinas@open-mpi-git-mirror.example.com
@@ -40,7 +40,7 @@ savbu-usnic-a ~/g/ompi-svn-mirror git:master ❮❮❮ git log --all --since='1
4040

4141
And the "NO commits":
4242
----8<----
43-
savbu-usnic-a ~/g/ompi-svn-mirror git:master ❯❯❯ git log --all --since='1 year ago' --pretty=tformat:'%ae' | sort | uniq > /tmp/active ; git log --pretty=tformat:'%ae' --all | sort | uniq > /tmp/all ; diff -u
43+
savbu-usnic-a ~/g/ompi-svn-mirror git:main ❯❯❯ git log --all --since='1 year ago' --pretty=tformat:'%ae' | sort | uniq > /tmp/active ; git log --pretty=tformat:'%ae' --all | sort | uniq > /tmp/all ; diff -u
4444
/tmp/all /tmp/active | grep '^-[^-]'
4545
-abbyz@open-mpi-git-mirror.example.com
4646
-adi@open-mpi-git-mirror.example.com

contrib/check-owner.pl

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22
#
3-
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
3+
# Copyright (c) 2015-2022 Cisco Systems, Inc. All rights reserved
44
# Copyright (c) 2015 Los Alamos National Security, LLC. All rights reserved.
55
# $COPYRIGHT$
66
#
@@ -55,7 +55,7 @@ sub DebugDump {
5555
sub isTopDir {
5656
my ($d) = @_;
5757

58-
# master
58+
# main
5959
if (-f "$d/Makefile.ompi-rules") {
6060
return 1;
6161
}

contrib/clang-format-ompi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
echo "Running clang-format on code base..."
44

5-
files=($(git ls-tree -r master --name-only | grep -v -E '3rd-party/|contrib/' | grep -e '.*\.[ch]$' | xargs grep -E -L -- "-*- fortran -*-|-*- f90 -*-"))
5+
files=($(git ls-tree -r main --name-only | grep -v -E '3rd-party/|contrib/' | grep -e '.*\.[ch]$' | xargs grep -E -L -- "-*- fortran -*-|-*- f90 -*-"))
66

77
for file in "${files[@]}" ; do
88
if test "$1" = "-d" ; then

contrib/ompi-time.sh

100755100644
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Copyright (c) 2015 Mellanox Technologies, Inc.
44
# All rights reserved.
5+
# Copyright (c) 2022 Cisco Systems, Inc. All rights reserved
56
# $COPYRIGHT$
67
#
78
# Additional copyrights may follow
@@ -201,11 +202,11 @@ function do_checksync_mpisync() {
201202
if [ ! -e ${tooldir} ]; then
202203
mkdir -p ${tooldir}
203204
cd ${tooldir}
204-
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/master/ompi/tools/mpisync/mpigclock.c >> $logfile 2>&1
205-
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/master/ompi/tools/mpisync/mpigclock.h >> $logfile 2>&1
206-
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/master/ompi/tools/mpisync/hpctimer.c >> $logfile 2>&1
207-
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/master/ompi/tools/mpisync/hpctimer.h >> $logfile 2>&1
208-
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/master/ompi/tools/mpisync/sync.c >> $logfile 2>&1
205+
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/main/ompi/tools/mpisync/mpigclock.c >> $logfile 2>&1
206+
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/main/ompi/tools/mpisync/mpigclock.h >> $logfile 2>&1
207+
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/main/ompi/tools/mpisync/hpctimer.c >> $logfile 2>&1
208+
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/main/ompi/tools/mpisync/hpctimer.h >> $logfile 2>&1
209+
wget --no-check-certificate https://github.com/open-mpi/ompi/raw/main/ompi/tools/mpisync/sync.c >> $logfile 2>&1
209210
mpicc hpctimer.c mpigclock.c sync.c -o mpisync >> $logfile 2>&1
210211
fi
211212
if [ ! -e "$tooldir" ] || [ ! -f "$tooldir/mpisync" ]; then

docs/developers/gnu-autotools.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ to at least the versions listed below.
186186
- 2.4.6
187187
- 2.5.35
188188
- 4.2.0
189-
* - Git master
189+
* - Git main
190190
- 1.4.17
191191
- 2.69
192192
- 1.15

docs/features/ulfm.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -370,9 +370,9 @@ ULFM Standalone Release 2.1
370370

371371
This release is a bugfix and upstream parity upgrade. It improves
372372
stability, performance and is based on the most current Open MPI
373-
master (November 2018).
373+
main (November 2018).
374374

375-
* ULFM is now based upon Open MPI master branch (#37954b5f).
375+
* ULFM is now based upon Open MPI main branch (#37954b5f).
376376
* ULFM tuning MCA parameters are exposed by ``ompi_info``.
377377
* Fortran 90 bindings have been updated
378378
* Bugfixes:
@@ -389,10 +389,10 @@ master (November 2018).
389389
ULFM Standalone Release 2.0
390390
^^^^^^^^^^^^^^^^^^^^^^^^^^^
391391

392-
Focus has been toward integration with current Open MPI master
392+
Focus has been toward integration with current Open MPI main
393393
(November 2017), performance, and stability.
394394

395-
* ULFM is now based upon Open MPI master branch (#689f1be9). It will
395+
* ULFM is now based upon Open MPI main branch (#689f1be9). It will
396396
be regularly updated until it will eventually be merged.
397397
* Fault Tolerance is enabled by default and is controlled with MCA variables.
398398
* Added support for multithreaded modes (MPI_THREAD_MULTIPLE, etc.)
@@ -495,7 +495,7 @@ Binary Compatibility
495495
^^^^^^^^^^^^^^^^^^^^
496496

497497
ULFM Open MPI is binary compatible with any version of Open MPI
498-
compatible with the underlying Open MPI master branch or release (see
498+
compatible with the underlying Open MPI main branch or release (see
499499
the binary compatibility and version number section in the upstream
500500
Open MPI README). That is, applications compiled with a compatible
501501
Open MPI can run with the ULFM Open MPI ``mpirun`` and MPI

docs/man-openmpi/man3/MPI_Comm_rank.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ communicator's group. It is equivalent to accessing the communicator's
6464
group with :ref:`MPI_Comm_group`, computing the rank using :ref:`MPI_Group_rank`, and
6565
then freeing the temporary group via :ref:`MPI_Group_free`.
6666

67-
Many programs will be written with the master-slave model, where one
67+
Many programs will be written with the manager-worker model, where one
6868
process (such as the rank-zero process) will play a supervisory role,
6969
and the other processes will serve as compute nodes. In this framework,
7070
:ref:`MPI_Comm_size` and :ref:`MPI_Comm_rank` are useful for determining the roles of

docs/networking/cuda.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Open MPI offers two flavors of CUDA support:
2828
# configured with: --build=powerpc64le-redhat-linux-gnu --host=powerpc64le-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --disable-optimizations --disable-logging --disable-debug --disable-assertions --enable-mt --disable-params-check --enable-cma --without-cuda --without-gdrcopy --with-verbs --with-cm --with-knem --with-rdmacm --without-rocm --without-xpmem --without-ugni --without-java
2929
3030
If you need to build ucx yourself to include CUDA support, please
31-
see the UCX documentation for `building ucx with Open MPI: <https://openucx.readthedocs.io/en/master/running.html#openmpi-with-ucx>`_
31+
see the UCX documentation for `building ucx with Open MPI: <https://openucx.readthedocs.io/en/main/running.html#openmpi-with-ucx>`_
3232

3333
It should look something like:
3434

0 commit comments

Comments
 (0)