Ruby.py (10720:67b3e74de9ae) Ruby.py (10898:96c0fe4a09f0)
1# Copyright (c) 2012 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

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

61
62 # Options related to cache structure
63 parser.add_option("--ports", action="store", type="int", default=4,
64 help="used of transitions per cycle which is a proxy \
65 for the number of ports.")
66
67 # ruby network options
68 parser.add_option("--topology", type="string", default="Crossbar",
1# Copyright (c) 2012 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

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

61
62 # Options related to cache structure
63 parser.add_option("--ports", action="store", type="int", default=4,
64 help="used of transitions per cycle which is a proxy \
65 for the number of ports.")
66
67 # ruby network options
68 parser.add_option("--topology", type="string", default="Crossbar",
69 help="check src/mem/ruby/network/topologies for complete set")
69 help="check configs/topologies for complete set")
70 parser.add_option("--mesh-rows", type="int", default=1,
71 help="the number of rows in the mesh topology")
72 parser.add_option("--garnet-network", type="choice",
73 choices=['fixed', 'flexible'], help="'fixed'|'flexible'")
74 parser.add_option("--network-fault-model", action="store_true", default=False,
75 help="enable network fault model: see src/mem/ruby/network/fault_model/")
76
77 # ruby mapping options

--- 171 unchanged lines hidden ---
70 parser.add_option("--mesh-rows", type="int", default=1,
71 help="the number of rows in the mesh topology")
72 parser.add_option("--garnet-network", type="choice",
73 choices=['fixed', 'flexible'], help="'fixed'|'flexible'")
74 parser.add_option("--network-fault-model", action="store_true", default=False,
75 help="enable network fault model: see src/mem/ruby/network/fault_model/")
76
77 # ruby mapping options

--- 171 unchanged lines hidden ---