Skip to content

Commit 64d105e

Browse files
luzpazjsquyres
authored andcommitted
Fix remaining typos
Found via `codespell -q 3 -S ./3rd-party,./docs/news -L bloc,chello,childs,connexion,fo,improbe,inout,iput,mmaped,msdos,ro,scoll,sentinal,siz,upto,warmup` Signed-off-by: luz paz <luzpaz@github.com>
1 parent dfd100a commit 64d105e

30 files changed

+46
-46
lines changed

autogen.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ sub patch_autotools_output {
984984
$c =~ s/$search_string/$replace_string/;
985985

986986
# Newer versions of Libtool have the previous patch already. Therefore,
987-
# we add the support for convenience libraries separetly
987+
# we add the support for convenience libraries separately
988988
my $search_string = "whole_archive_flag_spec${tag}=" . '\n\s+' .
989989
"tmp_sharedflag='--shared' ;;" . '\n\s+' .
990990
'nagfor\052.*# NAGFOR 5.3\n\s+' .
@@ -1344,7 +1344,7 @@ sub replace_config_sub_guess {
13441344

13451345
#---------------------------------------------------------------------------
13461346

1347-
# Verify that we're in the OMPI root directorty by checking for a token file.
1347+
# Verify that we're in the OMPI root directory by checking for a token file.
13481348

13491349
my_die "Not at the root directory of an OMPI source tree"
13501350
if (! -f "config/opal_mca.m4");

config/ompi_setup_mpi_fortran.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ end type test_mpi_handle],
644644
AC_SUBST(OMPI_FC_ABSOLUTE)
645645
AC_DEFINE_UNQUOTED(OMPI_FC, ["$OMPI_FC"], [Underlying Fortran compiler])
646646
AC_DEFINE_UNQUOTED(OMPI_FC_ABSOLUTE, ["$OMPI_FC_ABSOLUTE"],
647-
[Absolutey path to the underlying Fortran compiler found by configure])
647+
[Absolute path to the underlying Fortran compiler found by configure])
648648

649649
# These go into ompi/info/param.c
650650
AC_DEFINE_UNQUOTED([OMPI_FORTRAN_BUILD_SIZEOF],

config/opal_mca.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ AC_MSG_ERROR([*** $2 component $3 was supposed to be direct-called, but
872872
# MCA_PROCESS_DEAD_COMPONENT(project_name (1), framework_name (2),
873873
# component_name (3))
874874
# ----------------------------------------------------------------
875-
# Finall setup work for a component that can not be built. Do the
875+
# Final setup work for a component that can not be built. Do the
876876
# last minute checks to make sure the user isn't doing something
877877
# stupid.
878878
#

config/opal_setup_ft.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ dnl
2121
# - LAM (synonym for 'cr' currently)
2222
# - cr
2323
# /* General FT sections */
24-
# #if OPAL_ENABLE_FT == 0 /* FT Disabled globaly */
25-
# #if OPAL_ENABLE_FT == 1 /* FT Enabled globaly */
24+
# #if OPAL_ENABLE_FT == 0 /* FT Disabled globally */
25+
# #if OPAL_ENABLE_FT == 1 /* FT Enabled globally */
2626
# /* ULFM Specific sections */
2727
# #if OPAL_ENABLE_FT_MPI == 0 /* FT ULFM Disabled */
2828
# #if OPAL_ENABLE_FT_MPI == 1 /* FT ULFM Enabled */

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ OPAL_CONFIGURE_SETUP
7777
opal_show_title "Configuring project_name_long"
7878
opal_show_subtitle "Prerequisites"
7979

80-
# compatability for oac_check_package
80+
# compatibility for oac_check_package
8181
m4_copy([OPAL_LOG_COMMAND], [OAC_LOG_COMMAND])
8282
m4_copy([OPAL_LOG_MSG], [OAC_LOG_MSG])
8383
m4_copy([OPAL_APPEND], [OAC_APPEND])
@@ -187,7 +187,7 @@ acversion=`grep "Generated by GNU Autoconf" $0 | head -n 1 | awk '{ print $6 }'`
187187
AC_MSG_RESULT([$acversion])
188188
AC_MSG_CHECKING([for bootstrap Automake version])
189189
AC_MSG_RESULT([$am__api_version])
190-
AC_MSG_CHECKING([for boostrap Libtool version])
190+
AC_MSG_CHECKING([for bootstrap Libtool version])
191191
ltversion=`grep VERSION= $srcdir/config/ltmain.sh | head -n 1 | cut -d= -f2`
192192
AC_MSG_RESULT([$ltversion])
193193

@@ -998,7 +998,7 @@ OPAL_CHECK_CUDA
998998
OPAL_CHECK_ROCM([opal_rocm],
999999
[opal_rocm_happy="yes"],
10001000
[opal_rocm_happy="no"])
1001-
OPAL_SUMMARY_ADD([Miscellaneous], [ROCm suport], [], [$opal_rocm_happy])
1001+
OPAL_SUMMARY_ADD([Miscellaneous], [ROCm support], [], [$opal_rocm_happy])
10021002

10031003
AS_IF([test "$OPAL_CUDA_SUPPORT" = "1" && test "$OPAL_ROCM_SUPPORT" = "1"],
10041004
[AC_MSG_WARN([Cannot support both CUDA and ROCm.])

docs/networking/cuda.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ GPUs that are the same distance away. This is dependent on having
235235
/**
236236
* Test program to show the use of hwloc to select the GPU closest to the CPU
237237
* that the MPI program is running on. Note that this works even without
238-
* any libpciacces or libpci support as it keys off the NVIDIA vendor ID.
238+
* any libpciaccess or libpci support as it keys off the NVIDIA vendor ID.
239239
* There may be other ways to implement this but this is one way.
240240
* January 10, 2014
241241
*/

docs/release-notes/compilers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Compiler Notes
182182
183183
* The Portland Group compilers prior to version 7.0 require the
184184
``-Msignextend`` compiler flag to extend the sign bit when converting
185-
from a shorter to longer integer. This is is different than other
185+
from a shorter to longer integer. This is different than other
186186
compilers (such as GNU). When compiling Open MPI with the Portland
187187
compiler suite, the following flags should be passed to Open MPI's
188188
``configure`` script:

examples/spc_example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
7070
MPI_Abort(MPI_COMM_WORLD, -1);
7171
}
7272

73-
/* Determine the MPI_T pvar indices for the OMPI_BYTES_SENT/RECIEVED_USER SPCs */
73+
/* Determine the MPI_T pvar indices for the OMPI_BYTES_SENT/RECEIVED_USER SPCs */
7474
index = -1;
7575
MPI_T_pvar_get_num(&num);
7676
for (i = 0; i < num; i++) {

ompi/communicator/comm_request.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
22
/*
33
* Copyright (c) 2013-2018 Los Alamos National Security, LLC. All rights
4-
* reseved.
4+
* reserved.
55
* Copyright (c) 2015 Research Organization for Information Science
66
* and Technology (RIST). All rights reserved.
77
* Copyright (c) 2004-2016 The University of Tennessee and The University

ompi/communicator/comm_request.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
22
/*
33
* Copyright (c) 2013-2016 Los Alamos National Security, LLC. All rights
4-
* reseved.
4+
* reserved.
55
* Copyright (c) 2021 Triad National Security, LLC. All rights
66
* reserved.
77
* $COPYRIGHT$

0 commit comments

Comments
 (0)