aboutsummaryrefslogtreecommitdiffstats
path: root/parse/ft.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-11-26 17:06:27 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2012-11-26 17:06:27 -0500
commitb43b83beead92ff7cf28a5fe5a2710537268aae1 (patch)
treed9c29b14cd18a9df520f36d7e85eb460c30fa7a9 /parse/ft.py
parentcb8db5d30ee769304c2c2b00f2a7d9bcb3c4098f (diff)
Read locations of binary files from path instead of config.py.
Diffstat (limited to 'parse/ft.py')
-rw-r--r--parse/ft.py2
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