diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-11-26 17:06:27 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-11-26 17:06:27 -0500 |
commit | b43b83beead92ff7cf28a5fe5a2710537268aae1 (patch) | |
tree | d9c29b14cd18a9df520f36d7e85eb460c30fa7a9 /parse/ft.py | |
parent | cb8db5d30ee769304c2c2b00f2a7d9bcb3c4098f (diff) |
Read locations of binary files from path instead of config.py.
Diffstat (limited to 'parse/ft.py')
-rw-r--r-- | parse/ft.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse/ft.py b/parse/ft.py index fea246a..a6596b7 100644 --- a/parse/ft.py +++ b/parse/ft.py | |||
@@ -71,7 +71,7 @@ def extract_ft_data(result, data_dir, work_dir, cycles): | |||
71 | with open("%s/%s" % (work_dir, FT_ERR_NAME), 'w') as err_file: | 71 | with open("%s/%s" % (work_dir, FT_ERR_NAME), 'w') as err_file: |
72 | sorted_bin = sort_ft(bin_file, err_file, work_dir) | 72 | sorted_bin = sort_ft(bin_file, err_file, work_dir) |
73 | 73 | ||
74 | for event in conf.BASE_EVENTS: | 74 | for event in conf.OVH_BASE_EVENTS: |
75 | parse_overhead(result, sorted_bin, event, cycles, | 75 | parse_overhead(result, sorted_bin, event, cycles, |
76 | work_dir, err_file) | 76 | work_dir, err_file) |
77 | 77 | ||