370 likes | 582 Views
CHAPTER 2 PROCESSOR SCHEDULING PART III. by Uğur HALICI. 2.3.2 Shortest-Process-First (SPF). In this method, the processor is assigned to the process with the smallest execution (processor burst) time . This requires future knowledge of the execution time.
E N D
CHAPTER 2PROCESSOR SCHEDULINGPART III by Uğur HALICI
2.3.2 Shortest-Process-First (SPF) • In this method, the processor is assigned to the process with the smallest execution (processor burst) time. • This requires future knowledge of the execution time. • In our examples, it is given as a table but actually these burst times are not known by the OS. So it makes prediction. • One approach for this prediction is using the previous processor burst times for the processes in the ready queue and then the algorithm selects the shortest predicted next processor burst time.
2.3.2 Shortest-Process-First (SPF) SPF next_cpu_burst FCFS
2.3.2 Shortest-Process-First (SPF) Proc_id : next_cpu_burst
2.3.2 Shortest-Process-First (SPF) • Processor utilization = (35 / 35) * 100 = 100 % • Throughput = 4 / 35 = 0.11
2.3.2 Shortest-Process-First (SPF) • Turn around time: tatA = 35 – 0 = 35 tatB = 31 – 2 = 29 tatC = 17 – 3 =14 tatD = 23 – 7 = 16 tatAVG = (35 + 29 + 15 + 16) / 4 = 23.5
2.3.2 Shortest-Process-First (SPF) • Turn around time: tatA = 35 – 0 = 35 tatB = 31 – 2 = 29 tatC = 17 – 3 =14 tatD = 23 – 7 = 16 tatAVG = (35 + 29 + 15 + 16) / 4 = 23.5
2.3.2 Shortest-Process-First (SPF) • Turn around time: tatA = 35 – 0 = 35 tatB = 31 – 2 = 29 tatC = 17 – 3 =14 tatD = 23 – 7 = 16 tatAVG = (35 + 29 + 15 + 16) / 4 = 23.5
2.3.2 Shortest-Process-First (SPF) • Turn around time: tatA = 35 – 0 = 35 tatB = 31 – 2 = 29 tatC = 17 – 3 =14 tatD = 23 – 7 = 16 tatAVG = (35 + 29 + 15 + 16) / 4 = 23.5
2.3.2 Shortest-Process-First (SPF) • Turn around time: tatA = 35 – 0 = 35 tatB = 31 – 2 = 29 tatC = 17 – 3 =14 tatD = 23 – 7 = 16 tatAVG = (35 + 29 + 15 + 16) / 4 = 23.5
2.3.2 Shortest-Process-First (SPF) • Waiting time: wtA = (0 – 0) + (18 – 8) + (31 – 26) = 15 wtB = (6 – 2) + (23 – 15) = 12 wtC = (4 – 3) + (15 – 9) = 7 wtD = (14 – 7) + (17 – 16) + (22 – 19) = 11 wtAVG = (15 + 12 + 7 + 11) / 4 = 11.25
2.3.2 Shortest-Process-First (SPF) • Waiting time: wtA = (0 – 0) + (18 – 8) + (31 – 26) = 15 wtB = (6 – 2) + (23 – 15) = 12 wtC = (4 – 3) + (15 – 9) = 7 wtD = (14 – 7) + (17 – 16) + (22 – 19) = 11 wtAVG = (15 + 12 + 7 + 11) / 4 = 11.25
2.3.2 Shortest-Process-First (SPF) • Waiting time: wtA = (0 – 0) + (18 – 8) + (31 – 26) = 15 wtB = (6 – 2) + (23 – 15) = 12 wtC = (4 – 3) + (15 – 9) = 7 wtD = (14 – 7) + (17 – 16) + (22 – 19) = 11 wtAVG = (15 + 12 + 7 + 11) / 4 = 11.25
2.3.2 Shortest-Process-First (SPF) • Waiting time: wtA = (0 – 0) + (18 – 8) + (31 – 26) = 15 wtB = (6 – 2) + (23 – 15) = 12 wtC = (4 – 3) + (15 – 9) = 7 wtD = (14 – 7) + (17 – 16) + (22 – 19) = 11 wtAVG = (15 + 12 + 7 + 11) / 4 = 11.25
2.3.2 Shortest-Process-First (SPF) • Waiting time: wtA = (0 – 0) + (18 – 8) + (31 – 26) = 15 wtB = (6 – 2) + (23 – 15) = 12 wtC = (4 – 3) + (15 – 9) = 7 wtD = (14 – 7) + (17 – 16) + (22 – 19) = 11 wtAVG = (15 + 12 + 7 + 11) / 4 = 11.25
2.3.2 Shortest-Process-First (SPF) • Response time: rtA = 0 – 0 = 0 rtB = 6 – 2 = 4 rtC = 4 – 3 = 1 rtD = 14 – 7 = 7 rtAVG = (0 + 4 + 1 + 7) / 4 = 3
2.3.2 Shortest-Process-First (SPF) • Response time: rtA = 0 – 0 = 0 rtB = 6 – 2 = 4 rtC = 4 – 3 = 1 rtD = 14 – 7 = 7 rtAVG = (0 + 4 + 1 + 7) / 4 = 3
2.3.2 Shortest-Process-First (SPF) • Response time: rtA = 0 – 0 = 0 rtB = 6 – 2 = 4 rtC = 4 – 3 = 1 rtD = 14 – 7 = 7 rtAVG = (0 + 4 + 1 + 7) / 4 = 3
2.3.2 Shortest-Process-First (SPF) • Response time: rtA = 0 – 0 = 0 rtB = 6 – 2 = 4 rtC = 4 – 3 = 1 rtD = 14 – 7 = 7 rtAVG = (0 + 4 + 1 + 7) / 4 = 3
2.3.2 Shortest-Process-First (SPF) • Response time: rtA = 0 – 0 = 0 rtB = 6 – 2 = 4 rtC = 4 – 3 = 1 rtD = 14 – 7 = 7 rtAVG = (0 + 4 + 1 + 7) / 4 = 3