Skip to content

Commit 8d972bd

Browse files
committed
trivial: remove whitespace at end of lines
No code or logic changes Signed-off-by: Jeff Squyres <[email protected]>
1 parent 661e257 commit 8d972bd

File tree

283 files changed

+1321
-1323
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+1321
-1323
lines changed

.github/workflows/compile-ze.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
run: |
1111
sudo apt update
1212
sudo apt install -y --no-install-recommends wget lsb-core software-properties-common gpg curl cmake git
13-
- name: Build OneAPI ZE
13+
- name: Build OneAPI ZE
1414
run: |
1515
git clone https://github.com/oneapi-src/level-zero.git
1616
cd level-zero

.github/workflows/ompi_nvidia.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Running tests
3131
run: /start test
3232
clean:
33-
# always() should be used to run "clean" even when the workflow was canceled
33+
# always() should be used to run "clean" even when the workflow was canceled
3434
# ( in case of the right repository name)
3535
# The second condition doesn't work when the workflow was canceled
3636

config/aclocal_subcfg.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dnl to subconfigure as "precious" appropriately. The precious variable
99
dnl can be created in the following ways:
1010
dnl 1) implicit declaration through use of autoconf macros, like
1111
dnl AC_PROG_CC (declares CC/CFLAGS/CPPFLAGS/LIBS/LDFLAGS), or
12-
dnl AC_PROG_F77 (declares F77/FFLAGS/FLIBS) ...
12+
dnl AC_PROG_F77 (declares F77/FFLAGS/FLIBS) ...
1313
dnl which are in turns invoked by other subconfigure.
1414
dnl When in doubt, check "ac_precious_var" in the calling configure.
1515
dnl 2) explicit "precious" declaration through AC_ARG_VAR.
@@ -93,7 +93,7 @@ AC_DEFUN([PAC_CONFIG_SUBDIR_ARGS],[
9393
case $pac_arg in
9494
*\'*) pac_arg=`AS_ECHO(["$pac_arg"]) | sed "s/'/'\\\\\\\\''/g"` ;;
9595
esac
96-
AS_VAR_APPEND([pac_sub_configure_args], [" '$pac_arg'"])
96+
AS_VAR_APPEND([pac_sub_configure_args], [" '$pac_arg'"])
9797
fi ;;
9898
esac
9999
done

config/extract-3rd-party-configure.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ ($)
141141
$option_name = $1;
142142

143143
# Skip anything excluded
144-
if( exists($skip_options{$option_name}) &&
144+
if( exists($skip_options{$option_name}) &&
145145
($skip_options{$option_name} eq $OPTION_ALL_MARKER || lc($skip_options{$option_name}) eq $project_name_lc) ) {
146146
if( !$list_only && !$quiet_arg) {
147147
print "# Warning: Excluded: $option_name\n";

config/opal_setup_wrappers.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ AC_DEFUN([OPAL_SETUP_RUNPATH],[
270270
LDFLAGS="$LDFLAGS_save ${wl_fc}--enable-new-dtags"
271271
AC_LANG_PUSH([Fortran])
272272
AC_MSG_CHECKING([if Fortran linker supports RUNPATH])
273-
AC_LINK_IFELSE([AC_LANG_SOURCE([[program test
273+
AC_LINK_IFELSE([AC_LANG_SOURCE([[program test
274274
end program]])],
275275
[runpath_fc_args="${wl_fc}--enable-new-dtags"
276276
AC_MSG_RESULT([yes (-Wl,--enable-new-dtags)])],

contrib/amca-param-sets/ft-mpi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# $HEADER$
1010
#
1111
# An Aggregate MCA Parameter Set to setup an environment that can support
12-
# User-Level Failure Mitigation (ULFM) fault tolerance (must also be
12+
# User-Level Failure Mitigation (ULFM) fault tolerance (must also be
1313
# compiled in with --with-ft=mpi).
1414
#
1515
# Usage:

contrib/git-clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Additional copyrights may follow
66
#
77
# $HEADER$
8-
#
8+
#
99
# Trivial helper script to git clean a tree and all of its submodules.
1010

1111
set -euo pipefail

docs/app-debug/memchecker.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ did not configure and install Open MPI correctly.
113113
Running an Open MPI Application with Memchecker
114114
-----------------------------------------------
115115

116-
After Open MPI was built and installed with Memchecker support,
116+
After Open MPI was built and installed with Memchecker support,
117117
simply run your application with Valgrind, e.g.:
118118

119119
.. code-block:: sh

docs/app-debug/mpir-tools.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Here is an example shell script that builds the MPIR shim module
6969
echo "Set the env variable PMIX_ROOT to the location of your PMIx installation"
7070
exit 1
7171
fi
72-
72+
7373
./autogen.sh
7474
./configure --prefix=$HOME/MPIR --with-pmix=$PMIX_ROOT
7575
make
@@ -118,7 +118,7 @@ your environment.
118118
# Test the shim in proxy mode.
119119
# Manually verify that displayed process mapping is correct.
120120
$BUILD_DIR/test/mpirshim_test mpirun -n 2 ./testprog
121-
121+
122122
# Launch mpirun for attach test and get its PID
123123
mpirun -n 2 ./testprog &
124124
PID=$!

docs/app-debug/serial-debug.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Attach to Individual Running MPI processes
1212
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1313

1414
You can use multiple invocations of a serial debugger to individually
15-
attach to every application process, or to a subset of application process.
15+
attach to every application process, or to a subset of application process.
1616

1717
If you are using ``gdb``, then you would log onto the nodes where you want
1818
to debug application processes and invoke gdb specifying the

0 commit comments

Comments
 (0)