vote up -1 vote down star

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?

flag

closed as exact duplicate by Will Sep 30 '08 at 13:01

5 Answers

vote up 0 vote down

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.

link|flag
vote up 1 vote down

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!

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

See this previous question

link|flag
vote up 0 vote down

I would guess that reducing disk I/O (perhaps via caching) as much as possible would reduce power consumption.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.