RAPL MSR Interface

RAPL MSR Interface

Kenan L.的头像

Hi all,

I'm trying to use RAPL interface to get energy consumption (package/core/uncore), and I read the code below:

http://www.eece.maine.edu/~vweaver/projects/rapl/rapl_msr.c

I used  it on My machine, and it works. But I'm not quite sure how accurate the result I get for this code.

For example:

sprintf(msr_filename, "/dev/cpu/%d/msr", core);
fd = open(msr_filename, O_RDONLY);

long long result = read_msr(fd, MSR_RAPL_POWER_UNIT);
energy_units = pow(0.5, (double)((result>>8)&0x1f));

How do these bit operations work for?
My CPU is I5-2410m, architecture is sandy bridge. Do you have any insights on what the problem could be? I know little on programming on the driver level.

Thank you.

2 帖子 / 0 new
最新文章
如需更全面地了解编译器优化,请参阅优化注意事项.
Roman Dementiev (Intel)的头像

Hi Kenan,

the "energy_units" above does not give you energy consumption yet. It is a conversion constant. You need to multiply readings from additional PKG_ENERGY_STATUS MSR by "energy_units" to get the current value of the energy counter in Joules. The difference between two PKG_ENERGY_STATUS readings gives you energy consumption between the readings. Be aware: The width of PKG_ENERGY_STATUS is just 32 bit, so it may overflow, but you can handle it knowing the that the counter is 32 bit and if overflown only once. The Intel Software Development Manual has a few chapters describing these and other details of RAPL including DRAM RAPL.

Roman

登陆并发表评论。