mbuf: add rte prefix to offload flags
[dpdk.git] / usertools / cpu_layout.py
1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2010-2014 Intel Corporation
4 # Copyright(c) 2017 Cavium, Inc. All rights reserved.
5
6 sockets = []
7 cores = []
8 core_map = {}
9 base_path = "/sys/devices/system/cpu"
10 fd = open("{}/kernel_max".format(base_path))
11 max_cpus = int(fd.read())
12 fd.close()
13 for cpu in range(max_cpus + 1):
14     try:
15         fd = open("{}/cpu{}/topology/core_id".format(base_path, cpu))
16     except IOError:
17         continue
18     core = int(fd.read())
19     fd.close()
20     fd = open("{}/cpu{}/topology/physical_package_id".format(base_path, cpu))
21     socket = int(fd.read())
22     fd.close()
23     if core not in cores:
24         cores.append(core)
25     if socket not in sockets:
26         sockets.append(socket)
27     key = (socket, core)
28     if key not in core_map:
29         core_map[key] = []
30     core_map[key].append(cpu)
31
32 print(format("=" * (47 + len(base_path))))
33 print("Core and Socket Information (as reported by '{}')".format(base_path))
34 print("{}\n".format("=" * (47 + len(base_path))))
35 print("cores = ", cores)
36 print("sockets = ", sockets)
37 print("")
38
39 max_processor_len = len(str(len(cores) * len(sockets) * 2 - 1))
40 max_thread_count = len(list(core_map.values())[0])
41 max_core_map_len = (max_processor_len * max_thread_count)  \
42                       + len(", ") * (max_thread_count - 1) \
43                       + len('[]') + len('Socket ')
44 max_core_id_len = len(str(max(cores)))
45
46 output = " ".ljust(max_core_id_len + len('Core '))
47 for s in sockets:
48     output += " Socket %s" % str(s).ljust(max_core_map_len - len('Socket '))
49 print(output)
50
51 output = " ".ljust(max_core_id_len + len('Core '))
52 for s in sockets:
53     output += " --------".ljust(max_core_map_len)
54     output += " "
55 print(output)
56
57 for c in cores:
58     output = "Core %s" % str(c).ljust(max_core_id_len)
59     for s in sockets:
60         if (s, c) in core_map:
61             output += " " + str(core_map[(s, c)]).ljust(max_core_map_len)
62         else:
63             output += " " * (max_core_map_len + 1)
64     print(output)