Benchmarking the system/CPU performance
Have you ever wanted to have a quick check on your CPU performance. I know that lot of people will say that this is not the right way to do this, but here is something that you can use to check the CPU speed.
#!/bin/bash - #=============================================================================== # # FILE: benchmark.sh # # USAGE: ./benchmark.sh # # DESCRIPTION: Benchmark the CPU # # OPTIONS: --- # REQUIREMENTS: --- # BUGS: --- # NOTES: --- # AUTHOR: Amit Agarwal (aka), amit.agarwal@roamware.com # COMPANY: Roamware India Pvt Ltd # CREATED: 09/21/2011 11:46:03 AM IST # Last modified: Wed Sep 21, 2011 12:22PM # REVISION: --- #=============================================================================== add () { COUNTER=0 exec 2>&1 time=$(exec 2>&1;(time while [[ $COUNTER -lt 100000 ]]; do ((COUNTER++)) \ ; done)) echo "Time for 100000 additions is "$time } # ---------- end of function add ---------- mul () { COUNTER=0 test=2 exec 2>&1 time=$(exec 2>&1;(time while [[ $COUNTER -lt 100000 ]]; do ((COUNTER++)) \ ; ((test=test*2));done)) echo "Time for 100000 mul is "$time } # ---------- end of function add ---------- div () { COUNTER=0 test=1000000000000 exec 2>&1 time=$(exec 2>&1;(time while [[ $COUNTER -lt 100000 ]]; do ((COUNTER++)) \ ; (( test=test/2)); done)|tr -d '\n') echo "Time for 100000 divisions is "${time} } # ---------- end of function add ---------- time add time mul time div
And here is the output :
Time for 100000 additions is real 0m1.166s user 0m1.089s sys 0m0.074s
real 0m1.168s
user 0m1.089s
sys 0m0.074s
Time for 100000 mul is real 0m1.862s user 0m1.778s sys 0m0.082sreal 0m1.863s
user 0m1.779s
sys 0m0.082s
Time for 100000 divisions is real 0m1.916s user 0m1.825s sys 0m0.089sreal 0m1.918s
user 0m1.825s
sys 0m0.090s
Related articles
- Blogging from N900 (amit-agarwal.co.in)
- Check SQL Server CPU status (glindba.wordpress.com)
- Some Backup Exec 2010 R2 questions (edugeek.net)
Related Articles:
- 2011/02/09 analyze debug queries output for wordpress
- 2010/05/27 Checking the links to your site (from affiliates) using cron and bash script.
- 2012/01/12 conky script used to monitor server status remotely.
- 2012/01/06 BASH Script Performace
- 2011/12/28 30 Best Windows Mobile Applications
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.