SimpleNetwork.cc (6372:f1a41ea3bbab) SimpleNetwork.cc (6762:a22a47e60c21)
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * SimpleNetwork.cc
32 *
33 * Description: See SimpleNetwork.hh
34 *
35 * $Id$
36 *
37 */
38
39#include "mem/ruby/network/simple/SimpleNetwork.hh"
40#include "mem/ruby/profiler/Profiler.hh"
41#include "mem/ruby/system/System.hh"
42#include "mem/ruby/network/simple/Switch.hh"
43#include "mem/ruby/common/NetDest.hh"
44#include "mem/ruby/network/simple/Topology.hh"
45#include "mem/protocol/TopologyType.hh"
46#include "mem/protocol/MachineType.hh"
47#include "mem/ruby/buffers/MessageBuffer.hh"
48#include "mem/protocol/Protocol.hh"
49#include "mem/gems_common/Map.hh"
50
51// ***BIG HACK*** - This is actually code that _should_ be in Network.cc
52
53// Note: Moved to Princeton Network
54// calls new to abstract away from the network
55/*
56Network* Network::createNetwork(int nodes)
57{
58 return new SimpleNetwork(nodes);
59}
60*/
61
62SimpleNetwork::SimpleNetwork(const string & name)
63 : Network(name)
64{
65 m_virtual_networks = 0;
66 m_topology_ptr = NULL;
67}
68
69void SimpleNetwork::init(const vector<string> & argv)
70{
71
72 Network::init(argv);
73
74 m_endpoint_switches.setSize(m_nodes);
75
76 m_in_use.setSize(m_virtual_networks);
77 m_ordered.setSize(m_virtual_networks);
78 for (int i = 0; i < m_virtual_networks; i++) {
79 m_in_use[i] = false;
80 m_ordered[i] = false;
81 }
82
83 // Allocate to and from queues
84 m_toNetQueues.setSize(m_nodes);
85 m_fromNetQueues.setSize(m_nodes);
86 for (int node = 0; node < m_nodes; node++) {
87 m_toNetQueues[node].setSize(m_virtual_networks);
88 m_fromNetQueues[node].setSize(m_virtual_networks);
89 for (int j = 0; j < m_virtual_networks; j++) {
90 m_toNetQueues[node][j] = new MessageBuffer;
91 m_fromNetQueues[node][j] = new MessageBuffer;
92 }
93 }
94
95 // Setup the network switches
96 // m_topology_ptr = new Topology(this, m_nodes);
97 m_topology_ptr->makeTopology();
98 int number_of_switches = m_topology_ptr->numSwitches();
99 for (int i=0; i<number_of_switches; i++) {
100 m_switch_ptr_vector.insertAtBottom(new Switch(i, this));
101 }
102 m_topology_ptr->createLinks(false); // false because this isn't a reconfiguration
103}
104
105void SimpleNetwork::reset()
106{
107 for (int node = 0; node < m_nodes; node++) {
108 for (int j = 0; j < m_virtual_networks; j++) {
109 m_toNetQueues[node][j]->clear();
110 m_fromNetQueues[node][j]->clear();
111 }
112 }
113
114 for(int i=0; i<m_switch_ptr_vector.size(); i++){
115 m_switch_ptr_vector[i]->clearBuffers();
116 }
117}
118
119SimpleNetwork::~SimpleNetwork()
120{
121 for (int i = 0; i < m_nodes; i++) {
122 m_toNetQueues[i].deletePointers();
123 m_fromNetQueues[i].deletePointers();
124 }
125 m_switch_ptr_vector.deletePointers();
126 m_buffers_to_free.deletePointers();
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * SimpleNetwork.cc
32 *
33 * Description: See SimpleNetwork.hh
34 *
35 * $Id$
36 *
37 */
38
39#include "mem/ruby/network/simple/SimpleNetwork.hh"
40#include "mem/ruby/profiler/Profiler.hh"
41#include "mem/ruby/system/System.hh"
42#include "mem/ruby/network/simple/Switch.hh"
43#include "mem/ruby/common/NetDest.hh"
44#include "mem/ruby/network/simple/Topology.hh"
45#include "mem/protocol/TopologyType.hh"
46#include "mem/protocol/MachineType.hh"
47#include "mem/ruby/buffers/MessageBuffer.hh"
48#include "mem/protocol/Protocol.hh"
49#include "mem/gems_common/Map.hh"
50
51// ***BIG HACK*** - This is actually code that _should_ be in Network.cc
52
53// Note: Moved to Princeton Network
54// calls new to abstract away from the network
55/*
56Network* Network::createNetwork(int nodes)
57{
58 return new SimpleNetwork(nodes);
59}
60*/
61
62SimpleNetwork::SimpleNetwork(const string & name)
63 : Network(name)
64{
65 m_virtual_networks = 0;
66 m_topology_ptr = NULL;
67}
68
69void SimpleNetwork::init(const vector<string> & argv)
70{
71
72 Network::init(argv);
73
74 m_endpoint_switches.setSize(m_nodes);
75
76 m_in_use.setSize(m_virtual_networks);
77 m_ordered.setSize(m_virtual_networks);
78 for (int i = 0; i < m_virtual_networks; i++) {
79 m_in_use[i] = false;
80 m_ordered[i] = false;
81 }
82
83 // Allocate to and from queues
84 m_toNetQueues.setSize(m_nodes);
85 m_fromNetQueues.setSize(m_nodes);
86 for (int node = 0; node < m_nodes; node++) {
87 m_toNetQueues[node].setSize(m_virtual_networks);
88 m_fromNetQueues[node].setSize(m_virtual_networks);
89 for (int j = 0; j < m_virtual_networks; j++) {
90 m_toNetQueues[node][j] = new MessageBuffer;
91 m_fromNetQueues[node][j] = new MessageBuffer;
92 }
93 }
94
95 // Setup the network switches
96 // m_topology_ptr = new Topology(this, m_nodes);
97 m_topology_ptr->makeTopology();
98 int number_of_switches = m_topology_ptr->numSwitches();
99 for (int i=0; i<number_of_switches; i++) {
100 m_switch_ptr_vector.insertAtBottom(new Switch(i, this));
101 }
102 m_topology_ptr->createLinks(false); // false because this isn't a reconfiguration
103}
104
105void SimpleNetwork::reset()
106{
107 for (int node = 0; node < m_nodes; node++) {
108 for (int j = 0; j < m_virtual_networks; j++) {
109 m_toNetQueues[node][j]->clear();
110 m_fromNetQueues[node][j]->clear();
111 }
112 }
113
114 for(int i=0; i<m_switch_ptr_vector.size(); i++){
115 m_switch_ptr_vector[i]->clearBuffers();
116 }
117}
118
119SimpleNetwork::~SimpleNetwork()
120{
121 for (int i = 0; i < m_nodes; i++) {
122 m_toNetQueues[i].deletePointers();
123 m_fromNetQueues[i].deletePointers();
124 }
125 m_switch_ptr_vector.deletePointers();
126 m_buffers_to_free.deletePointers();
127 delete m_topology_ptr;
127 // delete m_topology_ptr;
128}
129
130// From a switch to an endpoint node
131void SimpleNetwork::makeOutLink(SwitchID src, NodeID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration)
132{
133 assert(dest < m_nodes);
134 assert(src < m_switch_ptr_vector.size());
135 assert(m_switch_ptr_vector[src] != NULL);
136 if(!isReconfiguration){
137 m_switch_ptr_vector[src]->addOutPort(m_fromNetQueues[dest], routing_table_entry, link_latency, bw_multiplier);
138 m_endpoint_switches[dest] = m_switch_ptr_vector[src];
139 } else {
140 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
141 }
142}
143
144// From an endpoint node to a switch
145void SimpleNetwork::makeInLink(NodeID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int bw_multiplier, bool isReconfiguration)
146{
147 assert(src < m_nodes);
148 if(!isReconfiguration){
149 m_switch_ptr_vector[dest]->addInPort(m_toNetQueues[src]);
150 } else {
151 // do nothing
152 }
153}
154
155// From a switch to a switch
156void SimpleNetwork::makeInternalLink(SwitchID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration)
157{
158 if(!isReconfiguration){
159 // Create a set of new MessageBuffers
160 Vector<MessageBuffer*> queues;
161 for (int i = 0; i < m_virtual_networks; i++) {
162 // allocate a buffer
163 MessageBuffer* buffer_ptr = new MessageBuffer;
164 buffer_ptr->setOrdering(true);
165 if (m_buffer_size > 0) {
166 buffer_ptr->setSize(m_buffer_size);
167 }
168 queues.insertAtBottom(buffer_ptr);
169 // remember to deallocate it
170 m_buffers_to_free.insertAtBottom(buffer_ptr);
171 }
172
173 // Connect it to the two switches
174 m_switch_ptr_vector[dest]->addInPort(queues);
175 m_switch_ptr_vector[src]->addOutPort(queues, routing_table_entry, link_latency, bw_multiplier);
176 } else {
177 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
178 }
179}
180
181void SimpleNetwork::checkNetworkAllocation(NodeID id, bool ordered, int network_num)
182{
183 ASSERT(id < m_nodes);
184 ASSERT(network_num < m_virtual_networks);
185
186 if (ordered) {
187 m_ordered[network_num] = true;
188 }
189 m_in_use[network_num] = true;
190}
191
192MessageBuffer* SimpleNetwork::getToNetQueue(NodeID id, bool ordered, int network_num)
193{
194 checkNetworkAllocation(id, ordered, network_num);
195 return m_toNetQueues[id][network_num];
196}
197
198MessageBuffer* SimpleNetwork::getFromNetQueue(NodeID id, bool ordered, int network_num)
199{
200 checkNetworkAllocation(id, ordered, network_num);
201 return m_fromNetQueues[id][network_num];
202}
203
204const Vector<Throttle*>* SimpleNetwork::getThrottles(NodeID id) const
205{
206 assert(id >= 0);
207 assert(id < m_nodes);
208 assert(m_endpoint_switches[id] != NULL);
209 return m_endpoint_switches[id]->getThrottles();
210}
211
212void SimpleNetwork::printStats(ostream& out) const
213{
214 out << endl;
215 out << "Network Stats" << endl;
216 out << "-------------" << endl;
217 out << endl;
218 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
219 m_switch_ptr_vector[i]->printStats(out);
220 }
221}
222
223void SimpleNetwork::clearStats()
224{
225 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
226 m_switch_ptr_vector[i]->clearStats();
227 }
228}
229
230void SimpleNetwork::printConfig(ostream& out) const
231{
232 out << endl;
233 out << "Network Configuration" << endl;
234 out << "---------------------" << endl;
235 out << "network: SIMPLE_NETWORK" << endl;
236 out << "topology: " << m_topology_ptr->getName() << endl;
237 out << endl;
238
239 for (int i = 0; i < m_virtual_networks; i++) {
240 out << "virtual_net_" << i << ": ";
241 if (m_in_use[i]) {
242 out << "active, ";
243 if (m_ordered[i]) {
244 out << "ordered" << endl;
245 } else {
246 out << "unordered" << endl;
247 }
248 } else {
249 out << "inactive" << endl;
250 }
251 }
252 out << endl;
253 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
254 m_switch_ptr_vector[i]->printConfig(out);
255 }
256
257 m_topology_ptr->printConfig(out);
258}
259
260void SimpleNetwork::print(ostream& out) const
261{
262 out << "[SimpleNetwork]";
263}
128}
129
130// From a switch to an endpoint node
131void SimpleNetwork::makeOutLink(SwitchID src, NodeID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration)
132{
133 assert(dest < m_nodes);
134 assert(src < m_switch_ptr_vector.size());
135 assert(m_switch_ptr_vector[src] != NULL);
136 if(!isReconfiguration){
137 m_switch_ptr_vector[src]->addOutPort(m_fromNetQueues[dest], routing_table_entry, link_latency, bw_multiplier);
138 m_endpoint_switches[dest] = m_switch_ptr_vector[src];
139 } else {
140 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
141 }
142}
143
144// From an endpoint node to a switch
145void SimpleNetwork::makeInLink(NodeID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int bw_multiplier, bool isReconfiguration)
146{
147 assert(src < m_nodes);
148 if(!isReconfiguration){
149 m_switch_ptr_vector[dest]->addInPort(m_toNetQueues[src]);
150 } else {
151 // do nothing
152 }
153}
154
155// From a switch to a switch
156void SimpleNetwork::makeInternalLink(SwitchID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration)
157{
158 if(!isReconfiguration){
159 // Create a set of new MessageBuffers
160 Vector<MessageBuffer*> queues;
161 for (int i = 0; i < m_virtual_networks; i++) {
162 // allocate a buffer
163 MessageBuffer* buffer_ptr = new MessageBuffer;
164 buffer_ptr->setOrdering(true);
165 if (m_buffer_size > 0) {
166 buffer_ptr->setSize(m_buffer_size);
167 }
168 queues.insertAtBottom(buffer_ptr);
169 // remember to deallocate it
170 m_buffers_to_free.insertAtBottom(buffer_ptr);
171 }
172
173 // Connect it to the two switches
174 m_switch_ptr_vector[dest]->addInPort(queues);
175 m_switch_ptr_vector[src]->addOutPort(queues, routing_table_entry, link_latency, bw_multiplier);
176 } else {
177 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
178 }
179}
180
181void SimpleNetwork::checkNetworkAllocation(NodeID id, bool ordered, int network_num)
182{
183 ASSERT(id < m_nodes);
184 ASSERT(network_num < m_virtual_networks);
185
186 if (ordered) {
187 m_ordered[network_num] = true;
188 }
189 m_in_use[network_num] = true;
190}
191
192MessageBuffer* SimpleNetwork::getToNetQueue(NodeID id, bool ordered, int network_num)
193{
194 checkNetworkAllocation(id, ordered, network_num);
195 return m_toNetQueues[id][network_num];
196}
197
198MessageBuffer* SimpleNetwork::getFromNetQueue(NodeID id, bool ordered, int network_num)
199{
200 checkNetworkAllocation(id, ordered, network_num);
201 return m_fromNetQueues[id][network_num];
202}
203
204const Vector<Throttle*>* SimpleNetwork::getThrottles(NodeID id) const
205{
206 assert(id >= 0);
207 assert(id < m_nodes);
208 assert(m_endpoint_switches[id] != NULL);
209 return m_endpoint_switches[id]->getThrottles();
210}
211
212void SimpleNetwork::printStats(ostream& out) const
213{
214 out << endl;
215 out << "Network Stats" << endl;
216 out << "-------------" << endl;
217 out << endl;
218 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
219 m_switch_ptr_vector[i]->printStats(out);
220 }
221}
222
223void SimpleNetwork::clearStats()
224{
225 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
226 m_switch_ptr_vector[i]->clearStats();
227 }
228}
229
230void SimpleNetwork::printConfig(ostream& out) const
231{
232 out << endl;
233 out << "Network Configuration" << endl;
234 out << "---------------------" << endl;
235 out << "network: SIMPLE_NETWORK" << endl;
236 out << "topology: " << m_topology_ptr->getName() << endl;
237 out << endl;
238
239 for (int i = 0; i < m_virtual_networks; i++) {
240 out << "virtual_net_" << i << ": ";
241 if (m_in_use[i]) {
242 out << "active, ";
243 if (m_ordered[i]) {
244 out << "ordered" << endl;
245 } else {
246 out << "unordered" << endl;
247 }
248 } else {
249 out << "inactive" << endl;
250 }
251 }
252 out << endl;
253 for(int i=0; i<m_switch_ptr_vector.size(); i++) {
254 m_switch_ptr_vector[i]->printConfig(out);
255 }
256
257 m_topology_ptr->printConfig(out);
258}
259
260void SimpleNetwork::print(ostream& out) const
261{
262 out << "[SimpleNetwork]";
263}