-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathplatform_util.py
459 lines (398 loc) · 17.5 KB
/
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
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
#
# -*- 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.
#
#
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os # noqa: F401
import re
import platform as system_platform
import subprocess
import sys
NUMA_NODES_STR_ = "NUMA node(s)"
CPU_SOCKETS_STR_ = "Socket(s)"
CORES_PER_SOCKET_STR_ = "Core(s) per socket"
THREADS_PER_CORE_STR_ = "Thread(s) per core"
LOGICAL_CPUS_STR_ = "CPU(s)"
NUMA_NODE_CPU_RANGE_STR_ = "NUMA node{} CPU(s):"
ONLINE_CPUS_LIST = "On-line CPU(s) list:"
class CPUInfo():
"""CPU information class."""
def __init__(self):
"""Initialize CPU information class."""
self._binding_data = CPUInfo._sort_membind_info(self._get_core_membind_info())
@staticmethod
def _get_core_membind_info():
"""
Return sorted information about cores and memory binding.
E.g.
CPU ID, Socket ID, Node ID, HT CPU ID,
0 , 0 , 0 , 0
1 , 0 , 0 , 1
:return: list with cpu, sockets, ht core and memory binding information
:rtype: List[List[str, Any]]
"""
args = ["lscpu", "--parse=CPU,Core,Socket,Node"]
process_lscpu = subprocess.check_output(args, universal_newlines=True).split("\n")
# Get information about core, node, socket and cpu. On a machine with no NUMA nodes, the last column is empty
# so regex also check for empty string on the last column
bind_info = []
for line in process_lscpu:
pattern = r"^([\d]+,[\d]+,[\d]+,([\d]+|$))"
regex_out = re.search(pattern, line)
if regex_out:
bind_info.append(regex_out.group(1).strip().split(","))
return bind_info
@staticmethod
def _sort_membind_info(membind_bind_info):
"""
Sore membind info data.
:param membind_bind_info: raw membind info data
:type membind_bind_info: List[List[str]]
:return: sorted membind info
:rtype: List[List[Dict[str, int]]]
"""
membind_cpu_list = []
nodes_count = int(max(element[2] for element in membind_bind_info)) + 1
# Sort list by Node id
for node_number in range(nodes_count):
node_core_list = []
core_info = {}
for entry in membind_bind_info:
cpu_id = int(entry[0])
core_id = int(entry[1])
node_id = int(entry[2])
# On a machine where there is no NUMA nodes, entry[3] could be empty, so set socket_id = -1
if entry[3] != "":
socket_id = int(entry[3])
else:
socket_id = -1
# Skip nodes other than current node number
if node_number != node_id:
continue
# Add core info
if cpu_id == core_id:
core_info.update({
core_id: {
"cpu_id": cpu_id,
"node_id": node_id,
"socket_id": socket_id,
},
})
else:
# Add information about Hyper Threading
core_info[core_id]["ht_cpu_id"] = cpu_id
# Change dict of dicts to list of dicts
for iterator in range(len(core_info)):
curr_core_id = len(core_info) * node_number + iterator
single_core_info = core_info.get(curr_core_id)
if single_core_info:
node_core_list.append(single_core_info)
membind_cpu_list.append(node_core_list)
return membind_cpu_list
@property
def sockets(self):
"""
Return count of sockets available on server.
:return: available cores
:rtype: int
"""
available_sockets = len(self._binding_data)
return int(available_sockets)
@property
def cores(self):
"""
Return amount of cores available on server.
:return: amount of cores
:rtype: int
"""
available_cores = self.cores_per_socket * self.sockets
return int(available_cores) # type: ignore
@property
def cores_per_socket(self):
"""
Return amount of available cores per socket.
:return: amount of cores
:rtype: int
"""
available_cores_per_socket = len(self._binding_data[0])
return available_cores_per_socket
@property
def binding_information(self):
"""
Return information about cores and memory binding.
Format:
[
[ # socket 0
{ # Core 0
"cpu_id": 0,
"node_id": 0,
"socket_id": 0,
"ht_cpu_id": 56
}
],
[ # socket 1
{ # Core 0
"cpu_id": 28,
"node_id": 1,
"socket_id": 1,
"ht_cpu_id": 84
}
]
]
:return: dict with cpu, sockets, ht core and memory binding information
:rtype: List[List[Dict[str, int]]]
"""
return self._binding_data
class PlatformUtil:
'''
This module implements a platform utility that exposes functions that
detects platform information.
'''
def __init__(self, args):
self.args = args
self.num_cpu_sockets = 0
self.num_cores_per_socket = 0
self.num_threads_per_core = 0
self.num_logical_cpus = 0
self.num_numa_nodes = 0
# Core list generated by numactl -H in the case where --numa-cores-per-instance is
# being used. It then gets pruned based on the cpuset_cpus, in case docker is
# limiting the cores that the container has access to
self.cpu_core_list = []
# Dictionary generated from the cpuset.cpus file (in linux_init) for the case where
# docker is limiting the number of cores that the container has access to
self.cpuset_cpus = None
os_type = system_platform.system()
if "Windows" == os_type:
self.windows_init()
elif "Mac" == os_type or "Darwin" == os_type:
self.mac_init()
elif "Linux" == os_type:
self.linux_init()
else:
raise ValueError("Unable to determine Operating system type.")
def _get_list_from_string_ranges(self, str_ranges):
"""
Converts a string of numbered ranges (comma separated numbers or ranges) to an
integer list. Duplicates should be removed and the integer list should be
ordered.
For example an input of "3-6,10,0-5" should return [0, 1, 2, 3, 4, 5, 6, 10]
"""
result_list = []
for section in str_ranges.split(","):
if "-" in section:
# Section is a range, so get the start and end values
start, end = section.split("-")
section_list = range(int(start), int(end) + 1)
result_list += section_list
elif len(section):
# This section is either empty or just a single number and not a range
result_list.append(int(section))
# Remove duplicates
result_list = list(set(result_list))
return result_list
def _get_cpuset(self):
"""
Try to get the cpuset.cpus info, since lscpu does not know if docker has limited
the cpuset accessible to the container
"""
cpuset = ""
cpuset_cpus_file = "/sys/fs/cgroup/cpuset/cpuset.cpus"
if os.path.exists(cpuset_cpus_file):
with open(cpuset_cpus_file, "r") as f:
cpuset = f.read()
if hasattr(self.args, "verbose") and self.args.verbose:
print("cpuset.cpus: {}".format(cpuset))
return cpuset
def linux_init(self):
lscpu_cmd = "lscpu"
try:
lscpu_output = subprocess.check_output([lscpu_cmd],
stderr=subprocess.STDOUT)
# handle python2 vs 3 (bytes vs str type)
if isinstance(lscpu_output, bytes):
lscpu_output = lscpu_output.decode('utf-8')
cpu_info = lscpu_output.split('\n')
except Exception as e:
print("Problem getting CPU info: {}".format(e))
sys.exit(1)
core_list_per_node = {}
online_cpus_list = ""
# parse it
for line in cpu_info:
# NUMA_NODES_STR_ = "NUMA node(s)"
if line.find(NUMA_NODES_STR_) == 0:
self.num_numa_nodes = int(line.split(":")[1].strip())
# CPU_SOCKETS_STR_ = "Socket(s)"
elif line.find(CPU_SOCKETS_STR_) == 0:
self.num_cpu_sockets = int(line.split(":")[1].strip())
# CORES_PER_SOCKET_STR_ = "Core(s) per socket"
elif line.find(CORES_PER_SOCKET_STR_) == 0:
self.num_cores_per_socket = int(line.split(":")[1].strip())
# THREADS_PER_CORE_STR_ = "Thread(s) per core"
elif line.find(THREADS_PER_CORE_STR_) == 0:
self.num_threads_per_core = int(line.split(":")[1].strip())
# LOGICAL_CPUS_STR_ = "CPU(s)"
elif line.find(LOGICAL_CPUS_STR_) == 0:
self.num_logical_cpus = int(line.split(":")[1].strip())
# ONLINE_CPUS_LIST = "On-line CPU(s) list"
elif line.find(ONLINE_CPUS_LIST) == 0:
online_cpus_list = line.split(":")[1].strip()
else:
# Get the ranges of cores per node from NUMA node* CPU(s)
for node in range(0, self.num_numa_nodes):
if line.find(NUMA_NODE_CPU_RANGE_STR_.format(str(node))) == 0:
range_for_node = line.split(":")[1].strip()
range_list_for_node = self._get_list_from_string_ranges(range_for_node)
core_list_per_node[node] = range_list_for_node
# Try to get the cpuset.cpus info, since lscpu does not know if the cpuset is limited
cpuset = self._get_cpuset()
if cpuset:
num_cores_arg = -1
if hasattr(self.args, "num_cores"):
num_cores_arg = self.args.num_cores
# If the cpuset is the same as the online_cpus_list, then we are using the whole
# machine, so let's avoid unnecessary complexity and don't bother with the cpuset_cpu list.
# The cpuset_cpus list will also get populated if the num_cores arg is being specified,
# since this list will be used to create the numactl args in base_model_init.py
if (online_cpus_list != "" and online_cpus_list != cpuset) or online_cpus_list == "" or num_cores_arg != -1:
self.cpuset_cpus = self._get_list_from_string_ranges(cpuset)
# Uses numactl get the core number for each numa node and adds the cores for each
# node to the cpu_cores_list array. Only do this if the command is trying to use
# numa_cores_per_instance we can't count on numactl being installed otherwise and
# this list is only used for the numactl multi-instance runs.
num_physical_cores = self.num_cpu_sockets * self.num_cores_per_socket
if self.num_numa_nodes > 0:
cores_per_node = int(num_physical_cores / self.num_numa_nodes)
else:
cores_per_node = self.num_cores_per_socket
if hasattr(self.args, "numa_cores_per_instance"):
if self.num_numa_nodes > 0 and self.args.numa_cores_per_instance is not None:
try:
# Get the list of cores
cpu_array_command = \
"numactl -H | grep 'node [0-9]* cpus:' |" \
"sed 's/.*node [0-9]* cpus: *//' | head -{0} |cut -f1-{1} -d' '".format(
self.num_numa_nodes, int(cores_per_node))
cpu_array = subprocess.Popen(
cpu_array_command, shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE).stdout.readlines()
for node_cpus in cpu_array:
node_cpus = str(node_cpus).lstrip("b'").replace("\\n'", " ")
self.cpu_core_list.append([x for x in node_cpus.split(" ") if x != ''])
# If we have the cpuset list, cross check that list with our core list and
# remove cores that are not part of the cpuset list
if self.cpuset_cpus is not None:
for socket, core_list in enumerate(self.cpu_core_list):
self.cpu_core_list[socket] = [x for x in core_list if int(x) in self.cpuset_cpus]
if hasattr(self.args, "verbose") and self.args.verbose:
print("Core list: {}".format(self.cpu_core_list), flush=True)
except Exception as e:
print("Warning: An error occured when getting the list of cores using '{}':\n {}".
format(cpu_array_command, e))
if self.cpuset_cpus is not None:
# Reformat the cpuset_cpus list so that it's split up by node
for node in core_list_per_node.keys():
core_list_per_node[node] = [x for x in core_list_per_node[node] if x in self.cpuset_cpus]
self.cpuset_cpus = core_list_per_node
# Remove cores that aren't part of the cpu_core_list
for socket in self.cpuset_cpus.keys():
if len(self.cpuset_cpus[socket]) > cores_per_node:
del self.cpuset_cpus[socket][cores_per_node:]
# Remove keys with empty lists (sockets where there are no cores enabled in the cpuset)
self.cpuset_cpus = {k: v for k, v in self.cpuset_cpus.items() if v}
# Update the number of sockets based on the cpuset
if len(self.cpuset_cpus.keys()) > 0:
self.num_cpu_sockets = len(self.cpuset_cpus.keys())
def windows_init(self):
NUM_SOCKETS_STR_ = "DeviceID"
CORES_PER_SOCKET_STR_ = "NumberOfCores"
THREAD_COUNT_STR_ = "ThreadCount"
NUM_LOGICAL_CPUS_STR_ = "NumberOfLogicalProcessors"
num_threads = 0
wmic_cmd = "wmic cpu get DeviceID, NumberOfCores, \
NumberOfLogicalProcessors, ThreadCount /format:list"
try:
wmic_output = subprocess.check_output(wmic_cmd, shell=True)
# handle python2 vs 3 (bytes vs str type)
if isinstance(wmic_output, bytes):
wmic_output = wmic_output.decode('utf-8')
cpu_info = wmic_output.split('\r\r\n')
except Exception as e:
print("Problem getting CPU info: {}".format(e))
sys.exit(1)
# parse it
for line in cpu_info:
# CORES_PER_SOCKET_STR_ = "NumberOfCores"
if line.find(CORES_PER_SOCKET_STR_) == 0:
self.num_cores_per_socket = int(line.split("=")[1].strip())
# NUM_LOGICAL_CPUS_STR_ = "NumberOfLogicalProcessors"
elif line.find(NUM_LOGICAL_CPUS_STR_) == 0:
self.num_logical_cpus = int(line.split("=")[1].strip())
# THREAD_COUNT_STR_ = "ThreadCount"
elif line.find(THREAD_COUNT_STR_) == 0:
num_threads = int(line.split("=")[1].strip())
self.num_cpu_sockets = len(re.findall(
r'\b%s\b' % re.escape(NUM_SOCKETS_STR_), wmic_output))
if self.num_cpu_sockets > 0 and num_threads:
self.num_threads_per_core =\
int(num_threads / self.num_cpu_sockets)
def mac_init(self):
raise NotImplementedError("Mac Support not yet implemented")
@property
def cores_per_socket(self):
"""
Return amount of available cores per socket.
:return: amount of cores
:rtype: int
"""
return int(self.num_cores_per_socket) # type: ignore
@property
def sockets(self):
"""
Return count of sockets available on server.
:return: available cores
:rtype: int
"""
return int(self.num_cpu_sockets) # type: ignore
@property
def cores(self):
"""
Return amount of cores available on server.
:return: amount of cores
:rtype: int
"""
available_cores = self.num_cores_per_socket * self.num_cpu_sockets
return int(available_cores) # type: ignore
@property
def logical_cores(self):
"""
Return amount of logical cores available on server.
:return: amount of logical cores
:rtype: int
"""
return int(self.num_logical_cpus) # type: ignore
@property
def numa_nodes(self):
"""
Return amount of numa nodes available on server.
:return: amount of numa nodes
:rtype: int
"""
return int(self.num_numa_nodes) # type: ignore