Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md using measureit instead of measureit #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To measure the energy consumed by the machine during the execution of the functi

pyRAPL.setup()

@pyRAPL.measure
@pyRAPL.measureit
def foo():
# Instructions to be evaluated.

Expand All @@ -52,7 +52,7 @@ By default, **pyRAPL** monitors all the available devices of the CPU sockets.

pyRAPL.setup(devices=[pyRAPL.Device.PKG], socket_ids=[1])

@pyRAPL.measure
@pyRAPL.measureit
def foo():
# Instructions to be evaluated.

Expand All @@ -71,7 +71,7 @@ As an example, if you want to run the evaluation 100 times:
pyRAPL.setup()


@pyRAPL.measure(number=100)
@pyRAPL.measureit(number=100)
def foo():
# Instructions to be evaluated.

Expand All @@ -91,7 +91,7 @@ As an example, if you want to write the recorded energy consumption in a .csv fi

csv_output = pyRAPL.outputs.CSVOutput('result.csv')

@pyRAPL.measure(output=csv_output)
@pyRAPL.measureit(output=csv_output)
def foo():
# Instructions to be evaluated.

Expand Down