Skip to content

Commit

Permalink
[DistDGL] Fixing bug in test_dist_objects (dmlc#7179)
Browse files Browse the repository at this point in the history
  • Loading branch information
drivanov authored Mar 7, 2024
1 parent 3fd6a5d commit 996a936
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/dist/python/run_dist_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def run_server(
server_count,
num_clients,
shared_mem,
keep_alive=False,
):
# server_count = num_servers_per_machine
g = dgl.distributed.DistGraphServer(
Expand All @@ -55,7 +54,6 @@ def run_server(
graph_path + "/{}.json".format(graph_name),
disable_shared_mem=not shared_mem,
graph_format=["csc", "coo"],
keep_alive=keep_alive,
)
print("start server", server_id)
g.start()
Expand Down Expand Up @@ -774,7 +772,6 @@ def test_dist_dataloader(g):
server_count=num_servers_per_machine,
num_clients=num_part * num_client_per_machine,
shared_mem=shared_mem,
keep_alive=False,
)
elif mode == "client":
os.environ["DGL_NUM_SERVER"] = str(num_servers_per_machine)
Expand Down

0 comments on commit 996a936

Please sign in to comment.