• BOINC lets you help cutting-edge science research using your computer. The BOINC app, running on your computer, downloads scientific computing jobs and runs them invisibly in the background. It's easy and safe.
• About 30 science projects use BOINC. They investigate diseases, study climate change, discover pulsars, and do many other types of scientific research.
• The BOINC and Science United projects are located at the University of California, Berkeley and are supported by the National Science Foundation.
Good suggestion; although the OP would like to stress and not simply use idle cores. Adobe-based DIP would do, but I still believe using Terminal would be easier. For example, every time a new Mac appears in their Store, I like "testing" it by running the Terminal bc command on a calculation 123456789^1234567... and check the machine's running time.
Repeat that line for each core. Or add a few extras to make sure nothing is left idle.
Each time that line runs, it starts a 'yes' process in the background. It does nothing but emit the text "y" to a null device (bit-bucket, endless data sink). Because it runs in the background, thanks to the ampersand, you can run other commands, such as another 'yes'.
After the computer is sufficiently warm, you can kill all those processes with this:
Code:
killall yes
For extra fun, use Activity Monitor to watch the Energy or CPU resources burning away like a thousand suns.