|
7 | 7 | namespace amrex { |
8 | 8 |
|
9 | 9 | /** |
10 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 10 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 11 | + * and it's the user's responsibility if MPI communication is needed. |
11 | 12 | * |
12 | 13 | * This performs reduction over a MultiFab's valid and specified ghost regions. For |
13 | 14 | * example, the code below computes the minimum of the first MultiFab and the maximum of |
@@ -55,7 +56,8 @@ ParReduce (TypeList<Ops...> operation_list, TypeList<Ts...> type_list, |
55 | 56 | } |
56 | 57 |
|
57 | 58 | /** |
58 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 59 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 60 | + * and it's the user's responsibility if MPI communication is needed. |
59 | 61 | * |
60 | 62 | * This performs reduction over a MultiFab's valid and specified ghost regions. For |
61 | 63 | * example, the code below computes the sum of the processed data in a MultiFab. |
@@ -106,7 +108,8 @@ ParReduce (TypeList<Op> operation_list, TypeList<T> type_list, |
106 | 108 | } |
107 | 109 |
|
108 | 110 | /** |
109 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 111 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 112 | + * and it's the user's responsibility if MPI communication is needed. |
110 | 113 | * |
111 | 114 | * This performs reduction over a MultiFab's valid and specified ghost regions and |
112 | 115 | * components. For example, the code below computes the minimum of the first MultiFab |
@@ -156,7 +159,8 @@ ParReduce (TypeList<Ops...> operation_list, TypeList<Ts...> type_list, |
156 | 159 | } |
157 | 160 |
|
158 | 161 | /** |
159 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 162 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 163 | + * and it's the user's responsibility if MPI communication is needed. |
160 | 164 | * |
161 | 165 | * This performs reduction over a MultiFab's valid and specified ghost regions. For |
162 | 166 | * example, the code below computes the sum of the data in a MultiFab. |
@@ -203,7 +207,8 @@ ParReduce (TypeList<Op> operation_list, TypeList<T> type_list, |
203 | 207 | } |
204 | 208 |
|
205 | 209 | /** |
206 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 210 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 211 | + * and it's the user's responsibility if MPI communication is needed. |
207 | 212 | * |
208 | 213 | * This performs reduction over a MultiFab's valid region. For |
209 | 214 | * example, the code below computes the minimum of the first MultiFab and the maximum of |
@@ -245,7 +250,8 @@ ParReduce (TypeList<Ops...> operation_list, TypeList<Ts...> type_list, |
245 | 250 | } |
246 | 251 |
|
247 | 252 | /** |
248 | | - * \brief Parallel reduce for MultiFab/FabArray. |
| 253 | + * \brief Parallel reduce for MultiFab/FabArray. The reduce result is local |
| 254 | + * and it's the user's responsibility if MPI communication is needed. |
249 | 255 | * |
250 | 256 | * This performs reduction over a MultiFab's valid region. For |
251 | 257 | * example, the code below computes the sum of the processed data in a MultiFab. |
|
0 commit comments