Skip to content
Snippets Groups Projects
Commit 774d5b95 authored by 홍 유빈's avatar 홍 유빈
Browse files

Update 4. Advanced Scheduler.md

parent 2d53fc96
No related branches found
No related tags found
No related merge requests found
......@@ -46,16 +46,16 @@ recent cpu가 각 프로세스가 "최근에" 받은 CPU 타임을 측정하기
대신 우리는 지수가중이동평균(exponentially weighted moving average)을 사용하는데, 이는 일반적으로 다음과 같은 형태를 취합니다:
> x(0) = f(0),
> x(t) = ax(t − 1) + (1 − a)f(t),
> a = k/(k + 1),
> x(0) = f(0), <br>
> x(t) = ax(t − 1) + (1 − a)f(t), <br>
> a = k/(k + 1), <br>
여기서 x(t)는 정수 시간 t ≥ 0에서의 이동 평균이고, f(t)는 평균화되는 함수이며, k > 0은 감소 속도를 제어합니다. 다음과 같이 몇 단계에 걸쳐 공식을 반복할 수 있습니다.
> x(1) = f(1),
> x(2) = af(1) + f(2),
> ...
> x(5) = a^4 * f(1) + a^3 * f(2) + a^2 * f(3) + a * f(4) + f(5).
> x(1) = f(1), <br>
> x(2) = af(1) + f(2), <br>
> ... <br>
> x(5) = a^4 * f(1) + a^3 * f(2) + a^2 * f(3) + a * f(4) + f(5). <br>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment