47 :
Policy(p), weight(p->weight)
50 "weight must be a value between 0 and 1");
56 template <
typename Master>
65 history.push_back(std::make_pair(m_id, score));
68 "Policy's maximum number of masters is currently dictated " 69 "by the maximum number of priorities\n");
86 const double old_score,
const uint64_t served_bytes)
const 88 return ((1.0 -
weight) * old_score) + (
weight * served_bytes);
96 {
return lhs.second > rhs.second; };
103 const double served_bytes =
static_cast<double>(pkt_size);
105 uint8_t pkt_priority = 0;
106 for (
auto m_hist =
history.begin(); m_hist !=
history.end(); m_hist++) {
109 double& curr_score = m_hist->second;
111 if (curr_mid == pkt_mid) {
113 pkt_priority = std::distance(
history.begin(), m_hist);
115 curr_score =
updateScore(curr_score, served_bytes);
127 QoSPropFairPolicyParams::create()
MemCtrl * memCtrl
Pointer to parent memory controller implementing the policy.
void initMaster(const Master master, const double score)
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
PropFairPolicy(const Params *)
virtual uint8_t schedule(const MasterID m_id, const uint64_t pkt_size) override
Schedules a packet based on proportional fair configuration.
uint8_t numPriorities() const
Gets the total number of priority levels in the QoS memory controller.
virtual ~PropFairPolicy()
Proportional Fair QoS Policy Providing a configurable fair scheduling policy based on utilization; ut...
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
double updateScore(const double old_score, const uint64_t served_bytes) const
std::vector< MasterHistory > history
void initMasterName(const std::string master, const double score)
Initialize the master's score by providing the master's name and initial score value.
MasterID lookupMasterId(const SimObject *obj) const
Looks up the MasterID for a given SimObject returns an invalid MasterID (invldMasterId) if not found...
const double weight
PF Policy weight.
System * system() const
read the system pointer Implemented for completeness with the setter
void initMasterObj(const SimObject *master, const double score)
Initialize the master's score by providing the master's SimObject pointer and initial score value...
Abstract superclass for simulation objects.
Invalid master id for assertion checking only.