Skip to content

Commit 8269d8e

Browse files
authored
ParReduce: Fix comments (#5238)
1 parent 44e4f4b commit 8269d8e

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.github/workflows/dependencies/ubuntu_free_disk_space.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,35 @@ apt list --installed
2020
sudo apt-get remove -y '^apache.*'
2121
sudo apt-get remove -y '^aspnetcore.*'
2222
sudo apt-get remove -y '^azure.*'
23+
sudo apt-get remove -y '^buildah$'
24+
sudo apt-get remove -y '^containerd.*'
25+
sudo apt-get remove -y '^docker-ce$'
26+
sudo apt-get remove -y '^docker-ce-cli$'
2327
sudo apt-get remove -y '^dotnet.*'
2428
sudo apt-get remove -y '^firebird.*'
2529
sudo apt-get remove -y '^firefox.*'
2630
sudo apt-get remove -y '^google.*'
2731
sudo apt-get remove -y '^hhvm.*'
32+
sudo apt-get remove -y '^humanity-icon-theme$'
33+
sudo apt-get remove -y '^kubectl$'
34+
sudo apt-get remove -y '^libruby3\.2$'
35+
sudo apt-get remove -y '^mecab-ipadic$'
36+
sudo apt-get remove -y '^mercurial.*'
37+
sudo apt-get remove -y '^mesa-libgallium$'
2838
sudo apt-get remove -y '^microsoft.*'
2939
sudo apt-get remove -y '^mongodb.*'
3040
sudo apt-get remove -y '^mono-.*'
3141
sudo apt-get remove -y '^monodoc-.*'
3242
sudo apt-get remove -y '^mysql.*'
3343
sudo apt-get remove -y '^php.*'
44+
sudo apt-get remove -y '^podman$'
45+
sudo apt-get remove -y '^postgresql-16$'
3446
sudo apt-get remove -y '^powershell.*'
47+
sudo apt-get remove -y '^python3-botocore$'
48+
sudo apt-get remove -y '^ruby3\.2-doc$'
49+
sudo apt-get remove -y '^shellcheck$'
3550
sudo apt-get remove -y '^snapd.*'
51+
sudo apt-get remove -y '^skopeo$'
3652
sudo apt-get remove -y '^temurin.*'
3753

3854
sudo apt-get autoremove -y

Src/Base/AMReX_ParReduce.H

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,10 @@ ParReduce (TypeList<Ops...> operation_list, TypeList<Ts...> type_list,
186186
* \param fa a MultiFab/FabArray object used to specify the iteration space
187187
* \param nghost the number of ghost cells included in the iteration space
188188
* \param ncomp the number of components in the iteration space
189-
* \param f a callable object returning GpuTuple<T>. It takes four ints,
190-
* where the first int is the local box index and the others are
191-
* spatial indices for x, y, and z-directions.
189+
* \param f a callable object returning GpuTuple<T>. It takes five ints,
190+
* where the first int is the local box index, the next three are
191+
* spatial indices for x, y, and z-directions, and the last is for
192+
* component.
192193
*
193194
* \return reduction result (T)
194195
*/

0 commit comments

Comments
 (0)