aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorNauman_Ahad <Nauman_Ahad@dell.com>2016-01-14 11:54:47 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-01-14 11:54:47 +0000
commit9dec3b1274d73a3cf47ca3cac6c74d0f413bfed3 (patch)
treea5f6958320c848649424ef42dbef9fed25536d70 /data
parent1fec2113aeb6af43b60169abec047ae4f524b2a5 (diff)
parent0e1bf4151a9995363c9e59be5302ea888ff3b73e (diff)
Merge "Modifications to the index calculation script" into stable/brahmaputra
Diffstat (limited to 'data')
-rw-r--r--data/ref_results/compute_suite.py2
-rw-r--r--data/ref_results/network_suite.py2
-rw-r--r--data/ref_results/storage_suite.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/data/ref_results/compute_suite.py b/data/ref_results/compute_suite.py
index a57a4b04..78eaae6f 100644
--- a/data/ref_results/compute_suite.py
+++ b/data/ref_results/compute_suite.py
@@ -15,7 +15,7 @@ for benchmark in compute_bench_list:
compute_suite_index=temp/len(compute_bench_list)
compute_dict_f={};
-compute_dict_f['1. Compute Index']=compute_suite_index
+compute_dict_f['1. Index']=compute_suite_index
compute_dict_f['2. Compute suite results']=compute_dict
with open('../../results/compute_result.json', 'w+') as result_json:
json.dump(compute_dict_f, result_json, indent=4, sort_keys=True)
diff --git a/data/ref_results/network_suite.py b/data/ref_results/network_suite.py
index df80b8b5..0e687f6a 100644
--- a/data/ref_results/network_suite.py
+++ b/data/ref_results/network_suite.py
@@ -15,7 +15,7 @@ for benchmark in network_bench_list:
network_suite_index=temp/len(network_bench_list)
network_dict_f={};
-network_dict_f['1. Network Index']=network_suite_index
+network_dict_f['1. Index']=network_suite_index
network_dict_f['2. Network 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)
diff --git a/data/ref_results/storage_suite.py b/data/ref_results/storage_suite.py
index fe4e940c..0c5b4c66 100644
--- a/data/ref_results/storage_suite.py
+++ b/data/ref_results/storage_suite.py
@@ -15,7 +15,7 @@ for benchmark in storage_bench_list:
storage_suite_index=temp/len(storage_bench_list)
storage_dict_f={};
-storage_dict_f['1. Storage Index']=storage_suite_index
+storage_dict_f['1. Index']=storage_suite_index
storage_dict_f['2. Storage suite results']=storage_dict
with open('../../results/storage_result.json', 'w+') as result_json:
json.dump(storage_dict_f, result_json, indent=4, sort_keys=True)