Skip to content

Commit ae76346

Browse files
committed
NEWS: re-wrap for default emacs line wrapping
Signed-off-by: Jeff Squyres <[email protected]>
1 parent c9f9d89 commit ae76346

File tree

1 file changed

+51
-44
lines changed

1 file changed

+51
-44
lines changed

NEWS

Lines changed: 51 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -58,58 +58,65 @@ included in the vX.Y.Z section and be denoted as:
5858

5959
Bug fixes/minor improvements:
6060

61-
- Fix a problem with MPI_FILE_WRITE_SHARED when using MPI_MODE_APPEND and
62-
Open MPI's native MPI-IO implementation. Thanks to Nicolas Joly for
63-
reporting.
61+
- Fix a problem with MPI_FILE_WRITE_SHARED when using MPI_MODE_APPEND
62+
and Open MPI's native MPI-IO implementation. Thanks to Nicolas Joly
63+
for reporting.
6464
- Fix a typo in the MPI_WIN_GET_NAME man page. Thanks to Nicolas Joly
6565
for reporting.
6666
- Fix a race condition with ORTE's session directory setup. Thanks to
6767
@tbj900 for reporting this issue.
68-
- Fix a deadlock issue arising from Open MPI's approach to catching calls to
69-
munmap. Thanks to Paul Hargrove for reporting and helping to analyze this
70-
problem.
71-
- Fix a problem with PPC atomics which caused make check to fail unless builtin
72-
atomics configure option was enabled. Thanks to Orion Poplawski for reporting.
73-
- Fix a problem with use of x86_64 cpuid instruction which led to segmentation
74-
faults when Open MPI was configured with -O3 optimization. Thanks to Mark
75-
Santcroos for reporting this problem.
76-
- Fix a problem when using built in atomics configure options on PPC platforms
77-
when building 32 bit applications. Thanks to Paul Hargrove for reporting.
78-
- Fix a problem with building Open MPI against an external hwloc installation.
79-
Thanks to Orion Poplawski for reporting this issue.
80-
- Remove use of DATE in the message queue version string reported to debuggers to
81-
insure bit-wise reproducibility of binaries. Thanks to Alastair McKinstry
82-
for help in fixing this problem.
83-
- Fix a problem with early exit of a MPI process without calling MPI_FINALIZE
84-
or MPI_ABORT that could lead to job hangs. Thanks to Christof Koehler for
85-
reporting.
86-
- Fix a problem with forwarding of SIGTERM signal from mpirun to MPI processes
87-
in a job. Thanks to Noel Rycroft for reporting this problem
88-
- Plug some memory leaks in MPI_WIN_FREE discovered using Valgrind. Thanks
89-
to Joseph Schuchart for reporting.
90-
- Fix a problems MPI_NEIGHOR_ALLTOALL when using a communicator with an empty topology
91-
graph. Thanks to Daniel Ibanez for reporting.
92-
- Fix a typo in a PMIx component help file. Thanks to @njoly for reporting this.
93-
- Fix a problem with Valgrind false positives when using Open MPI's internal memchecker.
94-
Thanks to Yvan Fournier for reporting.
68+
- Fix a deadlock issue arising from Open MPI's approach to catching
69+
calls to munmap. Thanks to Paul Hargrove for reporting and helping
70+
to analyze this problem.
71+
- Fix a problem with PPC atomics which caused make check to fail
72+
unless builtin atomics configure option was enabled. Thanks to
73+
Orion Poplawski for reporting.
74+
- Fix a problem with use of x86_64 cpuid instruction which led to
75+
segmentation faults when Open MPI was configured with -O3
76+
optimization. Thanks to Mark Santcroos for reporting this problem.
77+
- Fix a problem when using built in atomics configure options on PPC
78+
platforms when building 32 bit applications. Thanks to Paul
79+
Hargrove for reporting.
80+
- Fix a problem with building Open MPI against an external hwloc
81+
installation. Thanks to Orion Poplawski for reporting this issue.
82+
- Remove use of DATE in the message queue version string reported to
83+
debuggers to insure bit-wise reproducibility of binaries. Thanks to
84+
Alastair McKinstry for help in fixing this problem.
85+
- Fix a problem with early exit of a MPI process without calling
86+
MPI_FINALIZE or MPI_ABORT that could lead to job hangs. Thanks to
87+
Christof Koehler for reporting.
88+
- Fix a problem with forwarding of SIGTERM signal from mpirun to MPI
89+
processes in a job. Thanks to Noel Rycroft for reporting this
90+
problem
91+
- Plug some memory leaks in MPI_WIN_FREE discovered using Valgrind.
92+
Thanks to Joseph Schuchart for reporting.
93+
- Fix a problems MPI_NEIGHOR_ALLTOALL when using a communicator with
94+
an empty topology graph. Thanks to Daniel Ibanez for reporting.
95+
- Fix a typo in a PMIx component help file. Thanks to @njoly for
96+
reporting this.
97+
- Fix a problem with Valgrind false positives when using Open MPI's
98+
internal memchecker. Thanks to Yvan Fournier for reporting.
9599
- Fix a problem with MPI_FILE_DELETE returning MPI_SUCCESS when
96100
deleting a non-existent file. Thanks to Wei-keng Liao for reporting.
97-
- Fix a problem with MPI_IMPROBE that could lead to hangs in subsequent MPI
98-
point to point or collective calls. Thanks to Chris Pattison for reporting.
99-
- Fix a problem when configure Open MPI for powerpc with --enable-mpi-cxx
100-
enabled. Thanks to Alastair McKinstry for reporting.
101-
- Fix a problem using MPI_IALLTOALL with MPI_IN_PLACE argument. Thanks to
102-
Chris Ward for reporting.
103-
- Fix a problem using MPI_RACCUMULATE with the Portals4 transport. Thanks to
104-
@PDeveze for reporting.
105-
- Fix an issue with static linking and duplicate symbols arising from PMIx
106-
Slurm components. Thanks to Limin Gu for reporting.
101+
- Fix a problem with MPI_IMPROBE that could lead to hangs in
102+
subsequent MPI point to point or collective calls. Thanks to Chris
103+
Pattison for reporting.
104+
- Fix a problem when configure Open MPI for powerpc with
105+
--enable-mpi-cxx enabled. Thanks to Alastair McKinstry for
106+
reporting.
107+
- Fix a problem using MPI_IALLTOALL with MPI_IN_PLACE argument.
108+
Thanks to Chris Ward for reporting.
109+
- Fix a problem using MPI_RACCUMULATE with the Portals4 transport.
110+
Thanks to @PDeveze for reporting.
111+
- Fix an issue with static linking and duplicate symbols arising from
112+
PMIx Slurm components. Thanks to Limin Gu for reporting.
107113
- Fix a problem when using MPI dynamic memory windows. Thanks to
108114
Christoph Niethammer for reporting.
109-
- Fix a problem with Open MPI's pkgconfig files. Thanks to Alastair McKinstry
110-
for reporting.
111-
- Fix a problem with MPI_IREDUCE when the same buffer is supplied for the
112-
send and recv buffer arguments. Thanks to Valentin Petrov for reporting.
115+
- Fix a problem with Open MPI's pkgconfig files. Thanks to Alastair
116+
McKinstry for reporting.
117+
- Fix a problem with MPI_IREDUCE when the same buffer is supplied for
118+
the send and recv buffer arguments. Thanks to Valentin Petrov for
119+
reporting.
113120
- Fix a problem with atomic operations on PowerPC. Thanks to Paul
114121
Hargrove for reporting.
115122

0 commit comments

Comments
 (0)