Options.py (10037:5cac77888310) Options.py (10145:d19f759b7340)
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

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

80 Only used if multiple programs are specified. If true,
81 then the number of threads per cpu is same as the
82 number of programs.""")
83
84 # Memory Options
85 parser.add_option("--list-mem-types",
86 action="callback", callback=_listMemTypes,
87 help="List available memory types")
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

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

80 Only used if multiple programs are specified. If true,
81 then the number of threads per cpu is same as the
82 number of programs.""")
83
84 # Memory Options
85 parser.add_option("--list-mem-types",
86 action="callback", callback=_listMemTypes,
87 help="List available memory types")
88 parser.add_option("--mem-type", type="choice", default="simple_mem",
88 parser.add_option("--mem-type", type="choice", default="ddr3_1600_x64",
89 choices=MemConfig.mem_names(),
90 help = "type of memory to use")
91 parser.add_option("--mem-channels", type="int", default=1,
92 help = "number of memory channels")
93 parser.add_option("--mem-size", action="store", type="string",
94 default="512MB",
95 help="Specify the physical memory size (single memory)")
96

--- 169 unchanged lines hidden ---
89 choices=MemConfig.mem_names(),
90 help = "type of memory to use")
91 parser.add_option("--mem-channels", type="int", default=1,
92 help = "number of memory channels")
93 parser.add_option("--mem-size", action="store", type="string",
94 default="512MB",
95 help="Specify the physical memory size (single memory)")
96

--- 169 unchanged lines hidden ---