gem5
v22.0.0.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
v
x
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
mem
ruby
network
simple
routing
WeightBased.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2021 ARM Limited
3
* All rights reserved.
4
*
5
* The license below extends only to copyright in the software and shall
6
* not be construed as granting a license to any other intellectual
7
* property including but not limited to intellectual property relating
8
* to a hardware implementation of the functionality of the software
9
* licensed hereunder. You may use the software subject to the license
10
* terms below provided that you ensure that this notice is replicated
11
* unmodified and in its entirety in all distributions of the software,
12
* modified or unmodified, in source code or in binary form.
13
*
14
* Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
15
* All rights reserved.
16
*
17
* Redistribution and use in source and binary forms, with or without
18
* modification, are permitted provided that the following conditions are
19
* met: redistributions of source code must retain the above copyright
20
* notice, this list of conditions and the following disclaimer;
21
* redistributions in binary form must reproduce the above copyright
22
* notice, this list of conditions and the following disclaimer in the
23
* documentation and/or other materials provided with the distribution;
24
* neither the name of the copyright holders nor the names of its
25
* contributors may be used to endorse or promote products derived from
26
* this software without specific prior written permission.
27
*
28
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
*/
40
41
#ifndef __MEM_RUBY_NETWORK_SIMPLE_WEIGHTBASEDROUTINGUNIT_HH__
42
#define __MEM_RUBY_NETWORK_SIMPLE_WEIGHTBASEDROUTINGUNIT_HH__
43
44
#include "
mem/ruby/network/simple/routing/BaseRoutingUnit.hh
"
45
#include "params/WeightBased.hh"
46
47
namespace
gem5
48
{
49
50
namespace
ruby
51
{
52
53
class
WeightBased
:
public
BaseRoutingUnit
54
{
55
public
:
56
PARAMS
(
WeightBased
);
57
58
WeightBased
(
const
Params
&
p
);
59
60
void
addOutPort
(
LinkID
link_id,
61
const
std::vector<MessageBuffer*>
& m_out_buffer,
62
const
NetDest
& routing_table_entry,
63
const
PortDirection
&direction,
64
int
link_weight)
override
;
65
66
void
route
(
const
Message
&msg,
67
int
vnet,
68
bool
deterministic,
69
std::vector<RouteInfo>
&out_links)
override
;
70
71
private
:
72
73
struct
LinkInfo
{
74
const
LinkID
m_link_id
;
75
const
NetDest
m_routing_entry
;
76
const
std::vector<MessageBuffer*>
m_out_buffers
;
77
int
m_order
;
78
int
m_weight
;
79
};
80
81
std::vector<std::unique_ptr<LinkInfo>
>
m_links
;
82
83
void
findRoute
(
const
Message
&msg,
84
std::vector<RouteInfo>
&out_links)
const
;
85
86
void
sortLinks
() {
87
std::sort(
m_links
.begin(),
m_links
.end(),
88
[](
const
auto
&
a
,
const
auto
&
b
) {
89
auto tup = [](const auto &li)
90
{ return std::make_tuple(li->m_order,
91
li->m_weight,
92
li->m_link_id);};
93
return
tup
(
a
) <
tup
(
b
);
94
});
95
}
96
};
97
98
}
// namespace ruby
99
}
// namespace gem5
100
101
#endif // __MEM_RUBY_NETWORK_SIMPLE_WEIGHTBASEDROUTINGUNIT_HH__
BaseRoutingUnit.hh
gem5::ruby::WeightBased
Definition:
WeightBased.hh:53
gem5::ruby::PortDirection
std::string PortDirection
Definition:
TypeDefines.hh:44
gem5::ruby::WeightBased::sortLinks
void sortLinks()
Definition:
WeightBased.hh:86
gem5::ruby::WeightBased::LinkInfo::m_weight
int m_weight
Definition:
WeightBased.hh:78
gem5::ArmISA::a
Bitfield< 8 > a
Definition:
misc_types.hh:66
std::vector
STL vector class.
Definition:
stl.hh:37
gem5::MipsISA::tup
Bitfield< 1 > tup
Definition:
dt_constants.hh:132
gem5::SimObject::Params
SimObjectParams Params
Definition:
sim_object.hh:170
gem5::ruby::WeightBased::LinkInfo::m_out_buffers
const std::vector< MessageBuffer * > m_out_buffers
Definition:
WeightBased.hh:76
gem5::ArmISA::b
Bitfield< 7 > b
Definition:
misc_types.hh:382
gem5::VegaISA::p
Bitfield< 54 > p
Definition:
pagetable.hh:70
gem5::ruby::WeightBased::m_links
std::vector< std::unique_ptr< LinkInfo > > m_links
Definition:
WeightBased.hh:81
gem5::ruby::WeightBased::addOutPort
void addOutPort(LinkID link_id, const std::vector< MessageBuffer * > &m_out_buffer, const NetDest &routing_table_entry, const PortDirection &direction, int link_weight) override
Definition:
WeightBased.cc:60
gem5::ruby::WeightBased::LinkInfo::m_link_id
const LinkID m_link_id
Definition:
WeightBased.hh:74
gem5::ruby::NetDest
Definition:
NetDest.hh:45
gem5::ruby::LinkID
unsigned int LinkID
Definition:
TypeDefines.hh:41
gem5::ruby::WeightBased::LinkInfo::m_routing_entry
const NetDest m_routing_entry
Definition:
WeightBased.hh:75
gem5::ruby::BaseRoutingUnit
Definition:
BaseRoutingUnit.hh:59
gem5::ruby::WeightBased::PARAMS
PARAMS(WeightBased)
gem5::ruby::WeightBased::LinkInfo::m_order
int m_order
Definition:
WeightBased.hh:77
gem5::ruby::Message
Definition:
Message.hh:62
gem5::ruby::WeightBased::route
void route(const Message &msg, int vnet, bool deterministic, std::vector< RouteInfo > &out_links) override
Definition:
WeightBased.cc:75
gem5::ruby::WeightBased::findRoute
void findRoute(const Message &msg, std::vector< RouteInfo > &out_links) const
Definition:
WeightBased.cc:108
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::ruby::WeightBased::WeightBased
WeightBased(const Params &p)
Definition:
WeightBased.cc:54
gem5::ruby::WeightBased::LinkInfo
Definition:
WeightBased.hh:73
Generated on Thu Jun 16 2022 10:41:57 for gem5 by
doxygen
1.8.17