diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-08 15:42:16 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-04-08 15:42:16 -0400 |
commit | d169debf732270c9571be6ea6e7d920345bffc33 (patch) | |
tree | d86c1ff5d0e4a116fcc916717abb29a026862c74 /config/config.py | |
parent | 8864a4018c9b9088f330c3ef24ed7b5313ec36a2 (diff) |
Added parameter file options for tracers and pre/post experiment commands.
Diffstat (limited to 'config/config.py')
-rw-r--r-- | config/config.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.py b/config/config.py index 49fd234..3486a40 100644 --- a/config/config.py +++ b/config/config.py | |||
@@ -28,7 +28,10 @@ PARAMS = {'sched' : 'scheduler', # Scheduler used by run_exps | |||
28 | 'copts' : 'config-options', # Required kernel configuration options | 28 | 'copts' : 'config-options', # Required kernel configuration options |
29 | 'cycles' : 'clock-frequency', # Frequency run_exps was run with | 29 | 'cycles' : 'clock-frequency', # Frequency run_exps was run with |
30 | 'tasks' : 'tasks', # Number of tasks | 30 | 'tasks' : 'tasks', # Number of tasks |
31 | 'trial' : 'trial' # For multiple exps with same config | 31 | 'trial' : 'trial', # For multiple exps with same config |
32 | 'pre' : 'pre-experiment', # Run before each experiment | ||
33 | 'post' : 'post-experiment', # Run after each experiment | ||
34 | 'trace' : 'tracers' # Tracers to run with an experiment | ||
32 | } | 35 | } |
33 | 36 | ||
34 | '''Default values for program options.''' | 37 | '''Default values for program options.''' |