Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 4834a14

Browse files
committed
Merge pull request #618 from jsquyres/pr/v1.10.1/start-the-release-engines
v1.10.1: start the release engines
2 parents b95ef2b + 50c1879 commit 4834a14

File tree

2 files changed

+58
-7
lines changed

2 files changed

+58
-7
lines changed

NEWS

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,51 @@ included in the vX.Y.Z section and be denoted as:
5353
(** also appeared: A.B.C) -- indicating that this item was previously
5454
included in release version vA.B.C.
5555

56+
1.10.1
57+
------
58+
59+
- No longer probe for PCI topology on Solaris (unless running as root).
60+
- Fix for Intel Parallel Studio 2016 ifort partial support of the
61+
!GCC$ pragma. Thanks to Fabrice Roy for reporting the problem.
62+
- Bunches of Coverity / static analysis fixes.
63+
- Fixed ROMIO to look for lstat in <sys/stat.h>. Thanks to William
64+
Throwe for submitting the patch both upstream and to Open MPI.
65+
- Fixed minor memory leak when attempting to open plugins.
66+
- Fixed type in MPI_IBARRIER C prototype. Thanks to Harald Servat for
67+
reporting the issue.
68+
- Add missing man pages for MPI_WIN_CREATE_DYNAMIC, MPI_WIN_ATTACH,
69+
MPI_WIN_DETACH, MPI_WIN_ALLOCATE, MPI_WIN_ALLOCATE_SHARED.
70+
- When mpirun-launching new applications, only close file descriptors
71+
that are actually open (resulting in a faster launch in some
72+
environments).
73+
- Fix "test ==" issues in Open MPI's configure script. Thank to Kevin
74+
Buckley for pointing out the issue.
75+
- Fix performance issue in usnic BTL: ensure progress thread is
76+
throttled back to not aggressively steal CPU cycles.
77+
- Fix cache line size detection on POWER architectures.
78+
- Add missing #include in a few places. Thanks to Orion Poplawski for
79+
supplying the patch.
80+
- When OpenSHMEM building is disabled, no longer install its header
81+
files, help files, or man pages.
82+
- Fix mpi_f08 implementations of MPI_COMM_SET_INFO, and profiling
83+
versions of MPI_BUFFER_DETACH, MPI_WIN_ALLOCATE,
84+
MPI_WIN_ALLOCATE_SHARED, MPI_WTICK, and MPI_WTIME.
85+
- Add orte_rmaps_dist_device MCA param, allowing users to map near a
86+
specific device.
87+
- Various updates/fixes to the openib BTL.
88+
- Add missing defaults for the Mellanox ConnectX 3 card to the openib BTL.
89+
- Minor bug fixes in the OFI MTL.
90+
- Various updates to Mellanox's hcoll and FCA components.
91+
- Add OpenSHMEM man pages. Thanks to Tony Curtis for sharing the man
92+
pages files from openshmem.org.
93+
- Add missing "const" attributes to MPI_COMPARE_AND_SWAP,
94+
MPI_FETCH_AND_OP, MPI_RACCUMULATE, and MPI_WIN_DETACH prototypes.
95+
Thanks to Michael Knobloch and Takahiro Kawashima for bringing this
96+
to our attention.
97+
- Fix linking issues on some platforms (e.g., SLES 12).
98+
- Fix hang on some corner cases when MPI applications abort.
99+
100+
56101
1.10.0
57102
------
58103
** NOTE: The v1.10.0 release marks the transition to Open MPI's new

VERSION

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ release=1
2424
# requirement is that it must be entirely printable ASCII characters
2525
# and have no white space.
2626

27-
greek=a1
27+
greek=rc1
2828

2929
# If repo_rev is empty, then the repository version number will be
3030
# obtained during "make dist" via the "git describe --tags --always"
@@ -82,16 +82,22 @@ date="Unreleased developer copy"
8282
# Version numbers are described in the Libtool current:revision:age
8383
# format.
8484

85-
libmpi_so_version=12:0:0
85+
libmpi_so_version=12:1:0
86+
# libmpi changed
8687
libmpi_cxx_so_version=2:3:1
8788
libmpi_mpifh_so_version=12:0:0
88-
libmpi_usempi_tkr_so_version=5:0:4
89+
libmpi_usempi_tkr_so_version=5:1:4
90+
# libmpi_usempi_tkr changed
8991
libmpi_usempi_ignore_tkr_so_version=6:0:0
90-
libmpi_usempif08_so_version=11:0:0
91-
libopen_rte_so_version=12:0:0
92-
libopen_pal_so_version=13:0:0
92+
libmpi_usempif08_so_version=11:1:0
93+
# libmpi_usempif08 changed
94+
libopen_rte_so_version=12:1:0
95+
# libopen_rte changed
96+
libopen_pal_so_version=13:1:0
97+
# libopen_pal changed
9398
libmpi_java_so_version=3:0:2
94-
liboshmem_so_version=8:0:0
99+
liboshmem_so_version=8:1:0
100+
# liboshmem changed
95101

96102
# "Common" components install standalone libraries that are run-time
97103
# linked by one or more components. So they need to be versioned as

0 commit comments

Comments
 (0)