Options.py (9736:20ae86ebd4c2) Options.py (9789:233420718e61)
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

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

73 parser.add_option("--caches", action="store_true")
74 parser.add_option("--l2cache", action="store_true")
75 parser.add_option("--fastmem", action="store_true")
76 parser.add_option("--simpoint-profile", action="store_true",
77 help="Enable basic block profiling for SimPoints")
78 parser.add_option("--simpoint-interval", type="int", default=10000000,
79 help="SimPoint interval in num of instructions")
80 parser.add_option("--clock", action="store", type="string", default='2GHz')
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

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

73 parser.add_option("--caches", action="store_true")
74 parser.add_option("--l2cache", action="store_true")
75 parser.add_option("--fastmem", action="store_true")
76 parser.add_option("--simpoint-profile", action="store_true",
77 help="Enable basic block profiling for SimPoints")
78 parser.add_option("--simpoint-interval", type="int", default=10000000,
79 help="SimPoint interval in num of instructions")
80 parser.add_option("--clock", action="store", type="string", default='2GHz')
81 parser.add_option("--cpu-clock", action="store", type="string",
82 default='2GHz',
83 help="Clock for blocks running at CPU speed")
81 parser.add_option("--num-dirs", type="int", default=1)
82 parser.add_option("--num-l2caches", type="int", default=1)
83 parser.add_option("--num-l3caches", type="int", default=1)
84 parser.add_option("--l1d_size", type="string", default="64kB")
85 parser.add_option("--l1i_size", type="string", default="32kB")
86 parser.add_option("--l2_size", type="string", default="2MB")
87 parser.add_option("--l3_size", type="string", default="16MB")
88 parser.add_option("--l1d_assoc", type="int", default=2)

--- 136 unchanged lines hidden ---
84 parser.add_option("--num-dirs", type="int", default=1)
85 parser.add_option("--num-l2caches", type="int", default=1)
86 parser.add_option("--num-l3caches", type="int", default=1)
87 parser.add_option("--l1d_size", type="string", default="64kB")
88 parser.add_option("--l1i_size", type="string", default="32kB")
89 parser.add_option("--l2_size", type="string", default="2MB")
90 parser.add_option("--l3_size", type="string", default="16MB")
91 parser.add_option("--l1d_assoc", type="int", default=2)

--- 136 unchanged lines hidden ---