rapl
zeus.device.cpu.rapl
RAPL CPUs.
-
RAPL (Running Average Power Limit): RAPL is a technology introduced by Intel that allows for power consumption monitoring and control at the processor and memory subsystem level. It provides mechanisms to enforce power limits and manage thermal conditions effectively.
-
Power Zone: A power zone in the context of RAPL refers to a logical grouping of components within the CPU or system that share a common power domain. Each power zone can be monitored and controlled independently. Typical power zones include the entire package, specific cores, and memory subsystems.
-
Package: The package refers to the physical CPU chip, which may contain multiple cores and integrated components. In RAPL, the package power domain encompasses the power consumption of all the cores and integrated units within the CPU package.
RaplWraparoundTracker
Monitor the wrapping around of RAPL counters.
This class acts as a lower level wrapper around a Python process that polls
the wrapping of RAPL counters. This is primarily used by
RAPLCPUs
.
Warning
Since the monitor spawns a child process, it should not be instantiated as a global variable. Python puts a protection to prevent creating a process in global scope. Refer to the "Safe importing of main module" section in the Python documentation for more details.
Attributes:
Name | Type | Description |
---|---|---|
rapl_file_path |
str
|
File path of rapl file to track wraparounds for. |
max_energy_uj |
float
|
Max value of rapl counter for |
Source code in zeus/device/cpu/rapl.py
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 |
|
__init__
__init__(rapl_file_path, max_energy_uj)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rapl_file_path |
str
|
File path where the RAPL file is located |
required |
max_energy_uj |
float
|
Max energy range uj value |
required |
Source code in zeus/device/cpu/rapl.py
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 |
|
_stop
_stop()
Stop monitoring power usage.
Source code in zeus/device/cpu/rapl.py
94 95 96 97 98 99 100 |
|
get_num_wraparounds
get_num_wraparounds()
Get the number of wraparounds detected by the polling process.
Source code in zeus/device/cpu/rapl.py
102 103 104 105 |
|
ZeusRAPLNotSupportedError
Bases: ZeusBaseCPUError
Zeus CPU exception class wrapper for RAPL not supported on CPU.
Source code in zeus/device/cpu/rapl.py
140 141 142 143 144 145 |
|
__init__
__init__(message)
Source code in zeus/device/cpu/rapl.py
143 144 145 |
|
ZeusRAPLFileInitError
Bases: ZeusBaseCPUError
Zeus CPU exception class wrapper for RAPL file initialization error on CPU.
Source code in zeus/device/cpu/rapl.py
148 149 150 151 152 153 |
|
__init__
__init__(message)
Source code in zeus/device/cpu/rapl.py
151 152 153 |
|
ZeusRAPLPermissionError
Bases: ZeusBaseCPUError
Zeus GPU exception that wraps No Permission to perform GPU operation.
Source code in zeus/device/cpu/rapl.py
156 157 158 159 160 161 |
|
__init__
__init__(message)
Source code in zeus/device/cpu/rapl.py
159 160 161 |
|
RAPLFile
RAPL File class for each RAPL file.
This class defines the interface for interacting with a RAPL file for a package. A package can be a CPU or DRAM
Source code in zeus/device/cpu/rapl.py
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 |
|
__init__
__init__(path)
Source code in zeus/device/cpu/rapl.py
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 |
|
__str__
__str__()
Return a string representation of the RAPL file object.
Source code in zeus/device/cpu/rapl.py
203 204 205 206 |
|
read
read()
Read the current energy value from the energy_uj file.
Returns:
Type | Description |
---|---|
float
|
The current energy value in millijoules. |
Source code in zeus/device/cpu/rapl.py
208 209 210 211 212 213 214 215 216 217 |
|
RAPLCPU
Bases: CPU
Control a single CPU that supports RAPL.
Source code in zeus/device/cpu/rapl.py
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 |
|
__init__
__init__(cpu_index, rapl_dir)
Source code in zeus/device/cpu/rapl.py
223 224 225 226 227 |
|
getTotalEnergyConsumption
getTotalEnergyConsumption()
Returns the total energy consumption of the specified powerzone. Units: mJ.
Source code in zeus/device/cpu/rapl.py
251 252 253 254 255 256 257 |
|
supportsGetDramEnergyConsumption
supportsGetDramEnergyConsumption()
Returns True if the specified CPU powerzone supports retrieving the subpackage energy consumption.
Source code in zeus/device/cpu/rapl.py
259 260 261 |
|
RAPLCPUs
Bases: CPUs
RAPL CPU Manager object, containing individual RAPLCPU objects, abstracting RAPL calls and handling related exceptions.
Source code in zeus/device/cpu/rapl.py
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 |
|
cpus
property
cpus
Returns a list of CPU objects being tracked.
__init__
__init__()
Source code in zeus/device/cpu/rapl.py
267 268 269 270 271 272 273 |
|
_init_cpus
_init_cpus()
Initialize all Intel CPUs.
Source code in zeus/device/cpu/rapl.py
280 281 282 283 284 285 286 287 288 289 290 |
|
__del__
__del__()
Shuts down the Intel CPU monitoring.
Source code in zeus/device/cpu/rapl.py
292 293 294 |
|
_polling_process
_polling_process(
rapl_file_path, max_energy_uj, wraparound_counter
)
Check for wraparounds in the specified rapl file.
Source code in zeus/device/cpu/rapl.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
rapl_is_available
cached
rapl_is_available()
Check if RAPL is available.
Source code in zeus/device/cpu/rapl.py
130 131 132 133 134 135 136 137 |
|