Ruby.py (7025:9adf5b0ccc79) Ruby.py (7032:9f938aea1942)
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;

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

26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Brad Beckmann
29
30import m5
31from m5.objects import *
32from m5.defines import buildEnv
33from m5.util import addToPath
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;

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

26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28# Authors: Brad Beckmann
29
30import m5
31from m5.objects import *
32from m5.defines import buildEnv
33from m5.util import addToPath
34addToPath('../ruby/networks')
35from MeshDirCorners import *
36
34
37protocol = buildEnv['PROTOCOL']
38
39exec "import %s" % protocol
40
41def create_system(options, physmem, piobus = None, dma_devices = []):
42
35def create_system(options, physmem, piobus = None, dma_devices = []):
36
37 protocol = buildEnv['PROTOCOL']
38 exec "import %s" % protocol
43 try:
44 (cpu_sequencers, dir_cntrls, all_cntrls) = \
45 eval("%s.create_system(options, physmem, piobus, dma_devices)" \
46 % protocol)
47 except:
48 print "Error: could not create sytem for ruby protocol %s" % protocol
49 sys.exit(1)
50
51 #
39 try:
40 (cpu_sequencers, dir_cntrls, all_cntrls) = \
41 eval("%s.create_system(options, physmem, piobus, dma_devices)" \
42 % protocol)
43 except:
44 print "Error: could not create sytem for ruby protocol %s" % protocol
45 sys.exit(1)
46
47 #
52 # Important: the topology constructor must be called before the network
53 # constructor.
48 # Important: the topology must be created before the network and after the
49 # controllers.
54 #
50 #
55 if options.topology == "crossbar":
56 net_topology = makeCrossbar(all_cntrls)
57 elif options.topology == "mesh":
58 #
59 # The uniform mesh topology assumes one router per cpu
60 #
61 net_topology = makeMesh(all_cntrls,
62 len(cpu_sequencers),
63 options.mesh_rows)
51 exec "import %s" % options.topology
52 try:
53 net_topology = eval("%s.makeTopology(all_cntrls, options)" % options.topology)
54 except:
55 print "Error: could not create topology %s" % options.topology
56 sys.exit(1)
64
57
65 elif options.topology == "mesh_dir_corner":
66 #
67 # The uniform mesh topology assumes one router per cpu
68 #
69 net_topology = makeMeshDirCorners(all_cntrls,
70 len(cpu_sequencers),
71 options.mesh_rows)
72
73 if options.garnet_network == "fixed":
74 network = GarnetNetwork_d(topology = net_topology)
75 elif options.garnet_network == "flexible":
76 network = GarnetNetwork(topology = net_topology)
77 else:
78 network = SimpleNetwork(topology = net_topology)
79
80 #

--- 25 unchanged lines hidden ---
58 if options.garnet_network == "fixed":
59 network = GarnetNetwork_d(topology = net_topology)
60 elif options.garnet_network == "flexible":
61 network = GarnetNetwork(topology = net_topology)
62 else:
63 network = SimpleNetwork(topology = net_topology)
64
65 #

--- 25 unchanged lines hidden ---