Deleted Added
sdiff udiff text old ( 11238:627dd43a5846 ) new ( 11251:a15c86af004a )
full compact
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
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 ---