Skip to content

Commit fe84f36

Browse files
committed
#5: LB: fix spelling mistakes
1 parent 1c31570 commit fe84f36

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vt-lb/algo/temperedlb/clustering.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
7070
struct Clusterer {
7171
using TaskType = vt_lb::model::TaskType;
7272
using BytesType = vt_lb::model::BytesType;

src/vt-lb/algo/temperedlb/temperedlb.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)