Options.py (10145:d19f759b7340) Options.py (10159:ca6f1407f8f8)
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

128 parser.add_option("--maxtime", type="float", default=None,
129 help="Run to the specified absolute simulated time in " \
130 "seconds")
131 parser.add_option("-I", "--maxinsts", action="store", type="int",
132 default=None, help="""Total number of instructions to
133 simulate (default: run forever)""")
134 parser.add_option("--work-item-id", action="store", type="int",
135 help="the specific work id for exit & checkpointing")
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

128 parser.add_option("--maxtime", type="float", default=None,
129 help="Run to the specified absolute simulated time in " \
130 "seconds")
131 parser.add_option("-I", "--maxinsts", action="store", type="int",
132 default=None, help="""Total number of instructions to
133 simulate (default: run forever)""")
134 parser.add_option("--work-item-id", action="store", type="int",
135 help="the specific work id for exit & checkpointing")
136 parser.add_option("--num-work-ids", action="store", type="int",
137 help="Number of distinct work item types")
136 parser.add_option("--work-begin-cpu-id-exit", action="store", type="int",
137 help="exit when work starts on the specified cpu")
138 parser.add_option("--work-end-exit-count", action="store", type="int",
139 help="exit at specified work end count")
140 parser.add_option("--work-begin-exit-count", action="store", type="int",
141 help="exit at specified work begin count")
142 parser.add_option("--init-param", action="store", type="int", default=0,
143 help="""Parameter available in simulation with m5

--- 122 unchanged lines hidden ---
138 parser.add_option("--work-begin-cpu-id-exit", action="store", type="int",
139 help="exit when work starts on the specified cpu")
140 parser.add_option("--work-end-exit-count", action="store", type="int",
141 help="exit at specified work end count")
142 parser.add_option("--work-begin-exit-count", action="store", type="int",
143 help="exit at specified work begin count")
144 parser.add_option("--init-param", action="store", type="int", default=0,
145 help="""Parameter available in simulation with m5

--- 122 unchanged lines hidden ---