我对多核 & amp;多 Cpu RR 模拟有一个问题;我试图了解 WTime 是如何为多核和 mulit-CPU RoundRobin 模拟算法导出的。
#CPU => 2;
#Cores => 2;
#Processes => 6;
TQ = 5;
Process# BurstTime
1 5
2 6
3 7
4 8
5 9
6 10
Process RR Algorithm Data
Process# BTime WTime CPU#
1 5 0 1
2 5 0 1
3 5 5 2
4 5 5 2
5 5 10 1
6 5 10 1
2 1 17 2
3 2 17 2
4 3 21 1
5 4 21 1
6 5 26 2
Is the this correct? Specifically P2 WTime?
P1 => 0
P2 => 17 - 0 = 17
P3 => 17 - (5*1) - 0 = 12
P4 => 21 - (5*1) - 0 = 16
P5 => 21 - (5*1) - 0 = 21
P6 => 26 - (5*1) - 0 = 21
计算流程的平均等待时间 = & gt;(0 + 17 + 12 + 16 + 21 + 21) / 6
我假设您只有一个全局队列,总共有 4 个内核,从 1 / 1 到 2 / 2 分配了内核(如果有多个空闲),并且上下文切换时间为 0:
Process # core # start end remaining acc. waiting time
1 1/1 0 5 0 0 *
2 1/2 0 5 1 0
3 2/1 0 5 2 0
4 2/2 0 5 3 0
5 1/1 5 10 4 5
6 1/2 5 10 5 5
2 2/1 5 6 0 0=0+0*
3 2/2 5 7 0 0=0+0 * (core became idle)
4 2/1 6 9 0 1=0+1 * (core became idle)
5 1/1 10 14 0 5=5+0 *
6 1/2 10 15 0 5=5+0 *
*
表示最终累计等待时间。
本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处
评论列表(6条)