Does using the computer for something else while benchmarking ( with the Benchmark module ) have an influence on the benchmark results?
Does using the computer for something else while benchmarking ( with the Benchmark module
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it does. This running perl process complies with general process management rules your OS does. OS process scheduler will distribute CPU time amongst all running processes.
There is a way you can influence this distribution –
nicecommand. It can be used to set process priority value, so the scheduler can give such process more CPU time.The lesser nice priority value, the more CPU time the process will get.
For exmaple command
nice -n -20 ./benchmark.plwill get almost all CPU time