Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
foss-2024-2-final
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
홍 유빈
foss-2024-2-final
Commits
774d5b95
Commit
774d5b95
authored
5 months ago
by
홍 유빈
Browse files
Options
Downloads
Patches
Plain Diff
Update 4. Advanced Scheduler.md
parent
2d53fc96
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
PROJECT1 : THREADS/4. Advanced Scheduler.md
+8
-8
8 additions, 8 deletions
PROJECT1 : THREADS/4. Advanced Scheduler.md
with
8 additions
and
8 deletions
PROJECT1 : THREADS/4. Advanced Scheduler.md
+
8
−
8
View file @
774d5b95
...
...
@@ -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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment