Searched refs:score (Results 1 - 5 of 5) sorted by relevance

/gem5/src/mem/qos/
H A Dpolicy_pf.hh52 * score which is inversely proportional to the QoS priority
70 * Initialize the master's score by providing
71 * the master's name and initial score value.
75 * @param score initial score value for the master
77 void initMasterName(const std::string master, const double score);
80 * Initialize the master's score by providing
81 * the master's SimObject pointer and initial score value.
85 * @param score initial score valu
[all...]
H A DQoSPolicy.py99 def setInitialScore(self, master, score):
103 self._mscores.append([master, score])
112 score = mprio[1]
115 master, float(score))
118 master.getCCObject(), float(score))
120 weight = Param.Float(0.5, "Pf score weight")
H A Dpolicy_pf.cc58 PropFairPolicy::initMaster(const Master master, const double score) argument
64 // Setting the Initial score for the selected master.
65 history.push_back(std::make_pair(m_id, score));
73 PropFairPolicy::initMasterName(const std::string master, const double score) argument
75 initMaster(master, score);
79 PropFairPolicy::initMasterObj(const SimObject* master, const double score) argument
81 initMaster(master, score);
99 // First elements have higher history/score -> lower priority.
/gem5/src/mem/cache/prefetch/
H A Dsbooe.cc46 fatal("%s: the score threshold should be between 0 and 100\n", name());
86 if (bestSandbox == NULL || sb.score() > bestSandbox->score()) {
138 if (evaluationFinished && bestSandbox->score() > scoreThreshold) {
H A Dsbooe.hh123 /** Calculate the useful score
124 * @return Useful score of the sandbox. Sandbox score adjusted by
125 * by the late score
127 unsigned int score() const { function in struct:SBOOEPrefetcher::Sandbox

Completed in 15 milliseconds