Skip to content

Commit b3cde80

Browse files
authored
Release version 0.10.0 (#1000)
* Release version 0.10.0 * Update AUTHORS file
1 parent 188cb35 commit b3cde80

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Bourne Emily - CEA (emily.bourne@cea.fr)
2626

2727
Gannay Paul - CEA (paul.gannay@cea.fr)
2828
* Functions to print ChunkSpans
29+
* Implementation of device_for_each and device_transform_reduce algorithms
2930

3031
Kannan Hariprasad - CEA (hariprasad.kannan@cea.fr)
3132
* Implementation of 3d splines
@@ -34,10 +35,12 @@ Legouix Baptiste - CEA (baptiste.legouix@cea.fr)
3435
* FFT kernel
3536
* Performance portability of splines kernel, batching
3637
* Ginkgo and KokkosKernels backends for splines linear algebra
38+
* Implementation of device_for_each and device_transform_reduce algorithms
3739

3840
Morvany Trévis - CEA (trevis.morvany@cea.fr)
3941
* Work on splines
4042
* Implementation of 3d splines
43+
* Implementation of n-th order derivatives of splines
4144

4245
Padioleau Thomas - CEA (thomas.padioleau@cea.fr)
4346
* Maintainer

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: MIT
44

55
cmake_minimum_required(VERSION 3.25)
6-
project(DDC VERSION 0.9.0 LANGUAGES CXX)
6+
project(DDC VERSION 0.10.0 LANGUAGES CXX)
77

88
# List of options
99

install_test/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ cmake_minimum_required(VERSION 3.25)
66
project(test-installed-ddc LANGUAGES CXX)
77

88
# Test whether `find_package(DDC)` can be called multiple times
9-
find_package(DDC 0.9 REQUIRED)
10-
find_package(DDC 0.9 REQUIRED COMPONENTS fft)
11-
find_package(DDC 0.9 REQUIRED COMPONENTS pdi splines)
9+
find_package(DDC 0.10 REQUIRED)
10+
find_package(DDC 0.10 REQUIRED COMPONENTS fft)
11+
find_package(DDC 0.10 REQUIRED COMPONENTS pdi splines)
1212

1313
message(STATUS "DDC options:")
1414
message(STATUS "* DDC_BUILD_DOUBLE_PRECISION=${DDC_BUILD_DOUBLE_PRECISION}")

0 commit comments

Comments
 (0)