diff --git a/AUTHORS b/AUTHORS index 13afa1a4aca..34f2a92cae4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -24,6 +24,7 @@ AWS ParallelCluster user AWS ParallelCluster user AWS ParallelCluster user Benjamin Drung +Ben Lynam Ben Menadue Ben Turrubiates Ben Turrubiates @@ -36,6 +37,7 @@ Brian Li Casey Carter Chang Hyun Park Charles J Archer +Charles King Chenwei Zhang Chen Zhao Chien Tin Tung @@ -188,8 +190,10 @@ Sung-Eun Choi Sylvain Didelot Sylvain Didelot Thananon Patinyasakdikul +Theofilos Manitaras Thibault BREZILLON Thomas Smith +Tim Thompson Todd Rimmer Tony Zinger tonyzinger diff --git a/NEWS.md b/NEWS.md index bebbaff104d..a041625f5c5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -25,6 +25,7 @@ v1.15.0, Fri Apr 29, 2022 - Add new FI_PROTO_RXM_TCP for optimized rxm over tcp path ## EFA + - Added windows support through efawin (https://github.com/aws/efawin) - Added support of AWS neuron. - Added support of using gdrcopy to copy data from host to device. @@ -43,6 +44,7 @@ v1.15.0, Fri Apr 29, 2022 - New provider supporting Cornelis Networks Omni-path hardware ## PSM3 + - Updated psm3 to match IEFS 11.2.0.0 release - Added support for sockets (TCP/UDP) via a runtime selectable Hardware Abstraction Layer (HAL) @@ -135,8 +137,8 @@ v1.15.0, Fri Apr 29, 2022 - ubertest: Add GPU testing and validation support - Add HMEM options parsing support -v1.14.1, Fri Apr 22, 2022 -======================== +v1.14.1, Fri Apr 15, 2022 +========================= ## Core @@ -147,6 +149,11 @@ v1.14.1, Fri Apr 22, 2022 ## EFA +- Use non-shared buffer pool allocations to use MADV_DONTFORK safely +- Handle read completion properly for multi_recv +- Use shm's inject write when possible +- Support 0 byte read + ## RxD - Verify valid atomic size diff --git a/configure.ac b/configure.ac index 09c7086753b..f8e20d16c41 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_INIT([libfabric], [1.15.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([libfabric], [1.15.0rc3], [ofiwg@lists.openfabrics.org]) AC_CONFIG_SRCDIR([src/fabric.c]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config) diff --git a/fabtests/configure.ac b/fabtests/configure.ac index 597423a0664..b85d0a6f2e9 100644 --- a/fabtests/configure.ac +++ b/fabtests/configure.ac @@ -5,7 +5,7 @@ dnl dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT([fabtests], [1.15.0rc2], [ofiwg@lists.openfabrics.org]) +AC_INIT([fabtests], [1.15.0rc3], [ofiwg@lists.openfabrics.org]) AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR(config) AC_CONFIG_HEADERS(config.h) diff --git a/include/windows/config.h b/include/windows/config.h index d72d485067d..38f9982e1af 100644 --- a/include/windows/config.h +++ b/include/windows/config.h @@ -165,7 +165,7 @@ #define PACKAGE_TARNAME PACKAGE /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.15.0rc2" +#define PACKAGE_VERSION "1.15.0rc3" /* Define to the full name and version of this package. */ #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION