summaryrefslogtreecommitdiffstats
path: root/data/ref_results/network_benchmarks_indices.py
diff options
context:
space:
mode:
Diffstat (limited to 'data/ref_results/network_benchmarks_indices.py')
-rw-r--r--data/ref_results/network_benchmarks_indices.py33
1 files changed, 13 insertions, 20 deletions
diff --git a/data/ref_results/network_benchmarks_indices.py b/data/ref_results/network_benchmarks_indices.py
index b98269b6..96ccd4fc 100644
--- a/data/ref_results/network_benchmarks_indices.py
+++ b/data/ref_results/network_benchmarks_indices.py
@@ -1,27 +1,20 @@
from index_calculation import generic_index as get_index
-from index_calculation import get_reference
+from index_calculation import get_reference
from result_accum import result_concat as concat
-def iperf_index ():
- iperf_dict=concat('../../results/iperf/')
- #print iperf_dict
- iperf_bm_ref = get_reference('network','iperf_bm','throughput received(b/s)')
-
- iperf_bm_index= get_index(iperf_dict,'iperf_bm',iperf_bm_ref,'4 IPERF result', '2. Bandwidth','2. throughput Received (b/s)')
-
- iperf_vm_ref = get_reference('network','iperf_vm','throughput received(b/s)')
- iperf_vm_index= get_index(iperf_dict,'iperf_vm',iperf_vm_ref,'4 IPERF result', '2. Bandwidth','2. throughput Received (b/s)')
-
- iperf_vm_2_ref = get_reference('network','iperf_vm_2','throughput received(b/s)')
- iperf_vm_2_index= get_index(iperf_dict,'iperf_vm_2',iperf_vm_2_ref,'4 IPERF result', '2. Bandwidth','2. throughput Received (b/s)')
-
+def iperf_index():
+ iperf_dict = concat('../../results/iperf/')
+ iperf_bm_ref = get_reference('network', 'iperf_bm', 'throughput received(b/s)')
+ iperf_bm_index = get_index(iperf_dict, 'iperf_bm', iperf_bm_ref, '4 IPERF result', '2. Bandwidth', '2. throughput Received (b/s)')
+ iperf_vm_ref = get_reference('network', 'iperf_vm', 'throughput received(b/s)')
+ iperf_vm_index = get_index(iperf_dict, 'iperf_vm', iperf_vm_ref, '4 IPERF result', '2. Bandwidth', '2. throughput Received (b/s)')
-
- iperf_index= float(iperf_bm_index+iperf_vm_index+iperf_vm_2_index)/3
+ iperf_vm_2_ref = get_reference('network', 'iperf_vm_2', 'throughput received(b/s)')
+ iperf_vm_2_index = get_index(iperf_dict, 'iperf_vm_2', iperf_vm_2_ref, '4 IPERF result', '2. Bandwidth', '2. throughput Received (b/s)')
+ iperf_index = float(iperf_bm_index + iperf_vm_index + iperf_vm_2_index) / 3
print iperf_index
- iperf_dict_i={};
- iperf_dict_i['1. Index']=iperf_index
- iperf_dict_i['2. Results']=iperf_dict
+ iperf_dict_i = {}
+ iperf_dict_i['1. Index'] = iperf_index
+ iperf_dict_i['2. Results'] = iperf_dict
return iperf_dict_i
-