-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathtest_pals_settings.py
More file actions
205 lines (168 loc) · 6.34 KB
/
test_pals_settings.py
File metadata and controls
205 lines (168 loc) · 6.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# BSD 2-Clause License
#
# Copyright (c) 2021-2025, Hewlett Packard Enterprise
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import os.path as osp
import shutil
import sys
import pytest
import smartsim._core.config.config
from smartsim._core.launcher import PBSLauncher
from smartsim._core.launcher.step.mpiStep import MpiexecStep
from smartsim.error import SSUnsupportedError
from smartsim.settings import PalsMpiexecSettings
# The tests in this file belong to the group_b group
pytestmark = pytest.mark.group_b
default_exe = sys.executable
default_kwargs = {"fail_if_missing_exec": False}
# Uncomment when
# @pytest.mark.parametrize(
# "function_name",[
# 'set_task_map',
# 'set_cpus_per_task',
# 'set_quiet_launch',
# 'set_walltime'
# ]
# )
# def test_unsupported_methods(function_name):
# settings = PalsMpiexecSettings(default_exe, **default_kwargs)
# func = getattr(settings, function_name)
# with pytest.raises(SSUnsupportedError):
# func(None)
def test_set_launcher_args():
settings = PalsMpiexecSettings(default_exe, **default_kwargs)
settings.set_launcher_args({"mem-bind": "none", "line-buffer": ""})
assert settings.format_run_args() == ["--mem-bind", "none", "--line-buffer"]
def test_affinity_script():
settings = PalsMpiexecSettings(default_exe, **default_kwargs)
settings.set_gpu_affinity_script("/path/to/set_affinity_gpu.sh", 1, 2)
assert settings.format_run_args() == ["/path/to/set_affinity_gpu.sh", "1", "2"]
def test_cpu_binding_type():
settings = PalsMpiexecSettings(default_exe, **default_kwargs)
settings.set_cpu_binding_type("numa")
assert settings.format_run_args() == ["--cpu-bind", "numa"]
def test_tasks_per_node():
settings = PalsMpiexecSettings(default_exe, **default_kwargs)
settings.set_tasks_per_node(48)
assert settings.format_run_args() == ["--ppn", "48"]
def test_broadcast():
settings = PalsMpiexecSettings(default_exe, **default_kwargs)
settings.set_broadcast()
assert settings.format_run_args() == ["--transfer"]
def test_format_env_vars():
example_env_vars = {"FOO_VERSION": "3.14", "PATH": None, "LD_LIBRARY_PATH": None}
settings = PalsMpiexecSettings(
default_exe, **default_kwargs, env_vars=example_env_vars
)
formatted = " ".join(settings.format_env_vars())
expected = "--env FOO_VERSION=3.14 --envlist PATH,LD_LIBRARY_PATH"
assert formatted == expected
@pytest.fixture
def mock_mpiexec(monkeypatch, fileutils):
stub_path = fileutils.get_test_dir_path(osp.join("mpi_impl_stubs", "pals"))
monkeypatch.setenv("PATH", stub_path, prepend=":")
yield osp.join(stub_path, "mpiexec")
def set_env_var_to_inherit(rs):
rs.env_vars["SPAM"] = None
@pytest.mark.parametrize(
"rs_mutation, run_args",
[
pytest.param(
lambda rs: rs.set_tasks(3),
["--np", "3"],
id="set run args",
),
pytest.param(
set_env_var_to_inherit,
["--envlist", "SPAM"],
id="env var [inherit from env]",
),
pytest.param(
lambda rs: rs.update_env({"SPAM": "EGGS"}),
["--env", "SPAM=EGGS"],
id="env var [w/ val]",
),
],
)
def test_pbs_can_make_step_from_pals_settings_fmt_cmd(
monkeypatch, mock_mpiexec, test_dir, rs_mutation, run_args
):
# Setup run settings
exe_args = ["-c", """'print("Hello")'"""]
rs = PalsMpiexecSettings(sys.executable, exe_args)
rs_mutation(rs)
# setup a launcher and pretend we are in an alloc
launcher = PBSLauncher()
monkeypatch.setenv(f"PBS_JOBID", "mock-job")
wdir = test_dir
step = launcher.create_step("my_step", wdir, rs)
assert isinstance(step, MpiexecStep)
assert step.get_launch_cmd() == [
mock_mpiexec,
"--wdir",
wdir,
*run_args,
sys.executable,
*exe_args,
]
def test_pals_settings_can_be_correctly_made_mpmd(monkeypatch, test_dir, mock_mpiexec):
# Setup run settings
def make_rs(exe, exe_args):
return PalsMpiexecSettings(exe, exe_args), [exe] + exe_args
echo = shutil.which("echo")
rs_1, expected_exe_1 = make_rs(echo, ["spam"])
rs_2, expected_exe_2 = make_rs(echo, ["and"])
rs_3, expected_exe_3 = make_rs(echo, ["eggs"])
# modify run args
def set_tasks(rs, num):
rs.set_tasks(num)
return rs, ["--np", str(num)]
rs_1, expected_rs_1 = set_tasks(rs_1, 5)
rs_2, expected_rs_2 = set_tasks(rs_2, 2)
rs_3, expected_rs_3 = set_tasks(rs_3, 8)
# MPMD it up
rs_1.make_mpmd(rs_2)
rs_1.make_mpmd(rs_3)
# setup a launcher and pretend we are in an alloc
launcher = PBSLauncher()
monkeypatch.setenv(f"PBS_JOBID", "mock-job")
wdir = test_dir
step = launcher.create_step("my_step", wdir, rs_1)
assert isinstance(step, MpiexecStep)
assert step.get_launch_cmd() == [
mock_mpiexec,
"--wdir",
wdir,
# rs 1
*expected_rs_1,
*expected_exe_1,
":",
# rs 2
*expected_rs_2,
*expected_exe_2,
":",
# rs 3
*expected_rs_3,
*expected_exe_3,
]