SimpleNetwork.cc (8258:7c377f5162f8) SimpleNetwork.cc (8259:36987780169e)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <cassert>
30#include <numeric>
31
32#include "base/stl_helpers.hh"
33#include "mem/protocol/MachineType.hh"
34#include "mem/protocol/Protocol.hh"
35#include "mem/protocol/TopologyType.hh"
36#include "mem/ruby/buffers/MessageBuffer.hh"
37#include "mem/ruby/common/NetDest.hh"
38#include "mem/ruby/network/BasicLink.hh"
39#include "mem/ruby/network/simple/SimpleLink.hh"
40#include "mem/ruby/network/simple/SimpleNetwork.hh"
41#include "mem/ruby/network/simple/Switch.hh"
42#include "mem/ruby/network/simple/Throttle.hh"
43#include "mem/ruby/network/Topology.hh"
44#include "mem/ruby/profiler/Profiler.hh"
45#include "mem/ruby/system/System.hh"
46
47using namespace std;
48using m5::stl_helpers::deletePointers;
49
50#if 0
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
55Network*
56Network::createNetwork(int nodes)
57{
58 return new SimpleNetwork(nodes);
59}
60#endif
61
62SimpleNetwork::SimpleNetwork(const Params *p)
63 : Network(p)
64{
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <cassert>
30#include <numeric>
31
32#include "base/stl_helpers.hh"
33#include "mem/protocol/MachineType.hh"
34#include "mem/protocol/Protocol.hh"
35#include "mem/protocol/TopologyType.hh"
36#include "mem/ruby/buffers/MessageBuffer.hh"
37#include "mem/ruby/common/NetDest.hh"
38#include "mem/ruby/network/BasicLink.hh"
39#include "mem/ruby/network/simple/SimpleLink.hh"
40#include "mem/ruby/network/simple/SimpleNetwork.hh"
41#include "mem/ruby/network/simple/Switch.hh"
42#include "mem/ruby/network/simple/Throttle.hh"
43#include "mem/ruby/network/Topology.hh"
44#include "mem/ruby/profiler/Profiler.hh"
45#include "mem/ruby/system/System.hh"
46
47using namespace std;
48using m5::stl_helpers::deletePointers;
49
50#if 0
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
55Network*
56Network::createNetwork(int nodes)
57{
58 return new SimpleNetwork(nodes);
59}
60#endif
61
62SimpleNetwork::SimpleNetwork(const Params *p)
63 : Network(p)
64{
65 m_buffer_size = p->buffer_size;
66 m_endpoint_bandwidth = p->endpoint_bandwidth;
67 m_adaptive_routing = p->adaptive_routing;
68
65 // Note: the parent Network Object constructor is called before the
66 // SimpleNetwork child constructor. Therefore, the member variables
67 // used below should already be initialized.
68
69 m_endpoint_switches.resize(m_nodes);
70
71 m_in_use.resize(m_virtual_networks);
72 m_ordered.resize(m_virtual_networks);
73 for (int i = 0; i < m_virtual_networks; i++) {
74 m_in_use[i] = false;
75 m_ordered[i] = false;
76 }
77
78 // Allocate to and from queues
79 m_toNetQueues.resize(m_nodes);
80 m_fromNetQueues.resize(m_nodes);
81 for (int node = 0; node < m_nodes; node++) {
82 m_toNetQueues[node].resize(m_virtual_networks);
83 m_fromNetQueues[node].resize(m_virtual_networks);
84 for (int j = 0; j < m_virtual_networks; j++) {
85 m_toNetQueues[node][j] =
86 new MessageBuffer(csprintf("toNet node %d j %d", node, j));
87 m_fromNetQueues[node][j] =
88 new MessageBuffer(csprintf("fromNet node %d j %d", node, j));
89 }
90 }
91}
92
93void
94SimpleNetwork::init()
95{
96 Network::init();
97
98 // The topology pointer should have already been initialized in
99 // the parent class network constructor.
100 assert(m_topology_ptr != NULL);
101 int number_of_switches = m_topology_ptr->numSwitches();
102 for (int i = 0; i < number_of_switches; i++) {
103 m_switch_ptr_vector.push_back(new Switch(i, this));
104 }
105
106 // false because this isn't a reconfiguration
107 m_topology_ptr->createLinks(this, false);
108}
109
110void
111SimpleNetwork::reset()
112{
113 for (int node = 0; node < m_nodes; node++) {
114 for (int j = 0; j < m_virtual_networks; j++) {
115 m_toNetQueues[node][j]->clear();
116 m_fromNetQueues[node][j]->clear();
117 }
118 }
119
120 for(int i = 0; i < m_switch_ptr_vector.size(); i++){
121 m_switch_ptr_vector[i]->clearBuffers();
122 }
123}
124
125SimpleNetwork::~SimpleNetwork()
126{
127 for (int i = 0; i < m_nodes; i++) {
128 deletePointers(m_toNetQueues[i]);
129 deletePointers(m_fromNetQueues[i]);
130 }
131 deletePointers(m_switch_ptr_vector);
132 deletePointers(m_buffers_to_free);
133 // delete m_topology_ptr;
134}
135
136// From a switch to an endpoint node
137void
138SimpleNetwork::makeOutLink(SwitchID src, NodeID dest, BasicLink* link,
139 LinkDirection direction,
140 const NetDest& routing_table_entry,
141 bool isReconfiguration)
142{
143 assert(dest < m_nodes);
144 assert(src < m_switch_ptr_vector.size());
145 assert(m_switch_ptr_vector[src] != NULL);
146
147 if (isReconfiguration) {
148 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
149 return;
150 }
151
152 SimpleExtLink *simple_link = safe_cast<SimpleExtLink*>(link);
153
154 m_switch_ptr_vector[src]->addOutPort(m_fromNetQueues[dest],
155 routing_table_entry,
156 simple_link->m_latency,
157 simple_link->m_bw_multiplier);
158
159 m_endpoint_switches[dest] = m_switch_ptr_vector[src];
160}
161
162// From an endpoint node to a switch
163void
164SimpleNetwork::makeInLink(NodeID src, SwitchID dest, BasicLink* link,
165 LinkDirection direction,
166 const NetDest& routing_table_entry,
167 bool isReconfiguration)
168{
169 assert(src < m_nodes);
170 if (isReconfiguration) {
171 // do nothing
172 return;
173 }
174
175 m_switch_ptr_vector[dest]->addInPort(m_toNetQueues[src]);
176}
177
178// From a switch to a switch
179void
180SimpleNetwork::makeInternalLink(SwitchID src, SwitchID dest, BasicLink* link,
181 LinkDirection direction,
182 const NetDest& routing_table_entry,
183 bool isReconfiguration)
184{
185 if (isReconfiguration) {
186 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
187 return;
188 }
189
190 // Create a set of new MessageBuffers
191 std::vector<MessageBuffer*> queues;
192 for (int i = 0; i < m_virtual_networks; i++) {
193 // allocate a buffer
194 MessageBuffer* buffer_ptr = new MessageBuffer;
195 buffer_ptr->setOrdering(true);
196 if (m_buffer_size > 0) {
197 buffer_ptr->resize(m_buffer_size);
198 }
199 queues.push_back(buffer_ptr);
200 // remember to deallocate it
201 m_buffers_to_free.push_back(buffer_ptr);
202 }
203 // Connect it to the two switches
204 SimpleIntLink *simple_link = safe_cast<SimpleIntLink*>(link);
205
206 m_switch_ptr_vector[dest]->addInPort(queues);
207 m_switch_ptr_vector[src]->addOutPort(queues, routing_table_entry,
208 simple_link->m_latency,
209 simple_link->m_bw_multiplier);
210}
211
212void
213SimpleNetwork::checkNetworkAllocation(NodeID id, bool ordered, int network_num)
214{
215 assert(id < m_nodes);
216 assert(network_num < m_virtual_networks);
217
218 if (ordered) {
219 m_ordered[network_num] = true;
220 }
221 m_in_use[network_num] = true;
222}
223
224MessageBuffer*
225SimpleNetwork::getToNetQueue(NodeID id, bool ordered, int network_num)
226{
227 checkNetworkAllocation(id, ordered, network_num);
228 return m_toNetQueues[id][network_num];
229}
230
231MessageBuffer*
232SimpleNetwork::getFromNetQueue(NodeID id, bool ordered, int network_num)
233{
234 checkNetworkAllocation(id, ordered, network_num);
235 return m_fromNetQueues[id][network_num];
236}
237
238const std::vector<Throttle*>*
239SimpleNetwork::getThrottles(NodeID id) const
240{
241 assert(id >= 0);
242 assert(id < m_nodes);
243 assert(m_endpoint_switches[id] != NULL);
244 return m_endpoint_switches[id]->getThrottles();
245}
246
247void
248SimpleNetwork::printStats(ostream& out) const
249{
250 out << endl;
251 out << "Network Stats" << endl;
252 out << "-------------" << endl;
253 out << endl;
254
255 //
256 // Determine total counts before printing out each switch's stats
257 //
258 std::vector<uint64> total_msg_counts;
259 total_msg_counts.resize(MessageSizeType_NUM);
260 for (MessageSizeType type = MessageSizeType_FIRST;
261 type < MessageSizeType_NUM;
262 ++type) {
263 total_msg_counts[type] = 0;
264 }
265
266 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
267 const std::vector<Throttle*>* throttles =
268 m_switch_ptr_vector[i]->getThrottles();
269
270 for (int p = 0; p < throttles->size(); p++) {
271
272 const std::vector<std::vector<int> >& message_counts =
273 ((*throttles)[p])->getCounters();
274
275 for (MessageSizeType type = MessageSizeType_FIRST;
276 type < MessageSizeType_NUM;
277 ++type) {
278
279 const std::vector<int> &mct = message_counts[type];
280 int sum = accumulate(mct.begin(), mct.end(), 0);
281 total_msg_counts[type] += uint64(sum);
282 }
283 }
284 }
285 uint64 total_msgs = 0;
286 uint64 total_bytes = 0;
287 for (MessageSizeType type = MessageSizeType_FIRST;
288 type < MessageSizeType_NUM;
289 ++type) {
290
291 if (total_msg_counts[type] > 0) {
292 out << "total_msg_count_" << type << ": " << total_msg_counts[type]
293 << " " << total_msg_counts[type] *
294 uint64(RubySystem::getNetwork()->MessageSizeType_to_int(type))
295 << endl;
296
297 total_msgs += total_msg_counts[type];
298
299 total_bytes += total_msg_counts[type] *
300 uint64(RubySystem::getNetwork()->MessageSizeType_to_int(type));
301
302 }
303 }
304
305 out << "total_msgs: " << total_msgs
306 << " total_bytes: " << total_bytes << endl;
307
308 out << endl;
309 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
310 m_switch_ptr_vector[i]->printStats(out);
311 }
312 m_topology_ptr->printStats(out);
313}
314
315void
316SimpleNetwork::clearStats()
317{
318 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
319 m_switch_ptr_vector[i]->clearStats();
320 }
321 m_topology_ptr->clearStats();
322}
323
324void
325SimpleNetwork::printConfig(ostream& out) const
326{
327 out << endl;
328 out << "Network Configuration" << endl;
329 out << "---------------------" << endl;
330 out << "network: SIMPLE_NETWORK" << endl;
331 out << "topology: " << m_topology_ptr->getName() << endl;
332 out << endl;
333
334 for (int i = 0; i < m_virtual_networks; i++) {
335 out << "virtual_net_" << i << ": ";
336 if (m_in_use[i]) {
337 out << "active, ";
338 if (m_ordered[i]) {
339 out << "ordered" << endl;
340 } else {
341 out << "unordered" << endl;
342 }
343 } else {
344 out << "inactive" << endl;
345 }
346 }
347 out << endl;
348
349 for(int i = 0; i < m_switch_ptr_vector.size(); i++) {
350 m_switch_ptr_vector[i]->printConfig(out);
351 }
352
353 m_topology_ptr->printConfig(out);
354}
355
356void
357SimpleNetwork::print(ostream& out) const
358{
359 out << "[SimpleNetwork]";
360}
361
362
363SimpleNetwork *
364SimpleNetworkParams::create()
365{
366 return new SimpleNetwork(this);
367}
69 // Note: the parent Network Object constructor is called before the
70 // SimpleNetwork child constructor. Therefore, the member variables
71 // used below should already be initialized.
72
73 m_endpoint_switches.resize(m_nodes);
74
75 m_in_use.resize(m_virtual_networks);
76 m_ordered.resize(m_virtual_networks);
77 for (int i = 0; i < m_virtual_networks; i++) {
78 m_in_use[i] = false;
79 m_ordered[i] = false;
80 }
81
82 // Allocate to and from queues
83 m_toNetQueues.resize(m_nodes);
84 m_fromNetQueues.resize(m_nodes);
85 for (int node = 0; node < m_nodes; node++) {
86 m_toNetQueues[node].resize(m_virtual_networks);
87 m_fromNetQueues[node].resize(m_virtual_networks);
88 for (int j = 0; j < m_virtual_networks; j++) {
89 m_toNetQueues[node][j] =
90 new MessageBuffer(csprintf("toNet node %d j %d", node, j));
91 m_fromNetQueues[node][j] =
92 new MessageBuffer(csprintf("fromNet node %d j %d", node, j));
93 }
94 }
95}
96
97void
98SimpleNetwork::init()
99{
100 Network::init();
101
102 // The topology pointer should have already been initialized in
103 // the parent class network constructor.
104 assert(m_topology_ptr != NULL);
105 int number_of_switches = m_topology_ptr->numSwitches();
106 for (int i = 0; i < number_of_switches; i++) {
107 m_switch_ptr_vector.push_back(new Switch(i, this));
108 }
109
110 // false because this isn't a reconfiguration
111 m_topology_ptr->createLinks(this, false);
112}
113
114void
115SimpleNetwork::reset()
116{
117 for (int node = 0; node < m_nodes; node++) {
118 for (int j = 0; j < m_virtual_networks; j++) {
119 m_toNetQueues[node][j]->clear();
120 m_fromNetQueues[node][j]->clear();
121 }
122 }
123
124 for(int i = 0; i < m_switch_ptr_vector.size(); i++){
125 m_switch_ptr_vector[i]->clearBuffers();
126 }
127}
128
129SimpleNetwork::~SimpleNetwork()
130{
131 for (int i = 0; i < m_nodes; i++) {
132 deletePointers(m_toNetQueues[i]);
133 deletePointers(m_fromNetQueues[i]);
134 }
135 deletePointers(m_switch_ptr_vector);
136 deletePointers(m_buffers_to_free);
137 // delete m_topology_ptr;
138}
139
140// From a switch to an endpoint node
141void
142SimpleNetwork::makeOutLink(SwitchID src, NodeID dest, BasicLink* link,
143 LinkDirection direction,
144 const NetDest& routing_table_entry,
145 bool isReconfiguration)
146{
147 assert(dest < m_nodes);
148 assert(src < m_switch_ptr_vector.size());
149 assert(m_switch_ptr_vector[src] != NULL);
150
151 if (isReconfiguration) {
152 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
153 return;
154 }
155
156 SimpleExtLink *simple_link = safe_cast<SimpleExtLink*>(link);
157
158 m_switch_ptr_vector[src]->addOutPort(m_fromNetQueues[dest],
159 routing_table_entry,
160 simple_link->m_latency,
161 simple_link->m_bw_multiplier);
162
163 m_endpoint_switches[dest] = m_switch_ptr_vector[src];
164}
165
166// From an endpoint node to a switch
167void
168SimpleNetwork::makeInLink(NodeID src, SwitchID dest, BasicLink* link,
169 LinkDirection direction,
170 const NetDest& routing_table_entry,
171 bool isReconfiguration)
172{
173 assert(src < m_nodes);
174 if (isReconfiguration) {
175 // do nothing
176 return;
177 }
178
179 m_switch_ptr_vector[dest]->addInPort(m_toNetQueues[src]);
180}
181
182// From a switch to a switch
183void
184SimpleNetwork::makeInternalLink(SwitchID src, SwitchID dest, BasicLink* link,
185 LinkDirection direction,
186 const NetDest& routing_table_entry,
187 bool isReconfiguration)
188{
189 if (isReconfiguration) {
190 m_switch_ptr_vector[src]->reconfigureOutPort(routing_table_entry);
191 return;
192 }
193
194 // Create a set of new MessageBuffers
195 std::vector<MessageBuffer*> queues;
196 for (int i = 0; i < m_virtual_networks; i++) {
197 // allocate a buffer
198 MessageBuffer* buffer_ptr = new MessageBuffer;
199 buffer_ptr->setOrdering(true);
200 if (m_buffer_size > 0) {
201 buffer_ptr->resize(m_buffer_size);
202 }
203 queues.push_back(buffer_ptr);
204 // remember to deallocate it
205 m_buffers_to_free.push_back(buffer_ptr);
206 }
207 // Connect it to the two switches
208 SimpleIntLink *simple_link = safe_cast<SimpleIntLink*>(link);
209
210 m_switch_ptr_vector[dest]->addInPort(queues);
211 m_switch_ptr_vector[src]->addOutPort(queues, routing_table_entry,
212 simple_link->m_latency,
213 simple_link->m_bw_multiplier);
214}
215
216void
217SimpleNetwork::checkNetworkAllocation(NodeID id, bool ordered, int network_num)
218{
219 assert(id < m_nodes);
220 assert(network_num < m_virtual_networks);
221
222 if (ordered) {
223 m_ordered[network_num] = true;
224 }
225 m_in_use[network_num] = true;
226}
227
228MessageBuffer*
229SimpleNetwork::getToNetQueue(NodeID id, bool ordered, int network_num)
230{
231 checkNetworkAllocation(id, ordered, network_num);
232 return m_toNetQueues[id][network_num];
233}
234
235MessageBuffer*
236SimpleNetwork::getFromNetQueue(NodeID id, bool ordered, int network_num)
237{
238 checkNetworkAllocation(id, ordered, network_num);
239 return m_fromNetQueues[id][network_num];
240}
241
242const std::vector<Throttle*>*
243SimpleNetwork::getThrottles(NodeID id) const
244{
245 assert(id >= 0);
246 assert(id < m_nodes);
247 assert(m_endpoint_switches[id] != NULL);
248 return m_endpoint_switches[id]->getThrottles();
249}
250
251void
252SimpleNetwork::printStats(ostream& out) const
253{
254 out << endl;
255 out << "Network Stats" << endl;
256 out << "-------------" << endl;
257 out << endl;
258
259 //
260 // Determine total counts before printing out each switch's stats
261 //
262 std::vector<uint64> total_msg_counts;
263 total_msg_counts.resize(MessageSizeType_NUM);
264 for (MessageSizeType type = MessageSizeType_FIRST;
265 type < MessageSizeType_NUM;
266 ++type) {
267 total_msg_counts[type] = 0;
268 }
269
270 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
271 const std::vector<Throttle*>* throttles =
272 m_switch_ptr_vector[i]->getThrottles();
273
274 for (int p = 0; p < throttles->size(); p++) {
275
276 const std::vector<std::vector<int> >& message_counts =
277 ((*throttles)[p])->getCounters();
278
279 for (MessageSizeType type = MessageSizeType_FIRST;
280 type < MessageSizeType_NUM;
281 ++type) {
282
283 const std::vector<int> &mct = message_counts[type];
284 int sum = accumulate(mct.begin(), mct.end(), 0);
285 total_msg_counts[type] += uint64(sum);
286 }
287 }
288 }
289 uint64 total_msgs = 0;
290 uint64 total_bytes = 0;
291 for (MessageSizeType type = MessageSizeType_FIRST;
292 type < MessageSizeType_NUM;
293 ++type) {
294
295 if (total_msg_counts[type] > 0) {
296 out << "total_msg_count_" << type << ": " << total_msg_counts[type]
297 << " " << total_msg_counts[type] *
298 uint64(RubySystem::getNetwork()->MessageSizeType_to_int(type))
299 << endl;
300
301 total_msgs += total_msg_counts[type];
302
303 total_bytes += total_msg_counts[type] *
304 uint64(RubySystem::getNetwork()->MessageSizeType_to_int(type));
305
306 }
307 }
308
309 out << "total_msgs: " << total_msgs
310 << " total_bytes: " << total_bytes << endl;
311
312 out << endl;
313 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
314 m_switch_ptr_vector[i]->printStats(out);
315 }
316 m_topology_ptr->printStats(out);
317}
318
319void
320SimpleNetwork::clearStats()
321{
322 for (int i = 0; i < m_switch_ptr_vector.size(); i++) {
323 m_switch_ptr_vector[i]->clearStats();
324 }
325 m_topology_ptr->clearStats();
326}
327
328void
329SimpleNetwork::printConfig(ostream& out) const
330{
331 out << endl;
332 out << "Network Configuration" << endl;
333 out << "---------------------" << endl;
334 out << "network: SIMPLE_NETWORK" << endl;
335 out << "topology: " << m_topology_ptr->getName() << endl;
336 out << endl;
337
338 for (int i = 0; i < m_virtual_networks; i++) {
339 out << "virtual_net_" << i << ": ";
340 if (m_in_use[i]) {
341 out << "active, ";
342 if (m_ordered[i]) {
343 out << "ordered" << endl;
344 } else {
345 out << "unordered" << endl;
346 }
347 } else {
348 out << "inactive" << endl;
349 }
350 }
351 out << endl;
352
353 for(int i = 0; i < m_switch_ptr_vector.size(); i++) {
354 m_switch_ptr_vector[i]->printConfig(out);
355 }
356
357 m_topology_ptr->printConfig(out);
358}
359
360void
361SimpleNetwork::print(ostream& out) const
362{
363 out << "[SimpleNetwork]";
364}
365
366
367SimpleNetwork *
368SimpleNetworkParams::create()
369{
370 return new SimpleNetwork(this);
371}