Deleted Added
sdiff udiff text old ( 12564:2778478ca882 ) new ( 13731:67cd980cb20f )
full compact
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

54parser.add_option("-f", "--wakeup_freq", metavar="N", default=10,
55 help="Wakeup every N cycles")
56
57#
58# Add the ruby specific and protocol specific options
59#
60Ruby.define_options(parser)
61
62execfile(os.path.join(config_root, "common", "Options.py"))
63
64(options, args) = parser.parse_args()
65
66#
67# Set the default cache size and associativity to be very small to encourage
68# races between requests and writebacks.
69#
70options.l1d_size="256B"

--- 91 unchanged lines hidden ---