You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gurupungav Narayanan edited this page Mar 17, 2019
·
1 revision
Knobs:
W -> sampling frequency
a,b -> weights
q_ref -> reference queue delay
Other values
p -> drop probability
q -> current queue delay
q_old -> old queue delay
Algorithm:
Every W times per second:
# calculate q (paper doesn't say how, but PIE uses Little's law# calculate drop probabilityp=a*(q-q_ref) +b*(q_old-q_ref) +p_old# update p_old and q_oldq_old=qp_old=p