From c240ec02b0c6faaa703de48e03c873f8ee631861 Mon Sep 17 00:00:00 2001 From: Theodore Vasiloudis Date: Tue, 11 Jun 2024 23:34:04 +0000 Subject: [PATCH] Make IP config argument for distpart consistent with the rest of GSF --- python/graphstorm/gpartition/dist_partition_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/graphstorm/gpartition/dist_partition_graph.py b/python/graphstorm/gpartition/dist_partition_graph.py index 399390a04e..372faf3c3e 100644 --- a/python/graphstorm/gpartition/dist_partition_graph.py +++ b/python/graphstorm/gpartition/dist_partition_graph.py @@ -167,8 +167,8 @@ def parse_args() -> argparse.Namespace: help="The path to dgl/tools") argparser.add_argument("--partition-algorithm", type=str, default="random", choices=["random", "parmetis"], help="Partition algorithm to use.") - argparser.add_argument("--ip-list", type=str, - help="A file storing the ip list of instances of the partition cluster.") + argparser.add_argument("--ip-config", type=str, + help="A file storing a list of IPs, one line for each instance of the partition cluster.") argparser.add_argument("--do-dispatch", action='store_true') argparser.add_argument("--logging-level", type=str, default="info", help="The logging level. The possible values: debug, info, warning, \