65,70d64
< parser.add_option("--list-mem-types",
< action="callback", callback=_listMemTypes,
< help="List available memory types")
< parser.add_option("--mem-type", type="choice", default="simple_mem",
< choices=MemConfig.mem_names(),
< help = "type of memory to use")
73,79d66
< parser.add_option("--caches", action="store_true")
< parser.add_option("--l2cache", action="store_true")
< parser.add_option("--fastmem", action="store_true")
< parser.add_option("--simpoint-profile", action="store_true",
< help="Enable basic block profiling for SimPoints")
< parser.add_option("--simpoint-interval", type="int", default=10000000,
< help="SimPoint interval in num of instructions")
86a74,94
> parser.add_option("--smt", action="store_true", default=False,
> help = """
> Only used if multiple programs are specified. If true,
> then the number of threads per cpu is same as the
> number of programs.""")
>
> # Memory Options
> parser.add_option("--list-mem-types",
> action="callback", callback=_listMemTypes,
> help="List available memory types")
> parser.add_option("--mem-type", type="choice", default="simple_mem",
> choices=MemConfig.mem_names(),
> help = "type of memory to use")
> parser.add_option("--mem-size", action="store", type="string",
> default="512MB",
> help="Specify the physical memory size (single memory)")
>
> # Cache Options
> parser.add_option("--caches", action="store_true")
> parser.add_option("--l2cache", action="store_true")
> parser.add_option("--fastmem", action="store_true")
98a107,108
>
> # Enable Ruby
100,104d109
< parser.add_option("--smt", action="store_true", default=False,
< help = """
< Only used if multiple programs are specified. If true,
< then the number of threads per cpu is same as the
< number of programs.""")
124a130,135
> # Simpoint options
> parser.add_option("--simpoint-profile", action="store_true",
> help="Enable basic block profiling for SimPoints")
> parser.add_option("--simpoint-interval", type="int", default=10000000,
> help="SimPoint interval in num of instructions")
>
227,230d237
<
< # Memory Size Options
< parser.add_option("--mem-size", action="store", type="string", default=None,
< help="Specify the physical memory size (single memory)")