blob: ae4ed107b3c6a445e910aa2c5130c50492355c71 (
plain)
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
|
import json
import network_benchmarks_indices as benchmark_indices
network_dict = {}
try:
network_dict['IPERF'] = benchmark_indices.iperf_index()
except:
pass
network_bench_list = ['IPERF']
temp = 0
l = len(network_bench_list)
for benchmark in network_bench_list:
try:
temp = temp + float(network_dict[benchmark]['index'])
except:
l = l - 1
pass
if l == 0:
print "No network results found"
else:
network_suite_index = temp / len(network_bench_list)
network_dict_f = {}
network_dict_f['index'] = network_suite_index
network_dict_f['suite_results'] = network_dict
with open('../../results/network_result.json', 'w+') as result_json:
json.dump(network_dict_f, result_json, indent=4, sort_keys=True)
|