Hi Sylvia,
Sylvia said:
Is that before or after you include the energy used by the program
that's showing you the energy usage?
Ha! Good point! ;-)
In any case, the energy used by an application is not so clearly
defined. You could in principle measure the increase in energy used by
the computer as a result of running the program, but some of that
increase will be the result of interactions (such as memory, cache or
disk contention) with other programs. That is - stop another program,
and then run the program of interest again - and you could find that it
causes a lower increase than before.
This is true of many details "under the hood". E.g., many
operating systems try to "be fair" and divide the processors
resources (e.g., time) among concurrently executing tasks
by giving each a similar slice of time in which they are
granted use of the processor.
But, if one application "does something" that causes something
else to happen "some time afterwards" *and* that "something else"
unconditionally takes resources away from whatever is currently
executing (e.g., the first application causes some disk
activity to be initiated. That activity takes some time to
come to fruition. When it does, resources will be diverted
from whichever application is *currently* executed -- which
may not be the application that initiated the activity! -- so
that other application loses part of its time slice so the
processor can perform some activity that benefits the original
application)
The "power analogy" is similar. How do you "charge" the
application for the cost of its disk accesses? Do you
know the power differential involved in any *particular*
disk access? I.e., how much does the head actuator move?
How do you "charge" applications for the cost of keeping
the disk spinning? If application 1 is a "load once"
application that never needs the disk again, why should it
have to pay for a spinning disk that *it* would rather
see spun down??
It doesn't appear to be a very useful thing to measure.
Agreed. I think the smarter approach is to design an API that
lets application developers be aware of how their application
is operating at any given time. And, ways to tell that
application to "conserver" -- or not.