Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .hdoc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[project]
name = "Celerity"
version = "0.7.0"
version = "0.7.1"

# Optional, adding this will enable direct links from the documentation
# to your source code.
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic
Versioning](http://semver.org/spec/v2.0.0.html).

## [WIP]
## [0.7.1] - 2026-08-xx

This release is WIP
This minor release focuses mainly on compatibility with Windows including some longstanding bugfixes as drive by.

We recommend using the following SYCL version with this release:

- DPC++: ad494e9d or newer
- AdaptiveCpp (formerly hipSYCL): v24.06
- SimSYCL: master

See our [platform support guide](docs/platform-support.md) for a complete list of all officially supported configurations.

### Added

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018-2025 DPS Group, University of Innsbruck, Austria.
Copyright (c) 2018-2026 DPS Group, University of Innsbruck, Austria.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.7.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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(convolution convolution.cc)
add_celerity_to_target(TARGET convolution SOURCES convolution.cc)
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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)
if(NOT CELERITY_ENABLE_MPI)
message(SEND_ERROR "Your Celerity installation is built without MPI support.\nSkip this example.")
endif()
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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(hello_world hello_world.cc)
add_celerity_to_target(TARGET hello_world SOURCES hello_world.cc)
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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(matmul matmul.cc)
add_celerity_to_target(TARGET matmul SOURCES matmul.cc)
4 changes: 2 additions & 2 deletions 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)
project(reduction LANGUAGES CXX)

find_package(Celerity 0.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(reduction reduction.cc)
add_celerity_to_target(TARGET reduction SOURCES reduction.cc)
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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(syncing syncing.cc)
add_celerity_to_target(TARGET syncing SOURCES syncing.cc)
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.7.0 REQUIRED)
find_package(Celerity 0.7.1 REQUIRED)

add_executable(wave_sim wave_sim.cc)
add_celerity_to_target(TARGET wave_sim SOURCES wave_sim.cc)
Loading