Benchmarking CPU processing power

Posted by Federico Zancan on Programmers See other posts from Programmers or by Federico Zancan
Published on 2012-04-02T16:26:34Z Indexed on 2012/04/02 17:40 UTC
Read the original article Hit count: 320

Provided that many tools for computers benchmarking are available already, I'd like to write my own, starting with processing power measurement.

I'd like to write it in C under Linux, but other language alternatives are welcome.

I thought starting from floating point operations per second, but it is just a hint.

I also thought it'd be correct to keep track of CPU number of cores, RAM amount and the like, to more consistently associate results with CPU architecture.

How would you proceed to the task of measuring CPU computing power?

And on top of that: I would worry about a properly minimum workload induced by concurrently running services; is it correct to run benchmarking as a standalone (and possibly avulsed from the OS environment) process?

© Programmers or respective owner

Related posts about language-agnostic

Related posts about cpu