Skip to content

Commit 759306f

Browse files
update zenodoo and changelog for release 2.1
1 parent f5bdb18 commit 759306f

2 files changed

Lines changed: 63 additions & 23 deletions

File tree

.zenodo.json

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,15 @@
22
"title": "alpaka: Abstraction Library for Parallel Kernel Acceleration",
33
"description": "The alpaka library is a header-only C++20 abstraction library for accelerator development. Its aim is to provide performance portability across accelerators through the abstraction (not hiding!) of the underlying levels of parallelism.",
44
"creators": [
5-
{
6-
"name": "Widera, René",
7-
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
8-
"orcid": "0000-0003-1642-0459"
9-
},
105
{
116
"name": "Bocci, Andrea",
127
"affiliation": "CERN",
138
"orcid": "0000-0002-6515-5666"
149
},
1510
{
16-
"name": "Almarzouqi, Abdulrahman",
17-
"affiliation": "University of Bahrain",
18-
"orcid": "0009-0001-7712-8139"
11+
"name": "Widera, René",
12+
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
13+
"orcid": "0000-0003-1642-0459"
1914
},
2015
{
2116
"name": "Balducci, Simone",
@@ -27,11 +22,6 @@
2722
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
2823
"orcid": "0000-0002-8218-3116"
2924
},
30-
{
31-
"name": "Lenz, Julian",
32-
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
33-
"orcid": "0000-0001-5250-0005"
34-
},
3525
{
3626
"name": "Michailidi, Maria",
3727
"affiliation": "CERN",
@@ -41,18 +31,15 @@
4131
"name": "Perego, Aurora",
4232
"affiliation": "CERN",
4333
"orcid": "0009-0002-5210-6213"
44-
},
45-
{
46-
"name": "Reinhard, Anton",
47-
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
48-
"orcid": "0009-0004-6483-2137"
49-
},
50-
{
51-
"name": "Yusufoglu, Mehmet",
52-
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf"
5334
}
5435
],
5536
"contributors": [
37+
{
38+
"name": "Almarzouqi, Abdulrahman",
39+
"affiliation": "University of Bahrain",
40+
"orcid": "0009-0001-7712-8139",
41+
"type": "Other"
42+
},
5643
{
5744
"name": "Bastrakov, Sergei",
5845
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
@@ -129,6 +116,12 @@
129116
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",
130117
"type": "Other"
131118
},
119+
{
120+
"name": "Lenz, Julian",
121+
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
122+
"orcid": "0000-0001-5250-0005",
123+
"type": "Other"
124+
},
132125
{
133126
"name": "Martin-Haugh, Stewart",
134127
"affiliation": "STFC Rutherford Appleton Laboratory",
@@ -149,7 +142,8 @@
149142
{
150143
"name": "Narwal, Tapish",
151144
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
152-
"orcid": "0000-0002-5726-2330"
145+
"orcid": "0000-0002-5726-2330",
146+
"type": "Other"
153147
},
154148
{
155149
"name": "Nash, Phil",
@@ -162,6 +156,12 @@
162156
"orcid": "0000-0003-3266-4357",
163157
"type": "Other"
164158
},
159+
{
160+
"name": "Reinhard, Anton",
161+
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
162+
"orcid": "0009-0004-6483-2137",
163+
"type": "Other"
164+
},
165165
{
166166
"name": "Rogers, David M.",
167167
"affiliation": "Oak Ridge National Laboratory",
@@ -226,6 +226,11 @@
226226
"orcid": "0000-0001-9841-4057",
227227
"type": "Other"
228228
},
229+
{
230+
"name": "Yusufoglu, Mehmet",
231+
"affiliation": "CASUS, Helmholtz-Zentrum Dresden-Rossendorf",
232+
"type": "Other"
233+
},
229234
{
230235
"name": "Zacharias, Malte",
231236
"affiliation": "Helmholtz-Zentrum Dresden-Rossendorf",

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22
All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5+
6+
## [2.1.0] - 2026-12-XX
7+
8+
### Added
9+
10+
- Implement creation of CUDA/HIP Queue with external Stream #2531
11+
- Implement `alpaka::transform` #2544
12+
- Implement `concept alpaka::concepts::Acc` #2547
13+
- Implement `alpaka::exec<Tag>` #2550
14+
- Implement `alpaka::allocAsyncBuf()` for SYCL devices #2565
15+
- Implement compile-time warp size for SYCL, when available #2570
16+
- HIP: add `ALPAKA_ARCH_AMD` definition #2577
17+
- Feature accessors and span conversion for buffers # 2579
18+
- Add new backends: CUDA and HIP backends of oneAPI #2580
19+
-
20+
### Changed
21+
22+
- Use `__builtin_assume_aligned()` to promise the correct alignment #2537
23+
- Update Catch2 to v3.8.1 #2539
24+
- Separate ViewAccessOps for host and device views #2562
25+
- Extend `alpaka::allocAsyncBuf()` to N-dimensional buffers on CUDA/HIP devices #2566
26+
- Provide `atomicInc/Dec` overloads with deduced limit values #2583
27+
- Specialize DevType for accelerator Tags #2584
28+
-
29+
### Fixed
30+
31+
- Add missing `#include` for SYCL tags #2534
32+
- Fix windows operation system detection #2558
33+
- Fix version macros #2561
34+
- Do not crash if a SYCL platform is invalid or empty #2564
35+
- Do not include the null terminaton character in the demangled string_view #2571
36+
- Fix `SYCL_SUBGROUP_SIZE` macro for Sycl #2576
37+
- Fix `atomicDec()` for CPU #2581
38+
39+
540
## [2.0.0] - 2025-06-25
641

742
### Added

0 commit comments

Comments
 (0)