gem5
v20.0.0.2
|
Proportional Fair QoS Policy Providing a configurable fair scheduling policy based on utilization; utilization is directly proportional to a score which is inversely proportional to the QoS priority Users can tune the policy by adjusting the weight parameter (weight of the formula) More...
#include <policy_pf.hh>
Public Member Functions | |
PropFairPolicy (const Params *) | |
virtual | ~PropFairPolicy () |
void | initMasterName (const std::string master, const double score) |
Initialize the master's score by providing the master's name and initial score value. More... | |
void | initMasterObj (const SimObject *master, const double score) |
Initialize the master's score by providing the master's SimObject pointer and initial score value. More... | |
virtual uint8_t | schedule (const MasterID m_id, const uint64_t pkt_size) override |
Schedules a packet based on proportional fair configuration. More... | |
![]() | |
Policy (const Params *p) | |
virtual | ~Policy () |
virtual void | regStats () override |
Callback to set stat parameters. More... | |
virtual void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
void | setMemCtrl (MemCtrl *mem) |
Setting a pointer to the Memory Controller implementing the policy. More... | |
template<typename M , typename T > | |
std::pair< MasterID, T > | pair (M master, T value) |
Builds a MasterID/value pair given a master input. More... | |
uint8_t | schedule (const PacketPtr pkt) |
Schedules a packet. More... | |
![]() | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) |
Get a port with a given name and index. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
const Params * | params () const |
SimObject (const Params *_params) | |
![]() | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
![]() | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
![]() | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Protected Types | |
using | MasterHistory = std::pair< MasterID, double > |
history is keeping track of every master's score More... | |
Protected Member Functions | |
template<typename Master > | |
void | initMaster (const Master master, const double score) |
double | updateScore (const double old_score, const uint64_t served_bytes) const |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Attributes | |
const double | weight |
PF Policy weight. More... | |
std::vector< MasterHistory > | history |
![]() | |
MemCtrl * | memCtrl |
Pointer to parent memory controller implementing the policy. More... | |
![]() | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Private Types | |
using | Params = QoSPropFairPolicyParams |
Private Member Functions | |
const Params * | params () const |
Additional Inherited Members | |
![]() | |
using | Params = QoSPolicyParams |
![]() | |
typedef SimObjectParams | Params |
![]() | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
![]() | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
Proportional Fair QoS Policy Providing a configurable fair scheduling policy based on utilization; utilization is directly proportional to a score which is inversely proportional to the QoS priority Users can tune the policy by adjusting the weight parameter (weight of the formula)
This is the formula used by the policy ((1.0 - weight) * old_score) + (weight * served_bytes);
Definition at line 59 of file policy_pf.hh.
|
protected |
history is keeping track of every master's score
Definition at line 111 of file policy_pf.hh.
|
private |
Definition at line 61 of file policy_pf.hh.
QoS::PropFairPolicy::PropFairPolicy | ( | const Params * | p | ) |
|
virtual |
Definition at line 53 of file policy_pf.cc.
Referenced by params().
|
protected |
Definition at line 58 of file policy_pf.cc.
References fatal_if, history, Request::invldMasterId, System::lookupMasterId(), QoS::Policy::memCtrl, QoS::MemCtrl::numPriorities(), and AbstractMemory::system().
Referenced by initMasterName(), initMasterObj(), and params().
void QoS::PropFairPolicy::initMasterName | ( | const std::string | master, |
const double | score | ||
) |
Initialize the master's score by providing the master's name and initial score value.
The master's name has to match a name in the system.
master | master's name to lookup. |
score | initial score value for the master |
Definition at line 73 of file policy_pf.cc.
References initMaster().
Referenced by params().
void QoS::PropFairPolicy::initMasterObj | ( | const SimObject * | master, |
const double | score | ||
) |
Initialize the master's score by providing the master's SimObject pointer and initial score value.
The master's pointer has to match a master in the system.
master | master's SimObject pointer to lookup. |
score | initial score value for the master |
Definition at line 79 of file policy_pf.cc.
References initMaster().
Referenced by params().
|
inlineprivate |
Definition at line 62 of file policy_pf.hh.
References SimObject::_params, initMaster(), initMasterName(), initMasterObj(), PropFairPolicy(), schedule(), updateScore(), and ~PropFairPolicy().
|
overridevirtual |
Schedules a packet based on proportional fair configuration.
m_id | master id to schedule |
pkt_size | size of the packet |
Implements QoS::Policy.
Definition at line 92 of file policy_pf.cc.
References history, and updateScore().
Referenced by params().
|
inlineprotected |
Definition at line 85 of file policy_pf.cc.
References weight.
Referenced by params(), and schedule().
|
protected |
Definition at line 112 of file policy_pf.hh.
Referenced by initMaster(), and schedule().
|
protected |