ruby_random_test.py (12564:2778478ca882) ruby_random_test.py (13731:67cd980cb20f)
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
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"))
62exec(compile( \
63 open(os.path.join(config_root, "common", "Options.py")).read(), \
64 os.path.join(config_root, "common", "Options.py"), 'exec'))
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 ---
65
66(options, args) = parser.parse_args()
67
68#
69# Set the default cache size and associativity to be very small to encourage
70# races between requests and writebacks.
71#
72options.l1d_size="256B"

--- 91 unchanged lines hidden ---