Earth Notes: Low-Power Software to Save Cash and Carbon

Updated 2024-01-26 09:09 GMT.
By Damon Hart-Davis.
Find out how to get a job run, minimise energy in and CO2 out, and even allow a move off-grid... #frugalComputing
cloud
Is it possible to tune a piece of software to do the job it was doing before, but with less energy and thus less CO2 emission? Or even write software from scratch to be 'greener' and more energy-efficient? Indeed it is.

A software carbon-cutting goal is easier to achieve on hardware that is energy-efficient already. Such as smart handhelds and laptops. And on newer desktops/servers designed and built after it became fashionable to compete on computing power per watt (~2006)!

Often general optimisation, to make something run faster, implies using less CPU and thus less energy to get a given piece of work done. But there are other specific things that can be done to help off-grid storage for example...

LessWatts

Here's a (lightly-edited) sample from [archive] LessWatts.org on how good design and coding can let the energy-efficiency features in hardware do their thang:

  • [Avoid] Polling. Avoid frequent, unnecessary polling
  • Race to Idle. Save power by running at the highest speed. Processors tend to be so good at saving power during idle, that often it's better to go as fast as possible so that you can then be idle longer.
  • Turn devices off. Open devices can prevent the system from entering power saving state.
  • Group Timers. Many programs use timers, so group them to reduce idle wakeups.
  • Use large buffers. Media playback requires a large buffer, large enough for a minute of audio or 20 minutes of video.
  • Optimize Sleep Duty Cycle. It matters how frequently you go in and out of idle. Stay in idle for long periods of time. Avoid interrupting idle as much as possible.
  • Beware of high level languages. High level languages are convenient tools to achieve results quickly and often have features to do complex things with minimal effort. However, be aware that some of these contructs are hard to implement and sometimes the runtime environment that implements the high level language does so using polling at a high frequency. When using high level languages such as Java*, Visual C#*, Python*, and Ruby, check the end result and try to avoid some of the more complex threading primitives. In addition, where you have a choice of runtime environment provider, evaluate different alternatives and versions.

Also, techniques to reduce or group disc and network activity can help. Possibly allowing a quiet device to go into a low-power sleep mode.

You may want to tune the OS a little too. For example to wait a little longer to write cached non-critical data to disc.

Anywhere that you carefully tune to reduce energy consumption, you can often at the same time improve responsiveness and performance. Energy efficiency is not your enemy!

CO2 vs Energy

All the above techniques can help reduce the overall energy consumed in handling a particular computational work-load. But all watts and joules/kWh are not equal in CO2 terms.

For example, if you draw energy when your local electricity grid demand is high then each unit of energy (eg kWh) may be more expensive and generated by more carbon-intense methods, and puts more strain on the grid. Postponing exactly the same work until a lower-demand time of day may reduce the CO2 emitted, and if you have time-of-day metering (for example because you are in a large corporate data centre), you may also reduce your bills. Peak-demand times vary by season and location, but weekday evenings are often bad. As are summers in hot places because of air-conditioning demand. And winters in cold/dark places because of lighting and heating demand. Time your background and non-essential processing to run at night and you're probably saving both money and CO2 emission.

You can go one better if you have local RE (Renewable Energy) generation and/or you can monitor local time-of-day pricing explicitly. Defer non-essential processing as long as possible, until energy is relatively abundant and cheap.

For my Multimedia Gallery I defer such things as background AI work and self-healing data correction for up to several days until the local system detects good energy availability. For servers in data centres that is simply handled by time-of-day coupled with an understanding of local grid demand peaks via a couple of lines of cron jobs to set/clear a 'low-power' flag file. For my primary server the flag file(s) are set/cleared in response to the state of charge of the local RE system battery. When the battery is fully charged and the server/laptop is off-grid then the Gallery absorbs the 'excess' energy by catching up on deferred tasks. When on-grid it always minimises its consumption.

I have tuned other applications to be sensitive to the same flags. In simple cases skipping some cron-driven runs when the low-power flags are set. Simple to do, and with no significant loss of performance/usefulness.

I have more recently (2019) developed a form of work storage, only requiring some simple tweaks to a makefile to engage!

Web-Based Dynamic Demand/Load Management @Home

An alternative mechanism for computers always connected to the Internet (eg servers in data centres or PCs/laptops on home broadband) would be to regularly and automatically poll (maybe every few minutes) a centrally-managed Web site which can report when the grid is under stress. When such 'stress' (eg high demand and/or high CO2-intensity) is detected then the system could trim energy use, eg by reducing the maximum CPU speed, dimming the display one notch in laptops, bringing forward screen blanking, spinning down discs where possible or batching activity better, etc, etc. The software to do this could be entirely free and out of sight, and would likely be hardly noticed by users at all. This directable reduction in demand might be quite significant, eg ~10%, and providing that the infrastructure to support this is not expensive or power-hungry itself (and there's no especial reason to believe it would be) then this could be a significant easy (and largely transparent) addition to the load/demand management toolkit of grid operators. In the UK the service could be run by the National Grid or (say) NETA which already publishes real-time data on the Web, or the local DNO (electricity distributor). Or even one of the 'green' suppliers/generators such as Ecotricity.

For devices able to detect their local mains frequency (or voltage), this could be used as an addition/substitute for the Internet input. When the mains frequency drops (or in more extreme cases the voltage) it is an indication that the grid is under strain and could be used as a cue to trim CPU speed, display brightness, etc. This is probably harder in laptops with external adapters than in desktops. This is like the Scottish 'Teleswitch' system (with radio rather than Internet). The same approach can be used in 'dumber' but energy-hungry domestic appliances such as the fridge/freezer, washing machine and dishwasher. They could reduce their draw when the mains frequency is low by adjusting thermostats slightly and reducing the rate of resistive heating, spreading their energy consumption over a longer time and away from the crisis. See my note on the potential value of "dynamic demand" control.

2023-05-02: Frugal Computing

Today a Mastodon post (by Wim: @wim_v12e@scholar.social) nicely posited the notion of frugal computing:

  • Make software that works on older devices, the older the better.
  • Make software that will keep on working for a very long time.
  • Make software that uses the least amount of total energy to achieve its results.
  • Make software that also uses the least amount of network data transfer, memory and storage.
  • Make software that encourages the user to use it in a frugal way.

References

(Count: 1)

~1592 words.