Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jalencato committed Dec 13, 2024
1 parent 52971ab commit 2f9efa6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/graphstorm/gpartition/dist_partition_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def main():
os.path.join(output_path, "dist_graph"),
args.metadata_filename,
args.dgl_tool_path,
args.ssh_port)
args.ssh_port,
args.process_group_timeout)

logging.info("DGL graph building took %f sec", dgl_graph_start - time.time())

Expand Down Expand Up @@ -241,7 +242,8 @@ def parse_args() -> argparse.Namespace:
help=("Whether to convert the partitioned data to the GraphBolt format "
"after creating the DistDGL graph."))
argparser.add_argument("--process-group-timeout", type=int, default=1800,
help="Timeout[seconds] for operations executed against the process group.")
help="Timeout[seconds] for operations executed "
"against the process group.")

return argparser.parse_args()

Expand Down

0 comments on commit 2f9efa6

Please sign in to comment.