Skip to content

Commit 5aa9fbc

Browse files
committed
#5: viz: full graph visualization
1 parent adb691c commit 5aa9fbc

File tree

4 files changed

+466
-1
lines changed

4 files changed

+466
-1
lines changed

src/vt-lb/algo/temperedlb/cluster_summarizer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ ClusterSummarizer::buildClusterSummaries(
233233
"max_ser_in=%.0f "
234234
"max_ser_out=%.0f "
235235
"shared_block_count=%zu\n",
236-
rank, cl.id, cl.members.size(), cl.load,
236+
rank, localToGlobalClusterID(cl.id, rank, global_max_clusters), cl.members.size(), cl.load,
237237
sum.cluster_intra_send_bytes, sum.cluster_intra_recv_bytes,
238238
sum.inter_edges_.size(),
239239
sum.cluster_footprint,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ struct Configuration {
9696
bool visualize_task_graph_ = false;
9797
/// @brief Whether to visualize the clusters
9898
bool visualize_clusters_ = false;
99+
/// @brief Whether to output full graph visualization: this is expensive
100+
bool visualize_full_graph_ = false;
99101

100102
/// @brief Tolerance for convergence
101103
double converge_tolerance_ = 0.01;

0 commit comments

Comments
 (0)