Options.py (9539:0ac00d9a8aaf) Options.py (9562:7f9d6e971ada)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 109 unchanged lines hidden (view full) ---

118 # to a timing simple CPU with caches to warm up, then to detailed CPU for
119 # data measurement
120 parser.add_option("--repeat-switch", action="store", type="int",
121 default=None,
122 help="switch back and forth between CPUs with period <N>")
123 parser.add_option("-s", "--standard-switch", action="store", type="int",
124 default=None,
125 help="switch from timing to Detailed CPU after warmup period of <N>")
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 109 unchanged lines hidden (view full) ---

118 # to a timing simple CPU with caches to warm up, then to detailed CPU for
119 # data measurement
120 parser.add_option("--repeat-switch", action="store", type="int",
121 default=None,
122 help="switch back and forth between CPUs with period <N>")
123 parser.add_option("-s", "--standard-switch", action="store", type="int",
124 default=None,
125 help="switch from timing to Detailed CPU after warmup period of <N>")
126 parser.add_option("-p", "--prog-interval", type="int",
126 parser.add_option("-p", "--prog-interval", type="str",
127 help="CPU Progress Interval")
128
129 # Fastforwarding and simpoint related materials
130 parser.add_option("-W", "--warmup-insts", action="store", type="int",
131 default=None,
132 help="Warmup period in total instructions (requires --standard-switch)")
133 parser.add_option("--bench", action="store", type="string", default=None,
134 help="base names for --take-checkpoint and --checkpoint-restore")

--- 64 unchanged lines hidden ---
127 help="CPU Progress Interval")
128
129 # Fastforwarding and simpoint related materials
130 parser.add_option("-W", "--warmup-insts", action="store", type="int",
131 default=None,
132 help="Warmup period in total instructions (requires --standard-switch)")
133 parser.add_option("--bench", action="store", type="string", default=None,
134 help="base names for --take-checkpoint and --checkpoint-restore")

--- 64 unchanged lines hidden ---