aboutsummaryrefslogtreecommitdiffstats
path: root/parse_exps.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-02-07 17:53:35 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-02-07 17:53:35 -0500
commit063f5bc4b78a8368054c7e11c5fe177aafc4e28d (patch)
treefdf7c792f68ab310cbd40e9d76aed8d9e2a18b79 /parse_exps.py
parent39020cf5ae3030bc15035925a0c72eb44eea67b7 (diff)
Removed measurement logic from DirMap's for simpler processing.
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-xparse_exps.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/parse_exps.py b/parse_exps.py
index f7e1342..f8a1b98 100755
--- a/parse_exps.py
+++ b/parse_exps.py
@@ -127,7 +127,8 @@ def main():
127 result_table.write_map(opts.out) 127 result_table.write_map(opts.out)
128 else: 128 else:
129 # Write out csv directories for all variable params 129 # Write out csv directories for all variable params
130 result_table.write_csvs(opts.out) 130 dir_map = result_table.to_dir_map()
131 dir_map.write(opts.out)
131 132
132if __name__ == '__main__': 133if __name__ == '__main__':
133 main() 134 main()