Is it possible to write a program in such a way that it uses less joules from the computer? Or is this best left to the compiler? Do different algorithms use different amounts of energy?
|
|
|||||
|
closed as exact duplicate by Will Sep 30 '08 at 13:01 |
|
|
Faster code means less CPU time, which means less CPU power consumed. So concentrate on performance instead of the "green factor", since they're essentially the same thing. But really, any type of meaningful metric for how "green" a program is would be almost impossible to derive, and is therefore better left to PHB types to determine for the end product. |
||
|
|
|
|
More processor time = more energy, so more efficient algorithms are better for the environment. Luckily in our industry, doing things optimally for us works out better for the whole world! |
||
|
|
|
|
Also using less CPU clock cycles allows the CPU to take less watts. RAM is bad at power saving though, so don't worry about memory access. |
||
|
|
|
|
See this previous question |
||
|
|
|
|
I would guess that reducing disk I/O (perhaps via caching) as much as possible would reduce power consumption. |
||
|
|
