File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Bourne Emily - CEA (emily.bourne@cea.fr)
2626
2727Gannay Paul - CEA (paul.gannay@cea.fr)
2828* Functions to print ChunkSpans
29+ * Implementation of device_for_each and device_transform_reduce algorithms
2930
3031Kannan 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
3840Morvany 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
4245Padioleau Thomas - CEA (thomas.padioleau@cea.fr)
4346* Maintainer
Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: MIT
44
55cmake_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
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ cmake_minimum_required(VERSION 3.25)
66project (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
1313message (STATUS "DDC options:" )
1414message (STATUS "* DDC_BUILD_DOUBLE_PRECISION=${DDC_BUILD_DOUBLE_PRECISION} " )
You can’t perform that action at this time.
0 commit comments