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
|
################################################################################
# BSD LICENSE
#
# Copyright(c) 2019-2023 Intel Corporation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Intel Corporation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
################################################################################
import argparse
import time
from pqos import Pqos
from pqos.capability import PqosCap, CPqosMonitor
from pqos.cpuinfo import PqosCpuInfo
from pqos.monitoring import PqosMon
def get_event_name(event_type):
"""
Converts a monitoring event type to a string label required by libpqos
Python wrapper.
Parameters:
event_type: monitoring event type
Returns:
a string label
"""
event_map = {
CPqosMonitor.PQOS_MON_EVENT_L3_OCCUP: 'l3_occup',
CPqosMonitor.PQOS_MON_EVENT_LMEM_BW: 'lmem_bw',
CPqosMonitor.PQOS_MON_EVENT_TMEM_BW: 'tmem_bw',
CPqosMonitor.PQOS_MON_EVENT_RMEM_BW: 'rmem_bw',
CPqosMonitor.PQOS_PERF_EVENT_LLC_MISS: 'perf_llc_miss',
CPqosMonitor.PQOS_PERF_EVENT_IPC: 'perf_ipc'
}
return event_map.get(event_type)
def get_supported_events():
"""
Returns a list of supported monitoring events.
Returns:
a list of supported monitoring events
"""
cap = PqosCap()
mon_cap = cap.get_type('mon')
events = [get_event_name(event.type) for event in mon_cap.events]
# Filter out perf events
events = list(filter(lambda event: 'perf' not in event, events))
return events
def get_all_cores():
"""
Returns all available cores.
Returns:
a list of available cores
"""
cores = []
cpu = PqosCpuInfo()
sockets = cpu.get_sockets()
for socket in sockets:
cores += cpu.get_cores(socket)
return cores
def bytes_to_kb(num_bytes):
"""
Converts bytes to kilobytes.
Parameters:
num_bytes number of bytes
Returns:
number of kilobytes
"""
return num_bytes / 1024.0
def bytes_to_mb(num_bytes):
"""
Converts bytes to megabytes.
Parameters:
num_bytes: number of bytes
Returns:
number of megabytes
"""
return num_bytes / (1024.0 * 1024.0)
class Monitoring:
"Generic class for monitoring"
def __init__(self):
self.mon = PqosMon()
self.groups = []
def setup_groups(self):
"Sets up monitoring groups. Needs to be implemented by a derived class."
return []
def setup(self):
"Resets monitoring and configures (starts) monitoring groups."
self.mon.reset()
self.groups = self.setup_groups()
def update(self):
"Updates values for monitored events."
self.mon.poll(self.groups)
def print_data(self):
"""Prints current values for monitored events. Needs to be implemented
by a derived class."""
pass
def stop(self):
"Stops monitoring."
for group in self.groups:
group.stop()
class MonitoringCore(Monitoring):
"Monitoring per core"
def __init__(self, cores, events):
"""
Initializes object of this class with cores and events to monitor.
Parameters:
cores: a list of cores to monitor
events: a list of monitoring events
"""
super(MonitoringCore, self).__init__()
self.cores = cores or get_all_cores()
self.events = events
def setup_groups(self):
"""
Starts monitoring for each core using separate monitoring groups for
each core.
Returns:
created monitoring groups
"""
groups = []
for core in self.cores:
group = self.mon.start([core], self.events)
groups.append(group)
return groups
def print_data(self):
"Prints current values for monitored events."
print(" CORE RMID LLC[KB] MBL[MB] MBR[MB]")
for group in self.groups:
core = group.cores[0]
rmid = group.poll_ctx[0].rmid if group.poll_ctx else 'N/A'
llc = bytes_to_kb(group.values.llc)
mbl = bytes_to_mb(group.values.mbm_local_delta)
mbr = bytes_to_mb(group.values.mbm_remote_delta)
print("%8u %8s %10.1f %10.1f %10.1f" % (core, rmid, llc, mbl, mbr))
class MonitoringPid(Monitoring):
"Monitoring per PID (OS interface only)"
def __init__(self, pids, events):
"""
Initializes object of this class with PIDs and events to monitor.
Parameters:
pids: a list of PIDs to monitor
events: a list of monitoring events
"""
super(MonitoringPid, self).__init__()
self.pids = pids
self.events = events
def setup_groups(self):
"""
Starts monitoring for each PID using separate monitoring groups for
each PID.
Returns:
created monitoring groups
"""
groups = []
for pid in self.pids:
group = self.mon.start_pids([pid], self.events)
groups.append(group)
return groups
def print_data(self):
"Prints current values for monitored events."
print(" PID LLC[KB] MBL[MB] MBR[MB]")
for group in self.groups:
pid = group.pids[0]
llc = bytes_to_kb(group.values.llc)
mbl = bytes_to_mb(group.values.mbm_local_delta)
mbr = bytes_to_mb(group.values.mbm_remote_delta)
print("%6d %10.1f %10.1f %10.1f" % (pid, llc, mbl, mbr))
class PqosContextManager:
"""
Helper class for using PQoS library Python wrapper as a context manager
(in with statement).
"""
def __init__(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
self.pqos = Pqos()
def __enter__(self):
"Initializes PQoS library."
self.pqos.init(*self.args, **self.kwargs)
return self.pqos
def __exit__(self, *args, **kwargs):
"Finalizes PQoS library."
self.pqos.fini()
return None
def parse_args():
"""
Parses command line arguments.
Returns:
an object with parsed command line arguments
"""
description = 'PQoS Library Python wrapper - monitoring example'
parser = argparse.ArgumentParser(description=description)
parser.add_argument('-I', dest='interface', action='store_const',
const='OS', default='MSR',
help='select library OS interface')
parser.add_argument('-p', '--pid', action='store_true',
help='select PID monitoring')
parser.add_argument('cores_pids', metavar='CORE/PID', type=int, nargs='+',
help='a core or PID to be monitored')
args = parser.parse_args()
return args
def validate(params):
"""
Validates command line arguments.
Parameters:
params: an object with parsed command line arguments
"""
if params.pid and params.interface != 'OS':
print('PID monitoring requires OS interface')
return False
return True
def main():
"Main function that runs the example."
args = parse_args()
if not validate(args):
return
with PqosContextManager(args.interface):
events = get_supported_events()
if args.pid:
monitoring = MonitoringPid(args.cores_pids, events)
else:
monitoring = MonitoringCore(args.cores_pids, events)
monitoring.setup()
while True:
try:
monitoring.update()
monitoring.print_data()
time.sleep(1.0)
except KeyboardInterrupt:
break
monitoring.stop()
if __name__ == "__main__":
main()
|