@@ -92,8 +92,8 @@ enum struct TransferTypeEnum : uint8_t {
92
92
/* *
93
93
* \brief Form object clusters and attempt to perform swaps.
94
94
*
95
- * Object can be clustered including to arbitrary definition, and swaps
96
- * of entire clusters, including the nullset, between ranks are attempted.
95
+ * Object can be clustered according to arbitrary definition, and swaps
96
+ * of entire clusters, according the nullset, between ranks are attempted.
97
97
* This is especially useful when shared memory constraints are present,
98
98
* as breaking shared memory clusters results in higher overall memory
99
99
* footprint, in constrast with whole cluster swaps.
@@ -195,36 +195,6 @@ enum struct KnowledgeEnum : uint8_t {
195
195
Log = 2
196
196
};
197
197
198
- // / Enum for the strategy to be used in transfer stage
199
- enum struct TransferStrategyEnum : uint8_t {
200
- /* *
201
- * \brief Original strategy
202
- *
203
- * Transfer one object per transfer as in original Grapevine approach.
204
- */
205
- Original = 0 ,
206
- /* *
207
- * \brief Original strategy improved by recursion
208
- *
209
- * When single object transfer is rejected, attempt to recurse in order to
210
- * pull more objects into the transfer and hereby minimize work added by
211
- * said transfer.
212
- * This is especially useful when communication is taken into account, as
213
- * object transfers typically disrupt local vs. global communication edges.
214
- */
215
- Recursive = 1 ,
216
- /* *
217
- * \brief Form object clusters and attempt to perform swaps.
218
- *
219
- * Object can be clustered according to arbitrary definition, and swaps
220
- * of entire clusters, according the nullset, between ranks are attempted.
221
- * This is especially useful when shared memory constraints are present,
222
- * as breaking shared memory clusters results in higher overall memory
223
- * footprint, in constrast with whole cluster swaps.
224
- */
225
- ClusterSwap = 2 ,
226
- };
227
-
228
198
}}}} /* end namespace vt::vrt::collection::lb */
229
199
230
200
#endif /* INCLUDED_VT_VRT_COLLECTION_BALANCE_TEMPEREDLB_TEMPERED_ENUMS_H*/
0 commit comments