56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
import os
|
|
from unittest import mock
|
|
|
|
import pytest
|
|
|
|
from pytorch_lightning.plugins.environments import SLURMEnvironment
|
|
|
|
|
|
@mock.patch.dict(os.environ, {})
|
|
def test_default_attributes():
|
|
""" Test the default attributes when no environment variables are set. """
|
|
env = SLURMEnvironment()
|
|
assert env.creates_children()
|
|
assert env.master_address() == "127.0.0.1"
|
|
assert env.master_port() == 12910
|
|
assert env.world_size() is None
|
|
with pytest.raises(KeyError):
|
|
# local rank is required to be passed as env variable
|
|
env.local_rank()
|
|
with pytest.raises(KeyError):
|
|
# node_rank is required to be passed as env variable
|
|
env.node_rank()
|
|
|
|
|
|
@mock.patch.dict(
|
|
os.environ, {
|
|
"SLURM_NODELIST": "1.1.1.1, 1.1.1.2",
|
|
"SLURM_JOB_ID": "0001234",
|
|
"WORLD_SIZE": "20",
|
|
"SLURM_LOCALID": "2",
|
|
"SLURM_NODEID": "3",
|
|
}
|
|
)
|
|
def test_attributes_from_environment_variables():
|
|
""" Test that the SLURM cluster environment takes the attributes from the environment variables. """
|
|
env = SLURMEnvironment()
|
|
assert env.master_address() == "1.1.1.1"
|
|
assert env.master_port() == 15000 + 1234
|
|
assert env.world_size() is None
|
|
assert env.local_rank() == 2
|
|
assert env.node_rank() == 3
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"slurm_node_list,expected", [
|
|
("alpha,beta,gamma", "alpha"),
|
|
("alpha beta gamma", "alpha"),
|
|
("1.2.3.[100-110]", "1.2.3.100"),
|
|
]
|
|
)
|
|
def test_master_address_from_slurm_node_list(slurm_node_list, expected):
|
|
""" Test extracting the master node from different formats for the SLURM_NODELIST. """
|
|
with mock.patch.dict(os.environ, {"SLURM_NODELIST": slurm_node_list}):
|
|
env = SLURMEnvironment()
|
|
assert env.master_address() == expected
|