@@ -6,18 +6,26 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
and this project adheres to [ Semantic
7
7
Versioning] ( http://semver.org/spec/v2.0.0.html ) .
8
8
9
- ## [ 0.2.0]
9
+ ## [ 0.2.0] - 2020-09-04
10
10
11
- ### Changed
11
+ ### Added
12
12
13
- - Celerity now uses (and requires) C++17.
14
13
- Following the release of the SYCL 2020 provisional spec, master access tasks
15
14
have been retired in favor of host tasks. These are scheduled in command groups
16
15
in the same fashion as compute tasks. In addition to master-only execution,
17
- they allow distributing host code amongst nodes.
16
+ they allow distributing host code amongst nodes. (bbf90637)
17
+ - Celerity buffers are now fully virtualized, meaning that your Celerity
18
+ application only allocates as much memory as required on each node.
19
+ (8a203872)
18
20
- _ (Experimental)_ Collective host tasks allow integration of distributed I/O
19
21
by providing an infrastructure to call MPI collective APIs like parallel
20
- HDF5 from within asynchronous Celerity tasks.
22
+ HDF5 from within asynchronous Celerity tasks. (bbf90637)
23
+ - Properly support 3D kernels. (e5543bd0)
24
+
25
+ ### Changed
26
+
27
+ - Celerity now uses (and requires) C++17. (5eec3e02)
28
+ - Celerity should now perform better with large command graphs. (5d876a5a)
21
29
- Celerity should now be able to automatically assign a unique compute device
22
30
to each node on a host, given that a sufficient number of devices is
23
31
available. (9d3da06e)
@@ -27,7 +35,11 @@ Versioning](http://semver.org/spec/v2.0.0.html).
27
35
- Don't print an error message regarding buffer lifetime for trivial programs
28
36
(i.e., programs containing no tasks). (ae133458)
29
37
38
+ ### Removed
39
+
40
+ - Removed ` celerity::queue::with_master_access ` , which is replaced by the
41
+ more powerful ` celerity::handler::host_task ` . (bbf90637)
42
+
30
43
## [ 0.1.0] - 2019-09-05
31
44
32
45
__ Hello, World!__ This is our first release!
33
-
0 commit comments