aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/result_transform/ubench_transform.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2016-11-03 08:10:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-03 08:10:41 +0000
commit403e8ead12863163573f45c1be07a48c05061f45 (patch)
tree9f0398c9a8e3ebc397e3f30e88a083f09a04d0b5 /benchmarks/playbooks/result_transform/ubench_transform.py
parent10fa387f3ad554a4c42c580b424f79c2171c64d3 (diff)
parenta9d5c798ad0da8494056181cc1b68f85f9b203c9 (diff)
Merge "Remove playbooks directory"
Diffstat (limited to 'benchmarks/playbooks/result_transform/ubench_transform.py')
-rw-r--r--benchmarks/playbooks/result_transform/ubench_transform.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/benchmarks/playbooks/result_transform/ubench_transform.py b/benchmarks/playbooks/result_transform/ubench_transform.py
deleted file mode 100644
index ab5fe171..00000000
--- a/benchmarks/playbooks/result_transform/ubench_transform.py
+++ /dev/null
@@ -1,32 +0,0 @@
-import os
-import json
-import pickle
-
-total_cpu = os.popen(
- "cat $HOME/tempT/UnixBench/results/* | grep 'of tests' | awk '{print $1;}' | awk 'NR==1'").read().rstrip()
-
-cpu_1 = os.popen(
- "cat $HOME/tempT/UnixBench/results/* | grep 'of tests' | awk '{print $6;}' | awk 'NR==1'").read().rstrip()
-
-
-cpu_2 = os.popen(
- "cat $HOME/tempT/UnixBench/results/* | grep 'of tests' | awk '{print $6;}' | awk 'NR==2'").read().rstrip()
-
-
-index_1 = os.popen(
- "cat $HOME/tempT/UnixBench/results/* | grep 'Index Score (Partial Only) ' | awk '{print $7;}' | awk 'NR==1'").read().rstrip()
-index_2 = os.popen(
- "cat $HOME/tempT/UnixBench/results/* | grep 'Index Score (Partial Only) ' | awk '{print $7;}' | awk 'NR==2'").read().rstrip()
-
-
-result = {"n_cpu": total_cpu,
- "single": {"n_para_test": cpu_1,
- "score": index_1},
- "multi": {"n_para_test": cpu_2,
- "score": index_2}
- }
-
-with open('result_temp', 'w+') as result_file:
- pickle.dump(result, result_file)
-print json.dumps(result, indent=4, sort_keys=True)
-# print result.items()