File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/vt-lb/algo/temperedlb Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ struct Cluster {
6666 vt_lb::model::LoadType load = 0.0 ;
6767};
6868
69- // Assumption: all tasks much exist to at least one cluster
69+ // Assumption: all tasks must exist to at least one cluster
7070struct Clusterer {
7171 using TaskType = vt_lb::model::TaskType;
7272 using BytesType = vt_lb::model::BytesType;
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ struct TemperedLB final : baselb::BaseLB {
275275 }
276276
277277 void run () {
278- // Make communications symmetric before running trials so we only have to done it once
278+ // Make communications symmetric before running trials so we only have to do it once
279279 makeCommunicationsSymmetric ();
280280
281281 for (int trial = 0 ; trial < config_.num_trials_ ; ++trial) {
@@ -306,7 +306,7 @@ struct TemperedLB final : baselb::BaseLB {
306306 computeStatistics (total_memory_usage, " Memory Usage" );
307307 }
308308
309- // Run the clustering algorithm if appropiate for the configuration
309+ // Run the clustering algorithm if appropriate for the configuration
310310 doClustering ();
311311
312312 // Generate visualization after clustering
@@ -331,7 +331,7 @@ struct TemperedLB final : baselb::BaseLB {
331331#else
332332 // Just assume max of 1000 clusters per rank for now, until we have bcast
333333#endif
334- // For now, we will assume that if beta/gemma /delta are non-zero, clustering must occur.
334+ // For now, we will assume that if beta/gamma /delta are non-zero, clustering must occur.
335335 // Every task could be its own cluster, but clusters must exist
336336 assert (clusterer_ != nullptr && " Clusterer must be valid" );
337337 auto local_summary = buildClusterSummaries ();
You can’t perform that action at this time.
0 commit comments