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

/gem5/src/mem/cache/replacement_policies/
H A Dbip_rp.cc39 : LRURP(p), btp(p->btp)
49 // Entries are inserted as MRU if lower than btp, LRU otherwise
50 if (random_mt.random<unsigned>(1, 100) <= btp) {
H A Dbip_rp.hh41 * In the original paper they use btp = 1/32 ~= 3%.
58 const unsigned btp; member in class:BIPRP
H A DReplacementPolicies.py62 btp = Param.Percent(3, "Percentage of blocks to be inserted as MRU") variable in class:BIPRP
65 btp = 0 variable in class:LIPRP
84 btp = Param.Percent(3, variable in class:BRRIPRP
88 btp = 100 variable in class:RRIPRP
91 btp = 100 variable in class:NRURP
H A Dbrrip_rp.cc42 numRRPVBits(p->num_bits), hitPriority(p->hit_priority), btp(p->btp)
81 // Replacement data is inserted as "long re-reference" if lower than btp,
84 if (random_mt.random<unsigned>(1, 100) <= btp) {
H A Dbrrip_rp.hh48 * is controlled by the bimodal throtle parameter (btp).
108 const unsigned btp; member in class:BRRIPRP

Completed in 7 milliseconds