Options.py (6918:9b57f0108bc8) Options.py (7025:9adf5b0ccc79)
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

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

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'")
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'")
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

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

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'")
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'")
46
46
47# ruby sparse memory options
48parser.add_option("--use-map", action="store_true", default=False)
49parser.add_option("--map-levels", type="int", default=4)
50
47# Run duration options
48parser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick,
49 metavar="T",
50 help="Stop after T ticks")
51parser.add_option("--maxtime", type="float")
52parser.add_option("--maxinsts", type="int")
53parser.add_option("--prog_intvl", type="int")
54

--- 43 unchanged lines hidden ---
51# Run duration options
52parser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick,
53 metavar="T",
54 help="Stop after T ticks")
55parser.add_option("--maxtime", type="float")
56parser.add_option("--maxinsts", type="int")
57parser.add_option("--prog_intvl", type="int")
58

--- 43 unchanged lines hidden ---