Skip to content

Commit

Permalink
Bump Celerity version
Browse files Browse the repository at this point in the history
  • Loading branch information
fknorr committed Sep 8, 2023
1 parent 9a05000 commit 79075ce
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1
2 changes: 1 addition & 1 deletion examples/convolution/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/distr_io/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/matmul/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/reduction/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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 ()
Expand Down
2 changes: 1 addition & 1 deletion examples/syncing/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion examples/wave_sim/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 79075ce

Please sign in to comment.