diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e3d6f821d..63ecbe3c8 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -7,6 +7,30 @@ * Ubuntu 18.04 and 20.04 LTS * CentOS 7 and 8 +# v1.4.0 release notes + +This release requires [Libfabric v1.11.0](https://github.com/ofiwg/libfabric/releases/tag/v1.11.0) +or later and supports [NCCL v2.12.12](https://github.com/NVIDIA/nccl/releases/tag/v2.12.12-1) while +maintaining backward compatibility with older NCCL versions (up to [NCCL v2.4.8](https://github.com/NVIDIA/nccl/releases/tag/v2.4.8-1)). +It was tested with Libfabric versions up to [Libfabric v1.15.1](https://github.com/ofiwg/libfabric/releases/tag/v1.15.1). + +New Features: +* Allow users to disable building the unit tests. +* Allow enable_debug flag to configure + +Bug Fixes: +* Fix compilation on CentOS 7. +* Update tag generation for control messages. +* Check for required MPI headers to build unit tests. +* Fix the active connection issue for non-blocking accepts (impacts NCCL versions 2.12 and above). + +Testing: +The plugin has been tested with following libfabric providers using unit tests +bundled in the source code: +* tcp;ofi_rxm +* sockets +* efa + # v1.3.0 release notes This release requires [Libfabric v1.11.0](https://github.com/ofiwg/libfabric/releases/tag/v1.11.0) diff --git a/configure.ac b/configure.ac index 059d4c481..f3acdea4f 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ # AC_PREREQ([2.69]) -AC_INIT([aws-ofi-nccl], [1.3.0], [rashika@amazon.com], , [http://github.com/aws/aws-ofi-nccl]) +AC_INIT([aws-ofi-nccl], [1.4.0], [rashika@amazon.com], , [http://github.com/aws/aws-ofi-nccl]) AC_CONFIG_SRCDIR([src/nccl_ofi_net.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h])