diff options
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 |