Options.py (7027:46b02e79bf2c) Options.py (7032:9f938aea1942)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

32parser.add_option("--inorder", action="store_true")
33parser.add_option("-n", "--num-cpus", type="int", default=1)
34parser.add_option("--caches", action="store_true")
35parser.add_option("--l2cache", action="store_true")
36parser.add_option("--fastmem", action="store_true")
37parser.add_option("--clock", action="store", type="string", default='1GHz')
38parser.add_option("--num-dirs", type="int", default=1)
39parser.add_option("--num-l2caches", type="int", default=1)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

32parser.add_option("--inorder", action="store_true")
33parser.add_option("-n", "--num-cpus", type="int", default=1)
34parser.add_option("--caches", action="store_true")
35parser.add_option("--l2cache", action="store_true")
36parser.add_option("--fastmem", action="store_true")
37parser.add_option("--clock", action="store", type="string", default='1GHz')
38parser.add_option("--num-dirs", type="int", default=1)
39parser.add_option("--num-l2caches", type="int", default=1)
40parser.add_option("--topology", type="string", default="crossbar",
41 help="'crossbar'|'mesh'")
40parser.add_option("--topology", type="string", default="Crossbar",
41 help="check src/mem/ruby/network/topologies for complete set")
42parser.add_option("--mesh-rows", type="int", default=1,
43 help="the number of rows in the mesh topology")
44parser.add_option("--garnet-network", type="string", default=none,
45 help="'fixed'|'flexible'")
46parser.add_option("--numa-high-bit", type="int", default=none,
47 help="high order address bit to use for numa mapping")
48
49# ruby sparse memory options

--- 54 unchanged lines hidden ---
42parser.add_option("--mesh-rows", type="int", default=1,
43 help="the number of rows in the mesh topology")
44parser.add_option("--garnet-network", type="string", default=none,
45 help="'fixed'|'flexible'")
46parser.add_option("--numa-high-bit", type="int", default=none,
47 help="high order address bit to use for numa mapping")
48
49# ruby sparse memory options

--- 54 unchanged lines hidden ---