diff options
author | Nauman_Ahad <nauman_ahad@xflowresearch.com> | 2016-02-01 17:03:50 +0500 |
---|---|---|
committer | Nauman_Ahad <nauman_ahad@xflowresearch.com> | 2016-02-01 17:11:14 +0500 |
commit | 49b4662f32c415ea141ff269ba39d9a401b6e320 (patch) | |
tree | 68d44929f3ce9106660bcb0f69c70bf47669328c /data/ref_results/compute_suite.py | |
parent | 9c4e1e7f2021e9f05fa6e98cd212a6ddeb0fd2e5 (diff) |
Fixed the index calculation for QTIP compute, network and storage suites
Earlier inaccurate index calculation updated.
Now indices take into account vm and bm cases
Change-Id: Icf2d7fc17ef765f5c0611b5371d57410ba155cb6
Signed-off-by: Nauman_Ahad <nauman_ahad@xflowresearch.com>
Diffstat (limited to 'data/ref_results/compute_suite.py')
-rw-r--r-- | data/ref_results/compute_suite.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/ref_results/compute_suite.py b/data/ref_results/compute_suite.py index ce7f33cd..86e8a877 100644 --- a/data/ref_results/compute_suite.py +++ b/data/ref_results/compute_suite.py @@ -12,12 +12,14 @@ except OSError: try: - compute_dict['Dhrystone']=benchmark_indices.dwstone_index('dhrystone','Dhrystone') + compute_dict['Dhrystone']=benchmark_indices.dhrystone_index() except OSError: pass + + try: - compute_dict['Whetstone']=benchmark_indices.dwstone_index('whetstone','Whetstone') + compute_dict['Whetstone']=benchmark_indices.whetstone_index() except OSError: pass |