Skip to content

Commit fadc881

Browse files
committed
Release prep changes
1 parent c58fe67 commit fadc881

File tree

8 files changed

+18
-9
lines changed

8 files changed

+18
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cmake_policy(SET CMP0096 OLD) # Required when building Umpire submodule
1515
include(CMakeDependentOption)
1616
include(CMakePackageConfigHelpers)
1717

18-
project(Chai LANGUAGES C CXX VERSION 2025.09.0)
18+
project(Chai LANGUAGES C CXX VERSION 2025.09.1)
1919

2020
include(cmake/SetupChaiOptions.cmake)
2121

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[comment]: # (# SPDX-License-Identifier: BSD-3-Clause)
77
[comment]: # (#################################################################)
88

9-
# CHAI v2025.09.0
9+
# CHAI
1010

1111
[![Azure Build Status](https://dev.azure.com/davidbeckingsale/CHAI/_apis/build/status/LLNL.CHAI?branchName=develop)](https://dev.azure.com/davidbeckingsale/CHAI/_build/latest?definitionId=2&branchName=develop)
1212
[![Build Status](https://travis-ci.org/LLNL/CHAI.svg?branch=develop)](https://travis-ci.org/LLNL/CHAI)

RELEASE_NOTES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ in this file.
1313

1414
The format of this file is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1515

16+
## [Version 2025.09.1] - Release date 2025-09-15
17+
18+
### Fixed
19+
- Fixed build error when `CHAI_ENABLE_EXPERIMENTAL` was set to ON.
20+
21+
### Changed
22+
- Turned off `CHAI_ENABLE_EXPERIMENTAL` by default.
23+
1624
## [Version 2025.09.0] - Release date 2025-09-12
1725

1826
### Fixed
@@ -27,6 +35,7 @@ The format of this file is based on [Keep a Changelog](http://keepachangelog.com
2735

2836
### Experimental
2937
- Added a `ManagedSharedPtr` class similar to `managed_ptr` that acts like `std::shared_ptr` on the host and a view on the device.
38+
- Added `CHAI_ENABLE_EXPERIMENTAL` CMake option for enabling experimental features. Defaults to ON.
3039

3140
## [Version 2025.03.1] - Release date 2025-06-23
3241

cmake/SetupChaiOptions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# SPDX-License-Identifier: BSD-3-Clause
66
############################################################################
7-
option(CHAI_ENABLE_EXPERIMENTAL "Enable experimental chai features." On)
7+
option(CHAI_ENABLE_EXPERIMENTAL "Enable experimental chai features." Off)
88
option(CHAI_ENABLE_GPU_SIMULATION_MODE "Enable GPU Simulation Mode" Off)
99
option(CHAI_ENABLE_OPENMP "Enable OpenMP" Off)
1010
option(CHAI_ENABLE_MPI "Enable MPI (for umpire replay only)" Off)

docs/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# The short X.Y version.
6464
version = u'2025.09'
6565
# The full version, including alpha/beta/rc tags.
66-
release = u'2025.09.0'
66+
release = u'2025.09.1'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

docs/sphinx/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ author = u''
6262
# The short X.Y version.
6363
version = u'2025.09'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'2025.09.0'
65+
release = u'2025.09.1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

scripts/make_release_tarball.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
##############################################################################
88

99
TAR_CMD=gtar
10-
VERSION=2025.09.0
10+
VERSION=2025.09.1
1111

1212
git archive --prefix=chai-${VERSION}/ -o chai-${VERSION}.tar HEAD 2> /dev/null
1313

src/chai/SharedPtrManager.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,9 @@ void SharedPtrManager::free(msp_pointer_record* pointer_record, ExecutionSpace s
329329
#endif
330330
#if defined(CHAI_ENABLE_PINNED)
331331
if (space_ptr == pointer_record->m_pointers[PINNED]) {
332-
callback(pointer_record,
333-
ACTION_FREE,
334-
ExecutionSpace(PINNED));
332+
//callback(pointer_record,
333+
// ACTION_FREE,
334+
// ExecutionSpace(PINNED));
335335

336336
auto alloc = m_resource_manager.getAllocator(
337337
pointer_record->m_allocators[PINNED]);

0 commit comments

Comments
 (0)