Options.py (11238:627dd43a5846) Options.py (11251:a15c86af004a)
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

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

82 parser.add_option("--cpu-clock", action="store", type="string",
83 default='2GHz',
84 help="Clock for blocks running at CPU speed")
85 parser.add_option("--smt", action="store_true", default=False,
86 help = """
87 Only used if multiple programs are specified. If true,
88 then the number of threads per cpu is same as the
89 number of programs.""")
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

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

82 parser.add_option("--cpu-clock", action="store", type="string",
83 default='2GHz',
84 help="Clock for blocks running at CPU speed")
85 parser.add_option("--smt", action="store_true", default=False,
86 help = """
87 Only used if multiple programs are specified. If true,
88 then the number of threads per cpu is same as the
89 number of programs.""")
90 parser.add_option("--elastic-trace-en", action="store_true",
91 help="""Enable capture of data dependency and instruction
92 fetch traces using elastic trace probe.""")
93 # Trace file paths input to trace probe in a capture simulation and input
94 # to Trace CPU in a replay simulation
95 parser.add_option("--inst-trace-file", action="store", type="string",
96 help="""Instruction fetch trace file input to
97 Elastic Trace probe in a capture simulation and
98 Trace CPU in a replay simulation""", default="")
99 parser.add_option("--data-trace-file", action="store", type="string",
100 help="""Data dependency trace file input to
101 Elastic Trace probe in a capture simulation and
102 Trace CPU in a replay simulation""", default="")
90
91 # Memory Options
92 parser.add_option("--list-mem-types",
93 action="callback", callback=_listMemTypes,
94 help="List available memory types")
95 parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64",
96 choices=MemConfig.mem_names(),
97 help = "type of memory to use")

--- 212 unchanged lines hidden ---
103
104 # Memory Options
105 parser.add_option("--list-mem-types",
106 action="callback", callback=_listMemTypes,
107 help="List available memory types")
108 parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64",
109 choices=MemConfig.mem_names(),
110 help = "type of memory to use")

--- 212 unchanged lines hidden ---