Question: Design a benchmarking program that measures the CPU speed, in terms of floating point operations per second (Giga FLOPS, 109 FLOPS) and integer operations per
Design a benchmarking program that measures the CPU speed, in terms of floating point operations per second (Giga FLOPS, 109 FLOPS) and integer operations per second (Giga IOPS, 109 IOPS); measure the processor speed at varying levels of concurrency (1 thread, 2 threads, 4 threads, and 8 threads). Please use Python or Java and Windows.
Requirements
All of the benchmarks will have to evaluate concurrency performance; concurrency can be achieved using threads. Be aware of the thread synchronizing issues to avoid inconsistency or deadlock in your system.
Experiments should be done in such a way that they take multiple seconds to minutes to run, in order to amortize any startup costs of the experiments. Not all timing functions have the same accuracy; you must find one that has at least 1 ms accuracy or better.
Since there are many experiments to run, find ways (e.g. scripts) to automate the performance evaluation.
All benchmarks must be run 3 times, and the reported values should be the average and standard deviation.
No GUIs are required. Simple command line interfaces are fine
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
