Skip to content

Commit 2ee68f6

Browse files
committed
v2.0.0
Signed-off-by: Jianxin Xiong <[email protected]>
1 parent 92c03da commit 2ee68f6

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

NEWS.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ v2.0.0, Fri Dec 13, 2024
1111

1212
## Core
1313

14+
- hmem/cuda: avoid stub loading at runtime
1415
- Makefile.am: Keep using libfabric.so.1 as the soname
1516
- xpmem: Cleanup xpmem before monitors
1617
- Remove redundant windows.h
@@ -41,6 +42,8 @@ v2.0.0, Fri Dec 13, 2024
4142

4243
## EFA
4344

45+
- Skip rx pkt refill under certain threshold
46+
- Fix efa multi recv setopt segfault
4447
- Add tracepoints for rma operations
4548
- Adjust the location of tracepoint
4649
- Implement the rma interface
@@ -59,7 +62,6 @@ v2.0.0, Fri Dec 13, 2024
5962
- Update efa_hmem and efa_fork_support log to FI_LOG_CORE
6063
- Make efa_hmem_info a global variable
6164
- Set max rma order size correctly
62-
- Fix efa multi recv setopt segfault
6365

6466
## Hook
6567

@@ -72,18 +74,22 @@ v2.0.0, Fri Dec 13, 2024
7274
- Fix av strncpy
7375
- Fix various issues with initial commit
7476

77+
## PSM2
78+
79+
- Check return value of asprintf
80+
7581
## RXM
7682

83+
- Fix rxm multi recv setopt segfault
7784
- Replace rxm managed srx with util srx, support FI_PEER
7885
- Add rxm support for using a peer CQs and counters
7986
- Add FI_AV_USER_ID support
8087
- Fix definition of the rxm SAR segment enum
81-
- Fix rxm multi recv setopt segfault
8288

8389
## SHM
8490

85-
- Cleanup op flags
8691
- Fix shm multi recv setopt segfault
92+
- Cleanup op flags
8793

8894
## Sockets
8995

@@ -106,12 +112,12 @@ v2.0.0, Fri Dec 13, 2024
106112

107113
## Fabtests
108114

115+
- Add opts.min_multi_recv_size to set opt before enable
109116
- Add FI_MORE pytest for fi_recv in zcpy recv mode
110117
- Allow tests with FI_MORE flag by using fi_recvmsg
111118
- New fabtest fi_flood to test over subscription of resources
112119
- test_configs/ofi_rxm/tcp.test: remove cntr RMA testing
113120
- Fix compiler warning about unitialized variable
114-
- Add opts.min_multi_recv_size to set opt before enable
115121

116122

117123
v2.0.0 beta, Fri Oct 25, 2024

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dnl
99
dnl Process this file with autoconf to produce a configure script.
1010

1111
AC_PREREQ([2.60])
12-
AC_INIT([libfabric], [2.0.0rc2], [[email protected]])
12+
AC_INIT([libfabric], [2.0.0], [[email protected]])
1313
AC_CONFIG_SRCDIR([src/fabric.c])
1414
AC_CONFIG_AUX_DIR(config)
1515
AC_CONFIG_MACRO_DIR(config)

fabtests/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dnl
55
dnl Process this file with autoconf to produce a configure script.
66

77
AC_PREREQ(2.57)
8-
AC_INIT([fabtests], [2.0.0rc2], [[email protected]])
8+
AC_INIT([fabtests], [2.0.0], [[email protected]])
99
AC_CONFIG_AUX_DIR(config)
1010
AC_CONFIG_MACRO_DIR(config)
1111
AC_CONFIG_HEADERS(config.h)

include/windows/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
#define PACKAGE_TARNAME PACKAGE
257257

258258
/* Define to the version of this package. */
259-
#define PACKAGE_VERSION "2.0.0rc2"
259+
#define PACKAGE_VERSION "2.0.0"
260260

261261
/* Define to the full name and version of this package. */
262262
#define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION

0 commit comments

Comments
 (0)