gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Router.hh
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 
32 #ifndef __MEM_RUBY_NETWORK_GARNET2_0_ROUTER_HH__
33 #define __MEM_RUBY_NETWORK_GARNET2_0_ROUTER_HH__
34 
35 #include <iostream>
36 #include <memory>
37 #include <vector>
38 
48 #include "params/GarnetRouter.hh"
49 
50 class NetworkLink;
51 class CreditLink;
52 class InputUnit;
53 class OutputUnit;
54 class FaultModel;
55 
56 class Router : public BasicRouter, public Consumer
57 {
58  public:
59  typedef GarnetRouterParams Params;
60  Router(const Params *p);
61 
62  ~Router() = default;
63 
64  void wakeup();
65  void print(std::ostream& out) const {};
66 
67  void init();
68  void addInPort(PortDirection inport_dirn, NetworkLink *link,
69  CreditLink *credit_link);
70  void addOutPort(PortDirection outport_dirn, NetworkLink *link,
71  const NetDest& routing_table_entry,
72  int link_weight, CreditLink *credit_link);
73 
75  int get_num_vcs() { return m_num_vcs; }
77  int get_vc_per_vnet() { return m_vc_per_vnet; }
78  int get_num_inports() { return m_input_unit.size(); }
79  int get_num_outports() { return m_output_unit.size(); }
80  int get_id() { return m_id; }
81 
82  void init_net_ptr(GarnetNetwork* net_ptr)
83  {
84  m_network_ptr = net_ptr;
85  }
86 
88 
89  InputUnit*
90  getInputUnit(unsigned port)
91  {
92  assert(port < m_input_unit.size());
93  return m_input_unit[port].get();
94  }
95 
96  OutputUnit*
97  getOutputUnit(unsigned port)
98  {
99  assert(port < m_output_unit.size());
100  return m_output_unit[port].get();
101  }
102 
103  PortDirection getOutportDirection(int outport);
104  PortDirection getInportDirection(int inport);
105 
106  int route_compute(RouteInfo route, int inport, PortDirection direction);
107  void grant_switch(int inport, flit *t_flit);
108  void schedule_wakeup(Cycles time);
109 
110  std::string getPortDirectionName(PortDirection direction);
111  void printFaultVector(std::ostream& out);
112  void printAggregateFaultProbability(std::ostream& out);
113 
114  void regStats();
115  void collateStats();
116  void resetStats();
117 
118  // For Fault Model:
119  bool get_fault_vector(int temperature, float fault_vector[]) {
120  return m_network_ptr->fault_model->fault_vector(m_id, temperature,
121  fault_vector);
122  }
123  bool get_aggregate_fault_probability(int temperature,
124  float *aggregate_fault_prob) {
125  return m_network_ptr->fault_model->fault_prob(m_id, temperature,
126  aggregate_fault_prob);
127  }
128 
129  uint32_t functionalWrite(Packet *);
130 
131  private:
135 
139 
142 
143  // Statistical variables required for power computations
146 
149 
151 };
152 
153 #endif // __MEM_RUBY_NETWORK_GARNET2_0_ROUTER_HH__
Stats::Scalar m_buffer_reads
Definition: Router.hh:144
GarnetNetwork * m_network_ptr
Definition: Router.hh:134
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
uint32_t m_id
Definition: BasicRouter.hh:53
PortDirection getOutportDirection(int outport)
Definition: Router.cc:128
void init_net_ptr(GarnetNetwork *net_ptr)
Definition: Router.hh:82
int m_vc_per_vnet
Definition: Router.hh:133
CrossbarSwitch crossbarSwitch
Definition: Router.hh:138
int m_num_vcs
Definition: Router.hh:133
void grant_switch(int inport, flit *t_flit)
Definition: Router.cc:146
~Router()=default
int route_compute(RouteInfo route, int inport, PortDirection direction)
Definition: Router.cc:140
Cycles m_latency
Definition: Router.hh:132
GarnetRouterParams Params
Definition: Router.hh:59
void resetStats()
Callback to reset stats.
Definition: Router.cc:216
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
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
Stats::Scalar m_sw_input_arbiter_activity
Definition: Router.hh:147
int get_id()
Definition: Router.hh:80
uint32_t functionalWrite(Packet *)
Definition: Router.cc:258
OutputUnit * getOutputUnit(unsigned port)
Definition: Router.hh:97
void collateStats()
Definition: Router.cc:200
void schedule_wakeup(Cycles time)
Definition: Router.cc:152
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
int get_num_outports()
Definition: Router.hh:79
Stats::Scalar m_crossbar_activity
Definition: Router.hh:150
bool fault_prob(int routerID, int temperature, float *aggregate_fault_prob)
Definition: FaultModel.cc:209
std::string PortDirection
Definition: Topology.hh:55
GarnetNetwork * get_net_ptr()
Definition: Router.hh:87
Router(const Params *p)
Definition: Router.cc:43
int m_virtual_networks
Definition: Router.hh:133
int get_vc_per_vnet()
Definition: Router.hh:77
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
int get_num_vnets()
Definition: Router.hh:76
Definition: Router.hh:56
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
int get_num_vcs()
Definition: Router.hh:75
int get_num_inports()
Definition: Router.hh:78
void printAggregateFaultProbability(std::ostream &out)
Definition: Router.cc:247
Cycles get_pipe_stages()
Definition: Router.hh:74
void print(std::ostream &out) const
Definition: Router.hh:65
RoutingUnit routingUnit
Definition: Router.hh:136
bool fault_vector(int routerID, int temperature, float fault_vector[])
Definition: FaultModel.cc:174
std::vector< std::shared_ptr< OutputUnit > > m_output_unit
Definition: Router.hh:141
InputUnit * getInputUnit(unsigned port)
Definition: Router.hh:90
Bitfield< 0 > p
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 Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13