run.py (7876:189b9b258779) run.py (8801:1a84c6a81299)
1# Copyright (c) 2005-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

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

220 # connect cpu level-1 caches to shared level-2 cache
221 cpu.connectAllPorts(system.toL2bus, system.membus)
222
223
224# ----------------------
225# Define the root
226# ----------------------
227
1# Copyright (c) 2005-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

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

220 # connect cpu level-1 caches to shared level-2 cache
221 cpu.connectAllPorts(system.toL2bus, system.membus)
222
223
224# ----------------------
225# Define the root
226# ----------------------
227
228root = Root(system = system)
228root = Root(full_system = False, system = system)
229
230# --------------------
231# Pick the correct Splash2 Benchmarks
232# ====================
233if options.benchmark == 'Cholesky':
234 root.workload = Cholesky()
235elif options.benchmark == 'FFT':
236 root.workload = FFT()

--- 51 unchanged lines hidden ---
229
230# --------------------
231# Pick the correct Splash2 Benchmarks
232# ====================
233if options.benchmark == 'Cholesky':
234 root.workload = Cholesky()
235elif options.benchmark == 'FFT':
236 root.workload = FFT()

--- 51 unchanged lines hidden ---