cluster.py (7716:fa706473bcd5) cluster.py (8801:1a84c6a81299)
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

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

234 for cpu in cluster.cpus:
235 cpu.icache_port = cluster.clusterbus.port
236 cpu.dcache_port = cluster.clusterbus.port
237
238# ----------------------
239# Define the root
240# ----------------------
241
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

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

234 for cpu in cluster.cpus:
235 cpu.icache_port = cluster.clusterbus.port
236 cpu.dcache_port = cluster.clusterbus.port
237
238# ----------------------
239# Define the root
240# ----------------------
241
242root = Root(system = system)
242root = Root(full_system = False, system = system)
243
244# --------------------
245# Pick the correct Splash2 Benchmarks
246# ====================
247if options.benchmark == 'Cholesky':
248 root.workload = Cholesky()
249elif options.benchmark == 'FFT':
250 root.workload = FFT()

--- 53 unchanged lines hidden ---
243
244# --------------------
245# Pick the correct Splash2 Benchmarks
246# ====================
247if options.benchmark == 'Cholesky':
248 root.workload = Cholesky()
249elif options.benchmark == 'FFT':
250 root.workload = FFT()

--- 53 unchanged lines hidden ---