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

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

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'")
42parser.add_option("--mesh-rows", type="int", default=1,
43 help="the number of rows in the mesh topology")
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

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

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'")
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'")
44
45# Run duration options
46parser.add_option("-m", "--maxtick", type="int", default=m5.MaxTick,
47 metavar="T",
48 help="Stop after T ticks")
49parser.add_option("--maxtime", type="float")
50parser.add_option("--maxinsts", type="int")
51parser.add_option("--prog_intvl", type="int")

--- 44 unchanged lines hidden ---
46
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")

--- 44 unchanged lines hidden ---