diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | energy-monitor/README.md | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -1,13 +1,13 @@ # PM Sched -PM Sched is a user space scheduler, which estimates the power consumption of individual processes and provides the ability to set a system power cap. +PM Sched is a user space scheduler that estimates the power consumption of individual processes and provides the ability to set a system power cap. ## Usage -Before the Scheduler is run the first time the model has to be trained. +Before the scheduler is run for the first time, the model has to be trained. Data can be collected with the `b` flag and `power_predictor.py` uses the data to train the model. After that the scheduler can be executed. -Launching the Scheduler with the `p` flag will use perf to read out performance counter instead of relying on our kernel module. +Launching the scheduler with the `p` flag will use perf to read out the performance counter instead of relying on our kernel module. `sudo ./power_sched -p` will start a socket in `/tmp/pm-sched`, which can be used to communicate with the scheduler. The socket supports the following commands diff --git a/energy-monitor/README.md b/energy-monitor/README.md index 9242300..5790be9 100644 --- a/energy-monitor/README.md +++ b/energy-monitor/README.md @@ -1,6 +1,6 @@ # Energy Monitor -The energy monitor connects to a socket provided by the pm-sched to display the energy consumption of running processes. +The energy monitor connects to a socket provided by PM Sched to display the energy consumption of running processes. ## Usage First launch the scheduler `sudo ./power_sched -p` and then the monitor `sudo ./energy-monitor`.
\ No newline at end of file |