From 3fb289621d558f3396cf786a2fed7c0fe4cdf5f4 Mon Sep 17 00:00:00 2001 From: Terry Cojean Date: Thu, 6 Jun 2024 15:21:42 +0200 Subject: [PATCH] Version: Develop now prepares 1.9.0 --- CMakeLists.txt | 2 +- examples/adaptiveprecision-blockjacobi/CMakeLists.txt | 2 +- examples/batched-solver/CMakeLists.txt | 2 +- examples/build-setup.sh | 2 +- examples/cb-gmres/CMakeLists.txt | 2 +- examples/custom-logger/CMakeLists.txt | 2 +- examples/custom-matrix-format/CMakeLists.txt | 2 +- examples/custom-stopping-criterion/CMakeLists.txt | 2 +- examples/ginkgo-overhead/CMakeLists.txt | 2 +- examples/ginkgo-ranges/CMakeLists.txt | 2 +- examples/heat-equation/CMakeLists.txt | 2 +- examples/ilu-preconditioned-solver/CMakeLists.txt | 2 +- examples/inverse-iteration/CMakeLists.txt | 2 +- examples/ir-ilu-preconditioned-solver/CMakeLists.txt | 2 +- examples/iterative-refinement/CMakeLists.txt | 2 +- examples/kokkos-assembly/CMakeLists.txt | 2 +- examples/minimal-cuda-solver/CMakeLists.txt | 2 +- examples/mixed-multigrid-preconditioned-solver/CMakeLists.txt | 2 +- examples/mixed-multigrid-solver/CMakeLists.txt | 2 +- examples/mixed-precision-ir/CMakeLists.txt | 2 +- examples/mixed-spmv/CMakeLists.txt | 2 +- .../multigrid-preconditioned-solver-customized/CMakeLists.txt | 2 +- examples/multigrid-preconditioned-solver/CMakeLists.txt | 2 +- examples/nine-pt-stencil-solver/CMakeLists.txt | 2 +- examples/papi-logging/CMakeLists.txt | 2 +- examples/par-ilu-convergence/CMakeLists.txt | 2 +- examples/performance-debugging/CMakeLists.txt | 2 +- examples/poisson-solver/CMakeLists.txt | 2 +- examples/preconditioned-solver/CMakeLists.txt | 2 +- examples/preconditioner-export/CMakeLists.txt | 2 +- examples/reordered-preconditioned-solver/CMakeLists.txt | 2 +- examples/schroedinger-splitting/CMakeLists.txt | 2 +- examples/simple-solver-logging/CMakeLists.txt | 2 +- examples/simple-solver/CMakeLists.txt | 2 +- examples/three-pt-stencil-solver/CMakeLists.txt | 2 +- 35 files changed, 35 insertions(+), 35 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e2464c4088..f363d0b3744 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(Ginkgo LANGUAGES CXX VERSION 1.8.0 DESCRIPTION "A numerical linear algebra library targeting many-core architectures") +project(Ginkgo LANGUAGES CXX VERSION 1.9.0 DESCRIPTION "A numerical linear algebra library targeting many-core architectures") set(Ginkgo_VERSION_TAG "develop") set(PROJECT_VERSION_TAG ${Ginkgo_VERSION_TAG}) # Cuda and Hip also look for Threads. Set it before any find_package to ensure the Threads setting is not changed. diff --git a/examples/adaptiveprecision-blockjacobi/CMakeLists.txt b/examples/adaptiveprecision-blockjacobi/CMakeLists.txt index 8edbdc88af0..7b61bf6a175 100644 --- a/examples/adaptiveprecision-blockjacobi/CMakeLists.txt +++ b/examples/adaptiveprecision-blockjacobi/CMakeLists.txt @@ -3,7 +3,7 @@ project(adaptiveprecision-blockjacobi) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(adaptiveprecision-blockjacobi adaptiveprecision-blockjacobi.cpp) diff --git a/examples/batched-solver/CMakeLists.txt b/examples/batched-solver/CMakeLists.txt index 33c3d332b96..cc6b694a54a 100644 --- a/examples/batched-solver/CMakeLists.txt +++ b/examples/batched-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(batched-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(batched-solver batched-solver.cpp) diff --git a/examples/build-setup.sh b/examples/build-setup.sh index c4fa523640f..c153be6a77f 100755 --- a/examples/build-setup.sh +++ b/examples/build-setup.sh @@ -3,7 +3,7 @@ # copy libraries LIBRARY_NAMES="ginkgo ginkgo_reference ginkgo_omp ginkgo_cuda ginkgo_hip ginkgo_dpcpp ginkgo_device" SUFFIXES=".so .dylib .dll d.so d.dylib d.dll" -VERSION="1.8.0" +VERSION="1.9.0" for name in ${LIBRARY_NAMES}; do for suffix in ${SUFFIXES}; do cp ${BUILD_DIR}/lib/lib${name}${suffix}.${VERSION} \ diff --git a/examples/cb-gmres/CMakeLists.txt b/examples/cb-gmres/CMakeLists.txt index 8dcc43376b4..f4283c45a34 100644 --- a/examples/cb-gmres/CMakeLists.txt +++ b/examples/cb-gmres/CMakeLists.txt @@ -3,7 +3,7 @@ project(cb-gmres) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(cb-gmres cb-gmres.cpp) diff --git a/examples/custom-logger/CMakeLists.txt b/examples/custom-logger/CMakeLists.txt index 2278e0848d2..ef355c2ebb7 100644 --- a/examples/custom-logger/CMakeLists.txt +++ b/examples/custom-logger/CMakeLists.txt @@ -3,7 +3,7 @@ project(custom-logger) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(custom-logger custom-logger.cpp) diff --git a/examples/custom-matrix-format/CMakeLists.txt b/examples/custom-matrix-format/CMakeLists.txt index ad6b9c2950f..6881d6448d0 100644 --- a/examples/custom-matrix-format/CMakeLists.txt +++ b/examples/custom-matrix-format/CMakeLists.txt @@ -3,7 +3,7 @@ project(custom-matrix-format CXX CUDA) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) find_package(OpenMP 3.0 REQUIRED) endif() diff --git a/examples/custom-stopping-criterion/CMakeLists.txt b/examples/custom-stopping-criterion/CMakeLists.txt index d77d3d2247a..1cecf5b87ec 100644 --- a/examples/custom-stopping-criterion/CMakeLists.txt +++ b/examples/custom-stopping-criterion/CMakeLists.txt @@ -3,7 +3,7 @@ project(custom-stopping-criterion) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) endif() diff --git a/examples/ginkgo-overhead/CMakeLists.txt b/examples/ginkgo-overhead/CMakeLists.txt index 382a6813cab..5f888d77aa7 100644 --- a/examples/ginkgo-overhead/CMakeLists.txt +++ b/examples/ginkgo-overhead/CMakeLists.txt @@ -3,7 +3,7 @@ project(ginkgo-overhead) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(ginkgo-overhead ginkgo-overhead.cpp) diff --git a/examples/ginkgo-ranges/CMakeLists.txt b/examples/ginkgo-ranges/CMakeLists.txt index e0b3dfcad99..c4f45e63211 100644 --- a/examples/ginkgo-ranges/CMakeLists.txt +++ b/examples/ginkgo-ranges/CMakeLists.txt @@ -3,7 +3,7 @@ project(ginkgo-ranges) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(ginkgo-ranges ginkgo-ranges.cpp) target_link_libraries(ginkgo-ranges Ginkgo::ginkgo) diff --git a/examples/heat-equation/CMakeLists.txt b/examples/heat-equation/CMakeLists.txt index 0029b195613..d7d7a994e33 100644 --- a/examples/heat-equation/CMakeLists.txt +++ b/examples/heat-equation/CMakeLists.txt @@ -3,7 +3,7 @@ project(heat-equation) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() find_package(OpenCV REQUIRED) diff --git a/examples/ilu-preconditioned-solver/CMakeLists.txt b/examples/ilu-preconditioned-solver/CMakeLists.txt index 07485b6afd8..fa84e6163a2 100644 --- a/examples/ilu-preconditioned-solver/CMakeLists.txt +++ b/examples/ilu-preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(ilu-preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(ilu-preconditioned-solver ilu-preconditioned-solver.cpp) diff --git a/examples/inverse-iteration/CMakeLists.txt b/examples/inverse-iteration/CMakeLists.txt index 5b2a1872b72..3f70d329981 100644 --- a/examples/inverse-iteration/CMakeLists.txt +++ b/examples/inverse-iteration/CMakeLists.txt @@ -3,7 +3,7 @@ project(inverse-iteration) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(inverse-iteration inverse-iteration.cpp) diff --git a/examples/ir-ilu-preconditioned-solver/CMakeLists.txt b/examples/ir-ilu-preconditioned-solver/CMakeLists.txt index 178a0fa0044..37bcd36e9f6 100644 --- a/examples/ir-ilu-preconditioned-solver/CMakeLists.txt +++ b/examples/ir-ilu-preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(ir-ilu-preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(ir-ilu-preconditioned-solver ir-ilu-preconditioned-solver.cpp) diff --git a/examples/iterative-refinement/CMakeLists.txt b/examples/iterative-refinement/CMakeLists.txt index ee80ee7d008..2dc7bef6b79 100644 --- a/examples/iterative-refinement/CMakeLists.txt +++ b/examples/iterative-refinement/CMakeLists.txt @@ -3,7 +3,7 @@ project(iterative-refinement) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(iterative-refinement iterative-refinement.cpp) diff --git a/examples/kokkos-assembly/CMakeLists.txt b/examples/kokkos-assembly/CMakeLists.txt index 39c4cabd57b..45bf7ffa6f9 100644 --- a/examples/kokkos-assembly/CMakeLists.txt +++ b/examples/kokkos-assembly/CMakeLists.txt @@ -3,7 +3,7 @@ project(kokkos-assembly CXX) # We only need to find Ginkgo if we build this example stand-alone if(NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() find_package(Kokkos 4.1.00 REQUIRED) diff --git a/examples/minimal-cuda-solver/CMakeLists.txt b/examples/minimal-cuda-solver/CMakeLists.txt index 4262f98e719..84088a76e7f 100644 --- a/examples/minimal-cuda-solver/CMakeLists.txt +++ b/examples/minimal-cuda-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(minimal-cuda-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(minimal-cuda-solver minimal-cuda-solver.cpp) diff --git a/examples/mixed-multigrid-preconditioned-solver/CMakeLists.txt b/examples/mixed-multigrid-preconditioned-solver/CMakeLists.txt index 3ca157faeb5..182d4dd155d 100644 --- a/examples/mixed-multigrid-preconditioned-solver/CMakeLists.txt +++ b/examples/mixed-multigrid-preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(mixed-multigrid-preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(mixed-multigrid-preconditioned-solver mixed-multigrid-preconditioned-solver.cpp) diff --git a/examples/mixed-multigrid-solver/CMakeLists.txt b/examples/mixed-multigrid-solver/CMakeLists.txt index 0e4eda7e5af..b143cec6449 100644 --- a/examples/mixed-multigrid-solver/CMakeLists.txt +++ b/examples/mixed-multigrid-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(mixed-multigrid-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(mixed-multigrid-solver mixed-multigrid-solver.cpp) diff --git a/examples/mixed-precision-ir/CMakeLists.txt b/examples/mixed-precision-ir/CMakeLists.txt index c540a7d00b6..e9cfc26abd7 100644 --- a/examples/mixed-precision-ir/CMakeLists.txt +++ b/examples/mixed-precision-ir/CMakeLists.txt @@ -3,7 +3,7 @@ project(mixed-precision-ir) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(mixed-precision-ir mixed-precision-ir.cpp) diff --git a/examples/mixed-spmv/CMakeLists.txt b/examples/mixed-spmv/CMakeLists.txt index e65ab60186b..0feadf1e038 100644 --- a/examples/mixed-spmv/CMakeLists.txt +++ b/examples/mixed-spmv/CMakeLists.txt @@ -3,7 +3,7 @@ project(mixed-spmv) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(mixed-spmv mixed-spmv.cpp) diff --git a/examples/multigrid-preconditioned-solver-customized/CMakeLists.txt b/examples/multigrid-preconditioned-solver-customized/CMakeLists.txt index a9c85fdcb21..7c0d93efe42 100644 --- a/examples/multigrid-preconditioned-solver-customized/CMakeLists.txt +++ b/examples/multigrid-preconditioned-solver-customized/CMakeLists.txt @@ -3,7 +3,7 @@ project(multigrid-preconditioned-solver-customized) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(multigrid-preconditioned-solver-customized multigrid-preconditioned-solver-customized.cpp) diff --git a/examples/multigrid-preconditioned-solver/CMakeLists.txt b/examples/multigrid-preconditioned-solver/CMakeLists.txt index e5938656169..2c73b3fa037 100644 --- a/examples/multigrid-preconditioned-solver/CMakeLists.txt +++ b/examples/multigrid-preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(multigrid-preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(multigrid-preconditioned-solver multigrid-preconditioned-solver.cpp) diff --git a/examples/nine-pt-stencil-solver/CMakeLists.txt b/examples/nine-pt-stencil-solver/CMakeLists.txt index a29230fab2d..64743593c70 100644 --- a/examples/nine-pt-stencil-solver/CMakeLists.txt +++ b/examples/nine-pt-stencil-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(nine-pt-stencil-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(nine-pt-stencil-solver nine-pt-stencil-solver.cpp) diff --git a/examples/papi-logging/CMakeLists.txt b/examples/papi-logging/CMakeLists.txt index 2c71316b37b..37b5a1352df 100644 --- a/examples/papi-logging/CMakeLists.txt +++ b/examples/papi-logging/CMakeLists.txt @@ -3,7 +3,7 @@ project(papi-logging) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() if (NOT GINKGO_HAVE_PAPI_SDE) diff --git a/examples/par-ilu-convergence/CMakeLists.txt b/examples/par-ilu-convergence/CMakeLists.txt index f285ccf415e..f8f0f037c16 100644 --- a/examples/par-ilu-convergence/CMakeLists.txt +++ b/examples/par-ilu-convergence/CMakeLists.txt @@ -3,7 +3,7 @@ project(par-ilu-convergence) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(par-ilu-convergence par-ilu-convergence.cpp) diff --git a/examples/performance-debugging/CMakeLists.txt b/examples/performance-debugging/CMakeLists.txt index 2f9ea970cbf..36e906553fa 100644 --- a/examples/performance-debugging/CMakeLists.txt +++ b/examples/performance-debugging/CMakeLists.txt @@ -3,7 +3,7 @@ project(performance-debugging) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(performance-debugging performance-debugging.cpp) diff --git a/examples/poisson-solver/CMakeLists.txt b/examples/poisson-solver/CMakeLists.txt index f3ae7a3353b..1bc92aa2c9b 100644 --- a/examples/poisson-solver/CMakeLists.txt +++ b/examples/poisson-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(poisson-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(poisson-solver poisson-solver.cpp) diff --git a/examples/preconditioned-solver/CMakeLists.txt b/examples/preconditioned-solver/CMakeLists.txt index 60b2b7a35d5..09f22537619 100644 --- a/examples/preconditioned-solver/CMakeLists.txt +++ b/examples/preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(preconditioned-solver preconditioned-solver.cpp) target_link_libraries(preconditioned-solver Ginkgo::ginkgo) diff --git a/examples/preconditioner-export/CMakeLists.txt b/examples/preconditioner-export/CMakeLists.txt index e7f07c89608..f928859bd1a 100644 --- a/examples/preconditioner-export/CMakeLists.txt +++ b/examples/preconditioner-export/CMakeLists.txt @@ -3,7 +3,7 @@ project(preconditioner-export) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(preconditioner-export preconditioner-export.cpp) diff --git a/examples/reordered-preconditioned-solver/CMakeLists.txt b/examples/reordered-preconditioned-solver/CMakeLists.txt index 17c17f2b71c..bfaceef782a 100644 --- a/examples/reordered-preconditioned-solver/CMakeLists.txt +++ b/examples/reordered-preconditioned-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(reordered-preconditioned-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(reordered-preconditioned-solver reordered-preconditioned-solver.cpp) target_link_libraries(reordered-preconditioned-solver Ginkgo::ginkgo) diff --git a/examples/schroedinger-splitting/CMakeLists.txt b/examples/schroedinger-splitting/CMakeLists.txt index 730f9c415e9..b782095bdbd 100644 --- a/examples/schroedinger-splitting/CMakeLists.txt +++ b/examples/schroedinger-splitting/CMakeLists.txt @@ -3,7 +3,7 @@ project(schroedinger-splitting) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() find_package(OpenCV REQUIRED) diff --git a/examples/simple-solver-logging/CMakeLists.txt b/examples/simple-solver-logging/CMakeLists.txt index 6b54d3af791..ef36b7ab041 100644 --- a/examples/simple-solver-logging/CMakeLists.txt +++ b/examples/simple-solver-logging/CMakeLists.txt @@ -3,7 +3,7 @@ project(simple-solver-logging) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(simple-solver-logging simple-solver-logging.cpp) diff --git a/examples/simple-solver/CMakeLists.txt b/examples/simple-solver/CMakeLists.txt index b7d7b15df78..2d274f50f81 100644 --- a/examples/simple-solver/CMakeLists.txt +++ b/examples/simple-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(simple-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(simple-solver simple-solver.cpp) diff --git a/examples/three-pt-stencil-solver/CMakeLists.txt b/examples/three-pt-stencil-solver/CMakeLists.txt index ab456f062ae..bd7ce57a171 100644 --- a/examples/three-pt-stencil-solver/CMakeLists.txt +++ b/examples/three-pt-stencil-solver/CMakeLists.txt @@ -3,7 +3,7 @@ project(three-pt-stencil-solver) # We only need to find Ginkgo if we build this example stand-alone if (NOT GINKGO_BUILD_EXAMPLES) - find_package(Ginkgo 1.8.0 REQUIRED) + find_package(Ginkgo 1.9.0 REQUIRED) endif() add_executable(three-pt-stencil-solver three-pt-stencil-solver.cpp)