From e8f3a53d8feb78993b2f02a83eb6b08e27f0804f Mon Sep 17 00:00:00 2001 From: Evgeny Leksikov Date: Mon, 20 Jun 2022 15:30:07 +0300 Subject: [PATCH] NEWS: 1.13.0.rc2 update --- NEWS | 11 ++++++----- configure.ac | 8 ++++---- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index c2fafd779621..8f42f833e69d 100644 --- a/NEWS +++ b/NEWS @@ -11,7 +11,7 @@ ### Features: ### Bugfixes: -## 1.13.0 (May 27, 2022) +## 1.13.0.rc2 (June 26, 2022) #### Features ##### Core * Added new objects to VFS: local and remote address of endpoint, statistics of ucp_ep_create success/failure, failed/destroyed endpoints @@ -118,11 +118,12 @@ #### GPU (CUDA, ROCM) * Fixed a bug in invalidating address range in CUDA_IPC * Fixed CUDA context caching and cleanup -* Fixed ROCM initialization -* Fixed ROCM components compilation +* Fixed CUDA module compilation with clang 13 +* Fixed ROCm initialization +* Fixed ROCm components compilation * Fixed IPC tls reachability check -* Fixed ROCM memory type detection -* Use ROCM remote_agent if available +* Use ROCm remote_agent if available +* Fixes in ROCm memory detection and performance estimation #### KNEM * Fixed memory registration cost #### UCM diff --git a/configure.ac b/configure.ac index f183232baabc..9435ffbdad32 100644 --- a/configure.ac +++ b/configure.ac @@ -8,10 +8,10 @@ # AC_PREREQ([2.63]) -define([ucx_ver_major], 1) # Major version. Usually does not change. -define([ucx_ver_minor], 13) # Minor version. Increased for each release. -define([ucx_ver_patch], 0) # Patch version. Increased for a bugfix release. -define([ucx_ver_extra], ) # Extra version string. Empty for a general release. +define([ucx_ver_major], 1) # Major version. Usually does not change. +define([ucx_ver_minor], 13) # Minor version. Increased for each release. +define([ucx_ver_patch], 0) # Patch version. Increased for a bugfix release. +define([ucx_ver_extra], .rc2) # Extra version string. Empty for a general release. define([ts], esyscmd([sh -c "date +%Y%m%d%H%M%S"]))