Skip to content

Commit 4a6e7c8

Browse files
authored
Update CHANGES for 24.11 (#4210)
1 parent b9d549b commit 4a6e7c8

File tree

3 files changed

+44
-13
lines changed

3 files changed

+44
-13
lines changed

.github/workflows/dependencies/dependencies_gcc.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ set -eu -o pipefail
1212
# failed files the given number of times.
1313
echo 'Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries
1414

15-
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
1615
sudo apt-get update
1716

1817
sudo apt-get install -y --no-install-recommends \

.github/workflows/intel.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@ jobs:
2424
restore-keys: |
2525
ccache-${{ github.workflow }}-${{ github.job }}-git-
2626
- name: Build & Install
27-
# /tmp/icpx-2d34de0e47/global_vars-header-4390fb.h:25:36: error: zero size arrays are an extension [-Werror,-Wzero-length-array]
28-
# 25 | const char* const kernel_names[] = {
29-
# | ^
30-
# 1 error generated.
31-
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-zero-length-array"}
27+
# Warnings in 2025.0: unused-variable, shadow
28+
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-unused-variable -Wno-shadow"}
3229
run: |
3330
export CCACHE_COMPRESS=1
3431
export CCACHE_COMPRESSLEVEL=10
@@ -73,11 +70,8 @@ jobs:
7370
restore-keys: |
7471
ccache-${{ github.workflow }}-${{ github.job }}-git-
7572
- name: Build & Install
76-
# /tmp/icpx-2d34de0e47/global_vars-header-4390fb.h:25:36: error: zero size arrays are an extension [-Werror,-Wzero-length-array]
77-
# 25 | const char* const kernel_names[] = {
78-
# | ^
79-
# 1 error generated.
80-
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-zero-length-array"}
73+
# Warnings in 2025.0: unused-variable, shadow
74+
env: {CXXFLAGS: "-fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-unused-variable -Wno-shadow"}
8175
run: |
8276
export CCACHE_COMPRESS=1
8377
export CCACHE_COMPRESSLEVEL=10
@@ -124,7 +118,8 @@ jobs:
124118
restore-keys: |
125119
ccache-${{ github.workflow }}-${{ github.job }}-git-
126120
- name: Build & Install
127-
env: {CXXFLAGS: "-fsycl -fsycl-targets=nvptx64-nvidia-cuda -Xsycl-target-backend --offload-arch=sm_80 -fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor"}
121+
# Warnings in 2025.0: unused-variable, shadow
122+
env: {CXXFLAGS: "-fsycl -fsycl-targets=nvptx64-nvidia-cuda -Xsycl-target-backend --offload-arch=sm_80 -fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-unused-variable -Wno-shadow"}
128123
run: |
129124
export CCACHE_COMPRESS=1
130125
export CCACHE_COMPRESSLEVEL=10
@@ -173,7 +168,8 @@ jobs:
173168
restore-keys: |
174169
ccache-${{ github.workflow }}-${{ github.job }}-git-
175170
- name: Build & Install
176-
env: {CXXFLAGS: "-fsycl -fsycl-targets=amdgcn-amd-amdhsa -Xsycl-target-backend --offload-arch=gfx90a -fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor"}
171+
# Warnings in 2025.0: unused-variable, shadow
172+
env: {CXXFLAGS: "-fsycl -fsycl-targets=amdgcn-amd-amdhsa -Xsycl-target-backend --offload-arch=gfx90a -fno-operator-names -Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-unused-variable -Wno-shadow"}
177173
run: |
178174
export CCACHE_COMPRESS=1
179175
export CCACHE_COMPRESSLEVEL=10

CHANGES

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
# 24.11
2+
3+
-- Add option to do stable redistribute with GPUs (#4200)
4+
5+
-- Remove HIP_INDIRECT_FUNCTION (#4199)
6+
7+
-- Use The_Comms_Arena in particle communication. (#4175)
8+
9+
-- Refactor grid-stride loop (#4190)
10+
11+
-- STL optimization: Bounding volume hierarchy (#4140)
12+
13+
-- Bounded sampling (#4195)
14+
15+
-- amrex::FFT (#4193)
16+
17+
-- SmallMatrix: Structured binding support (#4189)
18+
19+
-- SmallMatrix: Support 1-based indexing (#4188)
20+
21+
-- SoA: Public Getter for Names (#4187)
22+
23+
-- Named SoA Support (#4163)
24+
25+
-- Fix queryktharr() return value/behaviour. (#4186)
26+
27+
-- Add more build options for linear solvers (#4181)
28+
29+
-- New function for domain decomposition (#4183)
30+
31+
-- SmallMatrix: Matrix class with compile time size (#4176)
32+
33+
-- modify/remove the assertions about no hidden dimension (#4180)
34+
35+
-- Add comparison operator for boxarray and distromap. Add hdf5 to dep.py (#4173)
36+
137
# 24.10
238

339
-- TinyProfiler: Remove unnecessary precision() call (#4174)

0 commit comments

Comments
 (0)