forked from intel/ai-reference-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_platform_util.py
269 lines (228 loc) · 11.8 KB
/
test_platform_util.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2018 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
import json
import pytest
import os
from mock import MagicMock, mock_open, patch
from benchmarks.common.platform_util import PlatformUtil, CPUInfo
from test_utils import platform_config
def setup_mock_values(mock_platform, mock_os, mock_subprocess):
platform_config.set_mock_system_type(mock_platform)
platform_config.set_mock_os_access(mock_os)
platform_config.set_mock_lscpu_subprocess_values(mock_subprocess)
@pytest.fixture
def os_mock(patch):
return patch("os.access")
@pytest.fixture
def subprocess_mock(patch):
return patch("subprocess.check_output")
@pytest.fixture
def subprocess_popen_mock(patch):
return patch("subprocess.Popen")
@pytest.fixture
def platform_mock(patch):
return patch("system_platform.system")
@pytest.fixture
def read_mock(patch):
return patch("read")
@patch("benchmarks.common.platform_util.PlatformUtil._get_cpuset")
def test_platform_util_lscpu_parsing(get_cpuset_mock, platform_mock, subprocess_mock, os_mock):
"""
Verifies that platform_utils gives us the proper values that we expect
based on the lscpu_output string provided.
"""
platform_mock.return_value = platform_config.SYSTEM_TYPE
os_mock.return_value = True
get_cpuset_mock.return_value = "0-111"
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
platform_util = PlatformUtil(MagicMock(verbose=True))
platform_util.linux_init()
assert platform_util.num_cpu_sockets == 2
assert platform_util.num_cores_per_socket == 28
assert platform_util.num_threads_per_core == 2
assert platform_util.num_logical_cpus == 112
assert platform_util.num_numa_nodes == 2
def test_platform_util_unsupported_os(platform_mock, subprocess_mock, os_mock):
"""
Verifies that platform_utils gives us the proper values that we expect
based on the lscpu_output string provided.
"""
os_mock.return_value = True
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
# Mac is not supported yet
platform_mock.return_value = "Mac"
with pytest.raises(NotImplementedError) as e:
PlatformUtil(MagicMock(verbose=True))
assert "Mac Support not yet implemented" in str(e)
def test_cpu_info_binding_information(subprocess_mock):
"""
Verifies that cpu_info binding_information property gives us the proper values
that we expect based on the lscpu_output string provided.
"""
subprocess_mock.return_value = (
'# The following is the parsable format, which can be fed to other\n'
'# programs. Each different item in every column has an unique ID\n'
'# starting from zero.\n# CPU,Core,Socket,Node\n0,0,0,0\n1,1,0,0\n'
'2,2,0,0\n3,3,0,0\n4,4,0,0\n5,5,0,0\n6,6,0,0\n7,7,0,0\n8,8,0,0\n'
'9,9,0,0\n10,10,0,0\n11,11,0,0\n12,12,0,0\n13,13,0,0\n14,14,0,0\n'
'15,15,0,0\n16,16,0,0\n17,17,0,0\n18,18,0,0\n19,19,0,0\n20,20,0,0\n'
'21,21,0,0\n22,22,0,0\n23,23,0,0\n24,24,0,0\n25,25,0,0\n26,26,0,0\n'
'27,27,0,0\n28,28,1,1\n29,29,1,1\n30,30,1,1\n31,31,1,1\n32,32,1,1\n'
'33,33,1,1\n34,34,1,1\n35,35,1,1\n36,36,1,1\n37,37,1,1\n38,38,1,1\n'
'39,39,1,1\n40,40,1,1\n41,41,1,1\n42,42,1,1\n43,43,1,1\n44,44,1,1\n'
'45,45,1,1\n46,46,1,1\n47,47,1,1\n48,48,1,1\n49,49,1,1\n50,50,1,1\n'
'51,51,1,1\n52,52,1,1\n53,53,1,1\n54,54,1,1\n55,55,1,1\n56,0,0,0\n'
'57,1,0,0\n58,2,0,0\n59,3,0,0\n60,4,0,0\n61,5,0,0\n62,6,0,0\n63,7,0,0\n'
'64,8,0,0\n65,9,0,0\n66,10,0,0\n67,11,0,0\n68,12,0,0\n69,13,0,0\n'
'70,14,0,0\n71,15,0,0\n72,16,0,0\n73,17,0,0\n74,18,0,0\n75,19,0,0\n'
'76,20,0,0\n77,21,0,0\n78,22,0,0\n79,23,0,0\n80,24,0,0\n81,25,0,0\n'
'82,26,0,0\n83,27,0,0\n84,28,1,1\n85,29,1,1\n86,30,1,1\n87,31,1,1\n'
'88,32,1,1\n89,33,1,1\n90,34,1,1\n91,35,1,1\n92,36,1,1\n93,37,1,1\n'
'94,38,1,1\n95,39,1,1\n96,40,1,1\n97,41,1,1\n98,42,1,1\n99,43,1,1\n'
'100,44,1,1\n101,45,1,1\n102,46,1,1\n103,47,1,1\n104,48,1,1\n105,49,1,1\n'
'106,50,1,1\n107,51,1,1\n108,52,1,1\n109,53,1,1\n110,54,1,1\n111,55,1,1\n')
generated_value = CPUInfo().binding_information
tests_data_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(tests_data_dir, "utils", "files", "sorted_membind_info.json")) as json_data:
expected_value = json.load(json_data)
assert generated_value == expected_value
def test_cpu_info_binding_information_no_numa(subprocess_mock):
"""
Verifies that cpu_info binding_information property gives us the proper values
that we expect based on the lscpu_output string provided.
"""
subprocess_mock.return_value = (
'# The following is the parsable format, which can be fed to other\n'
'# programs. Each different item in every column has an unique ID\n'
'# starting from zero.\n# CPU,Core,Socket,Node\n0,0,0,\n1,1,1,\n'
'2,2,2,\n3,3,3,\n')
generated_value = CPUInfo().binding_information
tests_data_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(tests_data_dir, "utils", "files", "sorted_membind_info_no_numa.json")) as json_data:
expected_value = json.load(json_data)
assert generated_value == expected_value
@patch("benchmarks.common.platform_util.PlatformUtil._get_cpuset")
def test_numa_cpu_core_list(get_cpuset_mock, subprocess_mock, subprocess_popen_mock, platform_mock, os_mock):
""" Test the platform utils to ensure that we are getting the proper core lists """
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
subprocess_popen_mock.return_value.stdout.readlines.return_value = platform_config.NUMA_CORES_OUTPUT
platform_mock.return_value = platform_config.SYSTEM_TYPE
get_cpuset_mock.return_value = "0-111"
os_mock.return_value = True
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
platform_util = PlatformUtil(MagicMock(verbose=True))
# ensure there are 2 items in the list since there are 2 sockets
assert len(platform_util.cpu_core_list) == 2
# ensure each list of cores has the length of the number of cores per socket
for core_list in platform_util.cpu_core_list:
assert len(core_list) == platform_util.num_cores_per_socket
def test_platform_util_wmic_parsing(platform_mock, subprocess_mock, os_mock):
"""
Verifies that platform_utils gives us the proper values that we expect
based on the wmic_output string provided.
"""
platform_mock.return_value = "Windows"
os_mock.return_value = True
subprocess_mock.return_value = platform_config.WMIC_OUTPUT
platform_util = PlatformUtil(MagicMock(verbose=True))
platform_util.windows_init()
assert platform_util.num_cpu_sockets == 2
assert platform_util.num_cores_per_socket == 28
assert platform_util.num_threads_per_core == 28
assert platform_util.num_logical_cpus == 56
assert platform_util.num_numa_nodes == 0
@patch("benchmarks.common.platform_util.PlatformUtil._get_cpuset")
@pytest.mark.parametrize('cpuset_range,expected_list',
[['0-5', [0, 1, 2, 3, 4, 5]],
['0-3,7,6', [0, 1, 2, 3, 6, 7]],
['2-3,7,9-11,20', [2, 3, 7, 9, 10, 11, 20]],
['0-3,7-6,11,11', [0, 1, 2, 3, 11]],
['7-9,5-10,6,4', [4, 5, 6, 7, 8, 9, 10]],
['0', [0]],
['', []]])
def test_get_list_from_string_ranges(get_cpuset_mock, platform_mock, subprocess_mock, os_mock,
cpuset_range, expected_list,):
"""
Tests the PlatformUtils _get_list_from_string_ranges function that converts string
number ranges to an integer list.
"""
platform_mock.return_value = platform_config.SYSTEM_TYPE
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
get_cpuset_mock.return_value = cpuset_range
os_mock.return_value = True
platform_util = PlatformUtil(MagicMock())
result = platform_util._get_list_from_string_ranges(cpuset_range)
assert result == expected_list
@pytest.mark.parametrize('cpuset_range,expected_core_list',
[["0-7,28-35",
[["0", "1", "2", "3", "4", "5", "6", "7"],
["28", "29", "30", "31", "32", "33", "34", "35"]]],
["0,2-5,20,29-32,1",
[["0", "1", "2", "3", "4", "5", "20"],
["29", "30", "31", "32"]]]])
@patch("os.path.exists")
def test_numa_cpu_core_list_cpuset(path_exists_mock, subprocess_mock, subprocess_popen_mock,
platform_mock, os_mock, cpuset_range, expected_core_list):
""" Test the platform utils to ensure that we are getting the proper core lists """
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
subprocess_popen_mock.return_value.stdout.readlines.return_value = platform_config.NUMA_CORES_OUTPUT
platform_mock.return_value = platform_config.SYSTEM_TYPE
os_mock.return_value = True
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
path_exists_mock.return_value = True
cpuset_mock = mock_open(read_data=cpuset_range)
with patch("builtins.open", cpuset_mock):
platform_util = PlatformUtil(MagicMock(verbose=True, numa_cores_per_instance=4))
# ensure there are 2 items in the list since there are 2 sockets
assert len(platform_util.cpu_core_list) == 2
# Check that the core list matches the ranges defined for the cpuset file read
assert platform_util.cpu_core_list == expected_core_list
@patch("benchmarks.common.platform_util.PlatformUtil._get_cpuset")
@pytest.mark.parametrize('cpuset_range,expected_num_sockets',
[['0-5', 1],
['0-3,7,6', 1],
['2-3,7,9-11,20', 1],
['0-3,7-6,11,11', 1],
['7-9,5-10,6,4', 1],
['0-111', 2],
['28-32,84-90', 1]])
def test_platform_utils_num_sockets_with_cpuset(get_cpuset_mock, platform_mock, subprocess_mock,
os_mock, cpuset_range, expected_num_sockets):
"""
Checks that the number of sockets in platform_utils reflects the proper value based on
the cpuset. If the cores being used by the container in the cpuset are all on one socket,
then the num_cpu_sockets should be 1, even if the system itself has 2 sockets (since the
container only has access to 1).
"""
platform_mock.return_value = platform_config.SYSTEM_TYPE
os_mock.return_value = True
get_cpuset_mock.return_value = cpuset_range
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
platform_util = PlatformUtil(MagicMock(verbose=True))
platform_util.linux_init()
assert platform_util.num_cpu_sockets == expected_num_sockets
def test_platform_util_with_no_args(platform_mock, subprocess_mock):
"""
Verifies that PlatformUtil object can be created with an empty string, as needed
by the performance Jupyter notebooks.
"""
platform_mock.return_value = platform_config.SYSTEM_TYPE
subprocess_mock.return_value = platform_config.LSCPU_OUTPUT
platform_util = PlatformUtil("")
assert platform_util.num_logical_cpus == 112