mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134665 Approved by: https://github.com/albanD
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
#!/usr/bin/env python3
|
|
# Owner(s): ["oncall: r2p"]
|
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
import os
|
|
import shutil
|
|
import tempfile
|
|
import unittest
|
|
from contextlib import closing
|
|
|
|
import torch.distributed.launch as launch
|
|
from torch.distributed.elastic.utils import get_socket_with_port
|
|
from torch.testing._internal.common_utils import (
|
|
skip_but_pass_in_sandcastle_if,
|
|
TEST_WITH_DEV_DBG_ASAN,
|
|
)
|
|
|
|
|
|
def path(script):
|
|
return os.path.join(os.path.dirname(__file__), script)
|
|
|
|
|
|
class LaunchTest(unittest.TestCase):
|
|
def setUp(self):
|
|
self.test_dir = tempfile.mkdtemp()
|
|
# set a sentinel env var on the parent proc
|
|
# this should be present on the child and gets
|
|
# asserted in ``bin/test_script.py``
|
|
os.environ["TEST_SENTINEL_PARENT"] = "FOOBAR"
|
|
|
|
def tearDown(self):
|
|
shutil.rmtree(self.test_dir)
|
|
|
|
@skip_but_pass_in_sandcastle_if(
|
|
TEST_WITH_DEV_DBG_ASAN, "test incompatible with dev/dbg asan"
|
|
)
|
|
def test_launch_without_env(self):
|
|
nnodes = 1
|
|
nproc_per_node = 4
|
|
sock = get_socket_with_port()
|
|
with closing(sock):
|
|
master_port = sock.getsockname()[1]
|
|
args = [
|
|
f"--nnodes={nnodes}",
|
|
f"--nproc-per-node={nproc_per_node}",
|
|
"--monitor-interval=1",
|
|
"--start-method=spawn",
|
|
"--master-addr=localhost",
|
|
f"--master-port={master_port}",
|
|
"--node-rank=0",
|
|
path("bin/test_script_local_rank.py"),
|
|
]
|
|
launch.main(args)
|
|
|
|
@skip_but_pass_in_sandcastle_if(
|
|
TEST_WITH_DEV_DBG_ASAN, "test incompatible with dev/dbg asan"
|
|
)
|
|
def test_launch_with_env(self):
|
|
nnodes = 1
|
|
nproc_per_node = 4
|
|
world_size = nnodes * nproc_per_node
|
|
sock = get_socket_with_port()
|
|
with closing(sock):
|
|
master_port = sock.getsockname()[1]
|
|
args = [
|
|
f"--nnodes={nnodes}",
|
|
f"--nproc-per-node={nproc_per_node}",
|
|
"--monitor-interval=1",
|
|
"--start-method=spawn",
|
|
"--master-addr=localhost",
|
|
f"--master-port={master_port}",
|
|
"--node-rank=0",
|
|
"--use-env",
|
|
path("bin/test_script.py"),
|
|
f"--touch-file-dir={self.test_dir}",
|
|
]
|
|
launch.main(args)
|
|
# make sure all the workers ran
|
|
# each worker touches a file with its global rank as the name
|
|
self.assertSetEqual(
|
|
{str(i) for i in range(world_size)}, set(os.listdir(self.test_dir))
|
|
)
|