rapl-energy 0.2.2

Small library for getting the CPU energy consumption from RAPL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
LOCAL ?= $(HOME)/.local

.PHONY: install uninstall

install:
	cargo build --release
	cp target/release/rapl_energy.h $(LOCAL)/include/
	cp target/release/librapl_energy.so $(LOCAL)/lib/

uninstall:
	$(RM) $(LOCAL)/include/rapl_energy.h
	$(RM) $(LOCAL)/lib/librapl_energy.so