Skip to content

Commit 79075ce

Browse files
committed
Bump Celerity version
1 parent 9a05000 commit 79075ce

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.4.1

examples/convolution/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(convolution LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55

66
add_executable(convolution convolution.cc)
77
set_property(TARGET convolution PROPERTY CXX_STANDARD 17)

examples/distr_io/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(distr_io LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55
find_package(PkgConfig REQUIRED)
66
pkg_search_module(HDF5 REQUIRED IMPORTED_TARGET hdf5-openmpi hdf5-1.12.0 hdf5)
77

examples/hello_world/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(hello_world LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55

66
add_executable(hello_world hello_world.cc)
77
set_property(TARGET hello_world PROPERTY CXX_STANDARD 17)

examples/matmul/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(matmul LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55

66
add_executable(matmul matmul.cc)
77
set_property(TARGET matmul PROPERTY CXX_STANDARD 17)

examples/reduction/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(syncing LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55
if (NOT CELERITY_FEATURE_SCALAR_REDUCTIONS)
66
message(SEND_ERROR "Your Celerity installation does not support reductions. Skip this example.")
77
endif ()

examples/syncing/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(syncing LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55

66
add_executable(syncing syncing.cc)
77
set_property(TARGET syncing PROPERTY CXX_STANDARD 17)

examples/wave_sim/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
project(wave_sim LANGUAGES CXX)
33

4-
find_package(Celerity 0.4.0 REQUIRED)
4+
find_package(Celerity 0.4.1 REQUIRED)
55

66
add_executable(wave_sim wave_sim.cc)
77
set_property(TARGET wave_sim PROPERTY CXX_STANDARD 17)

0 commit comments

Comments
 (0)