-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathtest_monitor_system.py
333 lines (275 loc) · 10.1 KB
/
test_monitor_system.py
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
import time
from pathlib import Path
import pytest
import dpath
from pytest_voluptuous import S
from dvclive import Live
from dvclive.monitor_system import (
_SystemMonitor,
METRIC_CPU_COUNT,
METRIC_CPU_USAGE_PERCENT,
METRIC_CPU_PARALLELIZATION_PERCENT,
METRIC_RAM_USAGE_PERCENT,
METRIC_RAM_USAGE_GB,
METRIC_RAM_TOTAL_GB,
METRIC_DISK_USAGE_PERCENT,
METRIC_DISK_USAGE_GB,
METRIC_DISK_TOTAL_GB,
METRIC_GPU_COUNT,
METRIC_GPU_USAGE_PERCENT,
METRIC_VRAM_USAGE_PERCENT,
METRIC_VRAM_USAGE_GB,
METRIC_VRAM_TOTAL_GB,
GIGABYTES_DIVIDER,
)
from dvclive.utils import parse_metrics
def mock_psutil_cpu(mocker):
mocker.patch(
"dvclive.monitor_system.psutil.cpu_percent",
return_value=[10, 10, 10, 40, 50, 60],
)
mocker.patch("dvclive.monitor_system.psutil.cpu_count", return_value=6)
def mock_psutil_ram(mocker):
mocked_ram = mocker.MagicMock()
mocked_ram.percent = 50
mocked_ram.used = 2 * GIGABYTES_DIVIDER
mocked_ram.total = 4 * GIGABYTES_DIVIDER
mocker.patch(
"dvclive.monitor_system.psutil.virtual_memory", return_value=mocked_ram
)
def mock_psutil_disk(mocker):
mocked_disk = mocker.MagicMock()
mocked_disk.percent = 50
mocked_disk.used = 16 * GIGABYTES_DIVIDER
mocked_disk.total = 32 * GIGABYTES_DIVIDER
mocker.patch("dvclive.monitor_system.psutil.disk_usage", return_value=mocked_disk)
def mock_psutil_disk_with_oserror(mocker):
mocked_disk = mocker.MagicMock()
mocked_disk.percent = 50
mocked_disk.used = 16 * GIGABYTES_DIVIDER
mocked_disk.total = 32 * GIGABYTES_DIVIDER
mocker.patch(
"dvclive.monitor_system.psutil.disk_usage",
side_effect=[
mocked_disk,
OSError,
mocked_disk,
OSError,
],
)
def mock_pynvml(mocker, num_gpus=2):
prefix = "dvclive.monitor_system"
mocker.patch(f"{prefix}.GPU_AVAILABLE", bool(num_gpus))
mocker.patch(f"{prefix}.nvmlDeviceGetCount", return_value=num_gpus)
mocker.patch(f"{prefix}.nvmlInit", return_value=None)
mocker.patch(f"{prefix}.nvmlShutdown", return_value=None)
mocker.patch(f"{prefix}.nvmlDeviceGetHandleByIndex", return_value=None)
vram_info = mocker.MagicMock()
vram_info.used = 3 * 1024**3
vram_info.total = 6 * 1024**3
gpu_usage = mocker.MagicMock()
gpu_usage.memory = 5
gpu_usage.gpu = 10
mocker.patch(f"{prefix}.nvmlDeviceGetMemoryInfo", return_value=vram_info)
mocker.patch(f"{prefix}.nvmlDeviceGetUtilizationRates", return_value=gpu_usage)
@pytest.fixture
def cpu_metrics():
content = {
METRIC_CPU_COUNT: 6,
METRIC_CPU_USAGE_PERCENT: 30.0,
METRIC_CPU_PARALLELIZATION_PERCENT: 50.0,
METRIC_RAM_USAGE_PERCENT: 50.0,
METRIC_RAM_USAGE_GB: 2.0,
METRIC_RAM_TOTAL_GB: 4.0,
f"{METRIC_DISK_USAGE_PERCENT}/main": 50.0,
f"{METRIC_DISK_USAGE_GB}/main": 16.0,
f"{METRIC_DISK_TOTAL_GB}/main": 32.0,
}
result = {}
for name, value in content.items():
dpath.new(result, name, value)
return result
def _timeserie_schema(name, value):
return [{name: str(value), "timestamp": str, "step": "0"}]
@pytest.fixture
def cpu_timeseries():
return {
f"{METRIC_CPU_USAGE_PERCENT}.tsv": _timeserie_schema(
METRIC_CPU_USAGE_PERCENT.split("/")[-1], 30.0
),
f"{METRIC_CPU_PARALLELIZATION_PERCENT}.tsv": _timeserie_schema(
METRIC_CPU_PARALLELIZATION_PERCENT.split("/")[-1], 50.0
),
f"{METRIC_RAM_USAGE_PERCENT}.tsv": _timeserie_schema(
METRIC_RAM_USAGE_PERCENT.split("/")[-1], 50.0
),
f"{METRIC_RAM_USAGE_GB}.tsv": _timeserie_schema(
METRIC_RAM_USAGE_GB.split("/")[-1], 2.0
),
f"{METRIC_DISK_USAGE_PERCENT}/main.tsv": _timeserie_schema("main", 50.0),
f"{METRIC_DISK_USAGE_GB}/main.tsv": _timeserie_schema("main", 16.0),
}
@pytest.fixture
def gpu_timeseries():
return {
f"{METRIC_GPU_USAGE_PERCENT}/0.tsv": _timeserie_schema("0", 50.0),
f"{METRIC_GPU_USAGE_PERCENT}/1.tsv": _timeserie_schema("1", 50.0),
f"{METRIC_VRAM_USAGE_PERCENT}/0.tsv": _timeserie_schema("0", 50.0),
f"{METRIC_VRAM_USAGE_PERCENT}/1.tsv": _timeserie_schema("1", 50.0),
f"{METRIC_VRAM_USAGE_GB}/0.tsv": _timeserie_schema("0", 3.0),
f"{METRIC_VRAM_USAGE_GB}/1.tsv": _timeserie_schema("1", 3.0),
}
def test_monitor_system_is_false(tmp_dir, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=0)
system_monitor_mock = mocker.patch(
"dvclive.live._SystemMonitor", spec=_SystemMonitor
)
Live(tmp_dir, save_dvc_exp=False, monitor_system=False)
system_monitor_mock.assert_not_called()
def test_monitor_system_is_true(tmp_dir, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=0)
system_monitor_mock = mocker.patch(
"dvclive.live._SystemMonitor", spec=_SystemMonitor
)
Live(tmp_dir, save_dvc_exp=False, monitor_system=True)
system_monitor_mock.assert_called_once()
def test_all_threads_close(tmp_dir, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=0)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=True,
) as live:
first_end_spy = mocker.spy(live._system_monitor, "end")
first_end_spy.assert_not_called()
live.monitor_system(interval=0.01)
first_end_spy.assert_called_once()
second_end_spy = mocker.spy(live._system_monitor, "end")
# check the monitoring thread is stopped
second_end_spy.assert_called_once()
def test_ignore_non_existent_directories(tmp_dir, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk_with_oserror(mocker)
mock_pynvml(mocker, num_gpus=0)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=False,
) as live:
non_existent_disk = "/non-existent"
system_monitor = _SystemMonitor(
live=live,
interval=0.1,
num_samples=4,
directories_to_monitor={"main": "/", "non-existent": non_existent_disk},
)
metrics = system_monitor._get_metrics()
system_monitor.end()
assert not Path(non_existent_disk).exists()
assert f"{METRIC_DISK_USAGE_PERCENT}/non-existent" not in metrics
assert f"{METRIC_DISK_USAGE_GB}/non-existent" not in metrics
assert f"{METRIC_DISK_TOTAL_GB}/non-existent" not in metrics
@pytest.mark.timeout(2)
def test_monitor_system_metrics(tmp_dir, cpu_metrics, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=0)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=False,
) as live:
live.monitor_system(interval=0.05, num_samples=4)
# wait for the metrics to be logged.
# METRIC_DISK_TOTAL_GB is the last metric to be logged.
while len(dpath.search(live.summary, METRIC_DISK_TOTAL_GB)) == 0:
time.sleep(0.001)
live.next_step()
_, latest = parse_metrics(live)
schema = {"step": 0, **cpu_metrics}
assert latest == S(schema)
@pytest.mark.timeout(2)
def test_monitor_system_timeseries(tmp_dir, cpu_timeseries, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=0)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=False,
) as live:
live.monitor_system(interval=0.05, num_samples=4)
# wait for the metrics to be logged.
# METRIC_DISK_TOTAL_GB is the last metric to be logged.
while len(dpath.search(live.summary, METRIC_DISK_TOTAL_GB)) == 0:
time.sleep(0.001)
live.next_step()
timeseries, _ = parse_metrics(live)
prefix = Path(tmp_dir) / "plots/metrics"
schema = {str(prefix / name): value for name, value in cpu_timeseries.items()}
assert timeseries == S(schema)
@pytest.mark.timeout(2)
def test_monitor_system_metrics_with_gpu(tmp_dir, cpu_metrics, mocker):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=2)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=False,
) as live:
live.monitor_system(interval=0.05, num_samples=4)
# wait for the metrics to be logged.
# METRIC_DISK_TOTAL_GB is the last metric to be logged.
while len(dpath.search(live.summary, METRIC_DISK_TOTAL_GB)) == 0:
time.sleep(0.001)
live.next_step()
_, latest = parse_metrics(live)
schema = {"step": 0, **cpu_metrics}
gpu_content = {
METRIC_GPU_COUNT: 2,
f"{METRIC_GPU_USAGE_PERCENT}": {"0": 50.0, "1": 50.0},
f"{METRIC_VRAM_USAGE_PERCENT}": {"0": 50.0, "1": 50.0},
f"{METRIC_VRAM_USAGE_GB}": {"0": 3.0, "1": 3.0},
f"{METRIC_VRAM_TOTAL_GB}": {"0": 6.0, "1": 6.0},
}
for name, value in gpu_content.items():
dpath.new(schema, name, value)
assert latest == S(schema)
@pytest.mark.timeout(2)
def test_monitor_system_timeseries_with_gpu(
tmp_dir, cpu_timeseries, gpu_timeseries, mocker
):
mock_psutil_cpu(mocker)
mock_psutil_ram(mocker)
mock_psutil_disk(mocker)
mock_pynvml(mocker, num_gpus=2)
with Live(
tmp_dir,
save_dvc_exp=False,
monitor_system=False,
) as live:
live.monitor_system(interval=0.05, num_samples=4)
# wait for the metrics to be logged.
# METRIC_DISK_TOTAL_GB is the last metric to be logged.
while len(dpath.search(live.summary, METRIC_DISK_TOTAL_GB)) == 0:
time.sleep(0.001)
live.next_step()
timeseries, _ = parse_metrics(live)
prefix = Path(tmp_dir) / "plots/metrics"
schema = {str(prefix / name): value for name, value in cpu_timeseries.items()}
schema.update({str(prefix / name): value for name, value in gpu_timeseries.items()})
assert timeseries == S(schema)