pyRAPL icon indicating copy to clipboard operation
pyRAPL copied to clipboard

a library to measure the python energy consumption of python code

Results 11 pyRAPL issues
Sort by recently updated
recently updated
newest added

Hello, I am having some trouble getting pyRAPL to work the way I want to, and was hoping someone might be able to help. I have searched for tutorials already...

Hi everyone, I've noticed that the DRAM output is expressed in seconds. "dram (Optional[List[float]]) – list of the RAM energy consumption -expressed in seconds- (one value for each socket) if...

I ran the example with a simple loop: ``` import pyRAPL pyRAPL.setup() @pyRAPL.measureit def foo(): a = 0 for x in range(10000000000): a += x print(x) foo() ``` and it...

Hi, When I try your demo code (from PyPI and this repo): ``` import pyRAPL pyRAPL.setup() @pyRAPL.measure def foo(): # Instructions to be evaluated. foo() ``` I get an attribute...

Hi, Is it pyRAPL available for windows? what can be used for windows? when the "number" is set >1, is a for loop required to run the function or measureit...

Hi, Running the following, ```py import pyRAPL # sudo chmod -R a+r /sys/class/powercap/intel-rapl pyRAPL.setup() @pyRAPL.measureit def foo(): import autosubmit foo() ``` After doing a `pip install pyrapl` resulted in an...

I tried to run a simple following example with pyRAPL but something went wrong when measurement ends : I'm using Fedora 35, python 3.9.12 Here the code : ```py import...

Hello everyone, I took some measurements today during the inference from a Neural Network model from a two-socket server processor. The server has two AMD sockets and during the measurement...