forked from alexdedyura/cpu-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpu-benchmark.py
45 lines (32 loc) · 1.25 KB
/
cpu-benchmark.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/python3
#Python CPU Benchmark by Alex Dedyura (Windows, macOS, Linux)
import time
import platform
import cpuinfo
os_version = platform.system()
print('Python CPU Benchmark by Alex Dedyura (Windows, macOS(Darwin), Linux)')
print('CPU: ' + cpuinfo.get_cpu_info().get('brand_raw', "Unknown"))
print('Arch: ' + cpuinfo.get_cpu_info().get('arch_string_raw', "Unknown"))
print('OS: ' + str(os_version))
print('\nBenchmarking: \n')
start_benchmark = 10000 # change this if you like (sample: 1000, 5000, etc)
start_benchmark = int(start_benchmark)
repeat_benchmark = 10 # attemps, change this if you like (sample: 3, 5, etc)
repeat_benchmark = int(repeat_benchmark)
average_benchmark = 0
for a in range(0,repeat_benchmark):
start = time.perf_counter()
for i in range(0,start_benchmark):
for x in range(1,1000):
3.141592 * 2**x
for x in range(1,10000):
float(x) / 3.141592
for x in range(1,10000):
float(3.141592) / x
end = time.perf_counter()
duration = (end - start)
duration = round(duration, 3)
average_benchmark += duration
print('Time: ' + str(duration) + 's')
average_benchmark = round(average_benchmark / repeat_benchmark, 3)
print('Average (from {} repeats): {}s'.format(repeat_benchmark, average_benchmark))