usertools: fix CPU layout for more than 2 threads
[dpdk.git] / usertools / cpu_layout.py
1 #!/usr/bin/env python
2
3 #
4 #   BSD LICENSE
5 #
6 #   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 #   Copyright(c) 2017 Cavium Networks Ltd. All rights reserved.
8 #   All rights reserved.
9 #
10 #   Redistribution and use in source and binary forms, with or without
11 #   modification, are permitted provided that the following conditions
12 #   are met:
13 #
14 #     * Redistributions of source code must retain the above copyright
15 #       notice, this list of conditions and the following disclaimer.
16 #     * Redistributions in binary form must reproduce the above copyright
17 #       notice, this list of conditions and the following disclaimer in
18 #       the documentation and/or other materials provided with the
19 #       distribution.
20 #     * Neither the name of Intel Corporation nor the names of its
21 #       contributors may be used to endorse or promote products derived
22 #       from this software without specific prior written permission.
23 #
24 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #
36 from __future__ import print_function
37 import sys
38
39 sockets = []
40 cores = []
41 core_map = {}
42 base_path = "/sys/devices/system/cpu"
43 fd = open("{}/kernel_max".format(base_path))
44 max_cpus = int(fd.read())
45 fd.close()
46 for cpu in xrange(max_cpus + 1):
47     try:
48         fd = open("{}/cpu{}/topology/core_id".format(base_path, cpu))
49     except IOError:
50         continue
51     except:
52         break
53     core = int(fd.read())
54     fd.close()
55     fd = open("{}/cpu{}/topology/physical_package_id".format(base_path, cpu))
56     socket = int(fd.read())
57     fd.close()
58     if core not in cores:
59         cores.append(core)
60     if socket not in sockets:
61         sockets.append(socket)
62     key = (socket, core)
63     if key not in core_map:
64         core_map[key] = []
65     core_map[key].append(cpu)
66
67 print(format("=" * (47 + len(base_path))))
68 print("Core and Socket Information (as reported by '{}')".format(base_path))
69 print("{}\n".format("=" * (47 + len(base_path))))
70 print("cores = ", cores)
71 print("sockets = ", sockets)
72 print("")
73
74 max_processor_len = len(str(len(cores) * len(sockets) * 2 - 1))
75 max_thread_count = len(core_map.values()[0])
76 max_core_map_len = (max_processor_len * max_thread_count)  \
77                       + len(", ") * (max_thread_count - 1) \
78                       + len('[]') + len('Socket ')
79 max_core_id_len = len(str(max(cores)))
80
81 output = " ".ljust(max_core_id_len + len('Core '))
82 for s in sockets:
83     output += " Socket %s" % str(s).ljust(max_core_map_len - len('Socket '))
84 print(output)
85
86 output = " ".ljust(max_core_id_len + len('Core '))
87 for s in sockets:
88     output += " --------".ljust(max_core_map_len)
89     output += " "
90 print(output)
91
92 for c in cores:
93     output = "Core %s" % str(c).ljust(max_core_id_len)
94     for s in sockets:
95         if core_map.has_key((s,c)):
96             output += " " + str(core_map[(s, c)]).ljust(max_core_map_len)
97         else:
98             output += " " * (max_core_map_len + 1)
99     print(output)