Crates.io | coppers |
lib.rs | coppers |
version | 0.1.1 |
source | src |
created_at | 2022-03-21 14:14:18.883944 |
updated_at | 2022-04-05 12:46:50.959683 |
description | Coppers is a custom test harnass that measures the energy usage of your test suite. |
homepage | |
repository | https://github.com/ThijsRay/coppers |
max_upload_size | |
id | 554119 |
size | 931,839 |
Coppers is a test harness for Rust that can measure the evolution of power consumptions of a Rust program between different versions with the help of Intel RAPL.
This test harness targets the Rust nightly toolchain because it relies on unstable features of the Rust compiler.
rustup install nightly
rustup override set nightly
To enable the custom test runner in your project, add this to your Cargo.toml
file.
[dev-dependencies]
coppers = "0.1"
Add the following two lines to your crate root (most likely lib.rs
or main.rs
)
#![feature(custom_test_frameworks)]
#![test_runner(coppers::runner)]
Using Coppers on your project can be done with cargo test
. This will run your unit tests and report on the energy usage of each test. A report in JSON format will be generated in target/coppers_results-[seconds since epoch].json
. This file contains machine-readable output of the tests.
Before you interpret the results, please consider the accuracy of the results and how you can improve it. See our section about accuracy for more information.
Coppers optionally supports visual output of the results.
The visualizations can help with determining the change of energy consumption of your tests over time. To enable visualizations, enable the future flag in your Cargo.toml
file.
[dev-dependencies]
coppers = { version = "0.1", features = ["visualization"]}
This feature is disabled by default, because it relies on certain Python packages. You can install the packages defined in this repository's requirements.txt
file with
pip install -r requirements.txt
This example graph is generated by enabling the visualization
feature. In this line plot, the test represented by the green line becomes more energy efficient over time.
We have developed this project with rust version 1.61.0-nightly (ee915c34e 2022-03-28)
. A newer nightly version might change some of the compiler features we rely on, such as:
We cannot guarantee that this project works with more recent nightly versions.
Our implementation comes with some limitations.
Right now, this only works on Intel-based Linux machines with Intel RAPL via the Power Capping Framework. It could be extended for support on non-Intel and non-Linux machines, but this was outside the scope of our project.
Measuring the energy consumption on the level of a single test might be very precise, but not very accurate. Our current method measures the energy consumption of the entire system, which includes and/or is influenced by things like
For the most accurate, reliable and reproducible results, you could take certain precautions when running the tests. The goal of the precautions is to limit the influence of other factors. Precautions can include:
This project is far from complete, but it is what we could achieve within the short timespan of the course we are following. It could be extended and improved with things like
You might get an error like The location
/sys/devices/virtual/powercap/intel-rapl/intel-rapl:0 is unreachable
. If you have an Intel based machine, then you can enable on the Intel RAPL sensors with modprobe in the following way modprobe intel_rapl_common
for Linux kernels of >= 5. Do you have a kernel version of < 5, then use modprobe intel_rapl
. Unfortunatly, Coppers does not support non-Intel based machines at this time.
Insufficient permissions
If you run cargo test
, you might get an
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: "Insufficient permissions to read from /sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj. You might want to retry as root."'
error. This can be solved in one of two ways:
sudo -E cargo test
./sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj
by running
sudo chmod o+r /sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj
cargo test
sudo chmod o-r /sys/devices/virtual/powercap/intel-rapl/intel-rapl:0/energy_uj
If you run with the visualization
feature enabled, then you also need to install the required Python packages. This can be done by installing the packages defined in this
repositories requirements.txt
with pip install -r requirements.txt
.
This project was done in the context of the 2022 edition of Sustainable Software Engineering course at Delft University of Technology. We chose the name "Coppers" because our project relates to both green software and Rust, and oxidized copper has a green-ish color.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.