gem5  v20.0.0.3
Router.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Inria
3  * Copyright (c) 2016 Georgia Institute of Technology
4  * Copyright (c) 2008 Princeton University
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 
33 
34 #include "debug/RubyNetwork.hh"
40 
41 using namespace std;
42 
44  : BasicRouter(p), Consumer(this), m_latency(p->latency),
45  m_virtual_networks(p->virt_nets), m_vc_per_vnet(p->vcs_per_vnet),
46  m_num_vcs(m_virtual_networks * m_vc_per_vnet), m_network_ptr(nullptr),
47  routingUnit(this), switchAllocator(this), crossbarSwitch(this)
48 {
49  m_input_unit.clear();
50  m_output_unit.clear();
51 }
52 
53 void
55 {
57 
60 }
61 
62 void
64 {
65  DPRINTF(RubyNetwork, "Router %d woke up\n", m_id);
66 
67  // check for incoming flits
68  for (int inport = 0; inport < m_input_unit.size(); inport++) {
69  m_input_unit[inport]->wakeup();
70  }
71 
72  // check for incoming credits
73  // Note: the credit update is happening before SA
74  // buffer turnaround time =
75  // credit traversal (1-cycle) + SA (1-cycle) + Link Traversal (1-cycle)
76  // if we want the credit update to take place after SA, this loop should
77  // be moved after the SA request
78  for (int outport = 0; outport < m_output_unit.size(); outport++) {
79  m_output_unit[outport]->wakeup();
80  }
81 
82  // Switch Allocation
84 
85  // Switch Traversal
87 }
88 
89 void
91  NetworkLink *in_link, CreditLink *credit_link)
92 {
93  int port_num = m_input_unit.size();
94  InputUnit *input_unit = new InputUnit(port_num, inport_dirn, this);
95 
96  input_unit->set_in_link(in_link);
97  input_unit->set_credit_link(credit_link);
98  in_link->setLinkConsumer(this);
99  credit_link->setSourceQueue(input_unit->getCreditQueue());
100 
101  m_input_unit.push_back(std::shared_ptr<InputUnit>(input_unit));
102 
103  routingUnit.addInDirection(inport_dirn, port_num);
104 }
105 
106 void
108  NetworkLink *out_link,
109  const NetDest& routing_table_entry, int link_weight,
110  CreditLink *credit_link)
111 {
112  int port_num = m_output_unit.size();
113  OutputUnit *output_unit = new OutputUnit(port_num, outport_dirn, this);
114 
115  output_unit->set_out_link(out_link);
116  output_unit->set_credit_link(credit_link);
117  credit_link->setLinkConsumer(this);
118  out_link->setSourceQueue(output_unit->getOutQueue());
119 
120  m_output_unit.push_back(std::shared_ptr<OutputUnit>(output_unit));
121 
122  routingUnit.addRoute(routing_table_entry);
123  routingUnit.addWeight(link_weight);
124  routingUnit.addOutDirection(outport_dirn, port_num);
125 }
126 
129 {
130  return m_output_unit[outport]->get_direction();
131 }
132 
135 {
136  return m_input_unit[inport]->get_direction();
137 }
138 
139 int
140 Router::route_compute(RouteInfo route, int inport, PortDirection inport_dirn)
141 {
142  return routingUnit.outportCompute(route, inport, inport_dirn);
143 }
144 
145 void
146 Router::grant_switch(int inport, flit *t_flit)
147 {
148  crossbarSwitch.update_sw_winner(inport, t_flit);
149 }
150 
151 void
153 {
154  // wake up after time cycles
155  scheduleEvent(time);
156 }
157 
158 std::string
160 {
161  // PortDirection is actually a string
162  // If not, then this function should add a switch
163  // statement to convert direction to a string
164  // that can be printed out
165  return direction;
166 }
167 
168 void
170 {
172 
174  .name(name() + ".buffer_reads")
176  ;
177 
179  .name(name() + ".buffer_writes")
181  ;
182 
184  .name(name() + ".crossbar_activity")
186  ;
187 
189  .name(name() + ".sw_input_arbiter_activity")
191  ;
192 
194  .name(name() + ".sw_output_arbiter_activity")
196  ;
197 }
198 
199 void
201 {
202  for (int j = 0; j < m_virtual_networks; j++) {
203  for (int i = 0; i < m_input_unit.size(); i++) {
204  m_buffer_reads += m_input_unit[i]->get_buf_read_activity(j);
205  m_buffer_writes += m_input_unit[i]->get_buf_write_activity(j);
206  }
207  }
208 
213 }
214 
215 void
217 {
218  for (int j = 0; j < m_virtual_networks; j++) {
219  for (int i = 0; i < m_input_unit.size(); i++) {
220  m_input_unit[i]->resetStats();
221  }
222  }
223 
226 }
227 
228 void
230 {
231  int temperature_celcius = BASELINE_TEMPERATURE_CELCIUS;
232  int num_fault_types = m_network_ptr->fault_model->number_of_fault_types;
233  float fault_vector[num_fault_types];
234  get_fault_vector(temperature_celcius, fault_vector);
235  out << "Router-" << m_id << " fault vector: " << endl;
236  for (int fault_type_index = 0; fault_type_index < num_fault_types;
237  fault_type_index++) {
238  out << " - probability of (";
239  out <<
240  m_network_ptr->fault_model->fault_type_to_string(fault_type_index);
241  out << ") = ";
242  out << fault_vector[fault_type_index] << endl;
243  }
244 }
245 
246 void
248 {
249  int temperature_celcius = BASELINE_TEMPERATURE_CELCIUS;
250  float aggregate_fault_prob;
251  get_aggregate_fault_probability(temperature_celcius,
252  &aggregate_fault_prob);
253  out << "Router-" << m_id << " fault probability: ";
254  out << aggregate_fault_prob << endl;
255 }
256 
257 uint32_t
259 {
260  uint32_t num_functional_writes = 0;
261  num_functional_writes += crossbarSwitch.functionalWrite(pkt);
262 
263  for (uint32_t i = 0; i < m_input_unit.size(); i++) {
264  num_functional_writes += m_input_unit[i]->functionalWrite(pkt);
265  }
266 
267  for (uint32_t i = 0; i < m_output_unit.size(); i++) {
268  num_functional_writes += m_output_unit[i]->functionalWrite(pkt);
269  }
270 
271  return num_functional_writes;
272 }
273 
274 Router *
275 GarnetRouterParams::create()
276 {
277  return new Router(this);
278 }
#define DPRINTF(x,...)
Definition: trace.hh:225
void set_in_link(NetworkLink *link)
Definition: InputUnit.hh:128
Stats::Scalar m_buffer_reads
Definition: Router.hh:144
BasicRouterParams Params
Definition: BasicRouter.hh:42
GarnetNetwork * m_network_ptr
Definition: Router.hh:134
void set_out_link(NetworkLink *link)
Definition: OutputUnit.cc:139
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
Bitfield< 7 > i
uint32_t m_id
Definition: BasicRouter.hh:53
PortDirection getOutportDirection(int outport)
Definition: Router.cc:128
void scheduleEvent(Cycles timeDelta)
Definition: Consumer.cc:34
CrossbarSwitch crossbarSwitch
Definition: Router.hh:138
void grant_switch(int inport, flit *t_flit)
Definition: Router.cc:146
int route_compute(RouteInfo route, int inport, PortDirection direction)
Definition: Router.cc:140
void resetStats()
Callback to reset stats.
Definition: Router.cc:216
void update_sw_winner(int inport, flit *t_flit)
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
uint32_t functionalWrite(Packet *pkt)
Stats::Scalar m_buffer_writes
Definition: Router.hh:145
bool get_aggregate_fault_probability(int temperature, float *aggregate_fault_prob)
Definition: Router.hh:123
std::string getPortDirectionName(PortDirection direction)
Definition: Router.cc:159
Stats::Scalar m_sw_output_arbiter_activity
Definition: Router.hh:148
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:333
flitBuffer * getOutQueue()
Definition: OutputUnit.cc:133
void set_credit_link(CreditLink *credit_link)
Definition: InputUnit.hh:136
std::string fault_type_to_string(int fault_type_index)
Definition: FaultModel.cc:102
Stats::Scalar m_sw_input_arbiter_activity
Definition: Router.hh:147
void addWeight(int link_weight)
Definition: RoutingUnit.cc:53
uint32_t functionalWrite(Packet *)
Definition: Router.cc:258
double get_output_arbiter_activity()
double get_crossbar_activity()
void collateStats()
Definition: Router.cc:200
void schedule_wakeup(Cycles time)
Definition: Router.cc:152
#define BASELINE_TEMPERATURE_CELCIUS
Definition: FaultModel.hh:44
Definition: flit.hh:41
FaultModel * fault_model
void addInPort(PortDirection inport_dirn, NetworkLink *link, CreditLink *credit_link)
Definition: Router.cc:90
SwitchAllocator switchAllocator
Definition: Router.hh:137
Stats::Scalar m_crossbar_activity
Definition: Router.hh:150
std::string PortDirection
Definition: Topology.hh:55
Router(const Params *p)
Definition: Router.cc:43
void addRoute(const NetDest &routing_table_entry)
Definition: RoutingUnit.cc:47
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: BasicRouter.cc:39
int m_virtual_networks
Definition: Router.hh:133
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void set_credit_link(CreditLink *credit_link)
Definition: OutputUnit.cc:145
void addInDirection(PortDirection inport_dirn, int inport)
Definition: RoutingUnit.cc:117
Bitfield< 24 > j
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Definition: statistics.hh:276
Definition: Router.hh:56
virtual const std::string name() const
Definition: sim_object.hh:129
void printFaultVector(std::ostream &out)
Definition: Router.cc:229
bool get_fault_vector(int temperature, float fault_vector[])
Definition: Router.hh:119
void addOutPort(PortDirection outport_dirn, NetworkLink *link, const NetDest &routing_table_entry, int link_weight, CreditLink *credit_link)
Definition: Router.cc:107
double get_input_arbiter_activity()
int outportCompute(RouteInfo route, int inport, PortDirection inport_dirn)
Definition: RoutingUnit.cc:137
void addOutDirection(PortDirection outport_dirn, int outport)
Definition: RoutingUnit.cc:124
void printAggregateFaultProbability(std::ostream &out)
Definition: Router.cc:247
RoutingUnit routingUnit
Definition: Router.hh:136
std::vector< std::shared_ptr< OutputUnit > > m_output_unit
Definition: Router.hh:141
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:64
const FlagsType nozero
Don&#39;t print if this is zero.
Definition: info.hh:57
Bitfield< 0 > p
flitBuffer * getCreditQueue()
Definition: InputUnit.hh:125
void wakeup()
Definition: Router.cc:63
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: Router.cc:54
void regStats()
Callback to set stat parameters.
Definition: Router.cc:169
PortDirection getInportDirection(int inport)
Definition: Router.cc:134
std::vector< std::shared_ptr< InputUnit > > m_input_unit
Definition: Router.hh:140

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13