Searched refs:btp (Results 1 - 5 of 5) sorted by relevance
/gem5/src/mem/cache/replacement_policies/ | ||
H A D | bip_rp.cc | 39 : 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 D | bip_rp.hh | 41 * In the original paper they use btp = 1/32 ~= 3%. 58 const unsigned btp; member in class:BIPRP |
H A D | ReplacementPolicies.py | 62 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 D | brrip_rp.cc | 42 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 D | brrip_rp.hh | 48 * is controlled by the bimodal throtle parameter (btp). 108 const unsigned btp; member in class:BRRIPRP |
Completed in 6 milliseconds