Options.py (4455:18ff8ee46de8) Options.py (4968:f1c856d8c460)
1# Copyright (c) 2006-2007 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

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

27# Authors: Lisa Hsu
28
29# system options
30parser.add_option("-d", "--detailed", action="store_true")
31parser.add_option("-t", "--timing", action="store_true")
32parser.add_option("-n", "--num_cpus", type="int", default=1)
33parser.add_option("--caches", action="store_true")
34parser.add_option("--l2cache", action="store_true")
1# Copyright (c) 2006-2007 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

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

27# Authors: Lisa Hsu
28
29# system options
30parser.add_option("-d", "--detailed", action="store_true")
31parser.add_option("-t", "--timing", action="store_true")
32parser.add_option("-n", "--num_cpus", type="int", default=1)
33parser.add_option("--caches", action="store_true")
34parser.add_option("--l2cache", action="store_true")
35parser.add_option("--fastmem", action="store_true")
35
36# Run duration options
37parser.add_option("-m", "--maxtick", type="int")
38parser.add_option("--maxtime", type="float")
39
40# Checkpointing options
41###Note that performing checkpointing via python script files will override
42###checkpoint instructions built into binaries.

--- 19 unchanged lines hidden ---
36
37# Run duration options
38parser.add_option("-m", "--maxtick", type="int")
39parser.add_option("--maxtime", type="float")
40
41# Checkpointing options
42###Note that performing checkpointing via python script files will override
43###checkpoint instructions built into binaries.

--- 19 unchanged lines hidden ---