From 79075ceabb84fcbb0bebc5f4ce40f3700fd94e33 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Tue, 15 Aug 2023 13:26:25 +0200 Subject: [PATCH] Bump Celerity version --- VERSION | 2 +- examples/convolution/CMakeLists.txt | 2 +- examples/distr_io/CMakeLists.txt | 2 +- examples/hello_world/CMakeLists.txt | 2 +- examples/matmul/CMakeLists.txt | 2 +- examples/reduction/CMakeLists.txt | 2 +- examples/syncing/CMakeLists.txt | 2 +- examples/wave_sim/CMakeLists.txt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/VERSION b/VERSION index 1d0ba9ea1..267577d47 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.1 diff --git a/examples/convolution/CMakeLists.txt b/examples/convolution/CMakeLists.txt index 1cbea5429..60ab10355 100644 --- a/examples/convolution/CMakeLists.txt +++ b/examples/convolution/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(convolution LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) add_executable(convolution convolution.cc) set_property(TARGET convolution PROPERTY CXX_STANDARD 17) diff --git a/examples/distr_io/CMakeLists.txt b/examples/distr_io/CMakeLists.txt index 49bc51a56..0285adeef 100644 --- a/examples/distr_io/CMakeLists.txt +++ b/examples/distr_io/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(distr_io LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) find_package(PkgConfig REQUIRED) pkg_search_module(HDF5 REQUIRED IMPORTED_TARGET hdf5-openmpi hdf5-1.12.0 hdf5) diff --git a/examples/hello_world/CMakeLists.txt b/examples/hello_world/CMakeLists.txt index 9d567c1d9..cdd38f964 100644 --- a/examples/hello_world/CMakeLists.txt +++ b/examples/hello_world/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(hello_world LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) add_executable(hello_world hello_world.cc) set_property(TARGET hello_world PROPERTY CXX_STANDARD 17) diff --git a/examples/matmul/CMakeLists.txt b/examples/matmul/CMakeLists.txt index 797d5b50f..50523eeaf 100644 --- a/examples/matmul/CMakeLists.txt +++ b/examples/matmul/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(matmul LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) add_executable(matmul matmul.cc) set_property(TARGET matmul PROPERTY CXX_STANDARD 17) diff --git a/examples/reduction/CMakeLists.txt b/examples/reduction/CMakeLists.txt index c46d51134..7877068b5 100644 --- a/examples/reduction/CMakeLists.txt +++ b/examples/reduction/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(syncing LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) if (NOT CELERITY_FEATURE_SCALAR_REDUCTIONS) message(SEND_ERROR "Your Celerity installation does not support reductions. Skip this example.") endif () diff --git a/examples/syncing/CMakeLists.txt b/examples/syncing/CMakeLists.txt index cc03360cc..8245d2b91 100644 --- a/examples/syncing/CMakeLists.txt +++ b/examples/syncing/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(syncing LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) add_executable(syncing syncing.cc) set_property(TARGET syncing PROPERTY CXX_STANDARD 17) diff --git a/examples/wave_sim/CMakeLists.txt b/examples/wave_sim/CMakeLists.txt index 087e17a09..8497311a2 100644 --- a/examples/wave_sim/CMakeLists.txt +++ b/examples/wave_sim/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(wave_sim LANGUAGES CXX) -find_package(Celerity 0.4.0 REQUIRED) +find_package(Celerity 0.4.1 REQUIRED) add_executable(wave_sim wave_sim.cc) set_property(TARGET wave_sim PROPERTY CXX_STANDARD 17)