Algorithm Evaluation in Operating System

To select an algorithm, we must first define the relative importance of these elements. Our criteria may include several measures, such as these

  • Maximizing CPU utilization under the constraint that the maximum response time is 1 second
  • Maximizing throughput such that turnaround time is (on average) linearly proportional to total execution time

Deterministic Modeling

Deterministic modeling is one type of analytic evaluation. This method takes a particular predetermined workload and defines the performance of each algorithm for that workload. For example, assume that we have the workload shown below. All five processes arrive at time 0, in the order given, with the length of the CPU burst given in milliseconds:

ProcessBurst Time
P110
P229
P33
P47
P512

Queueing Models

On many systems, the processes that are run vary from day to day, so there is no static set of processes (or times) to use for deterministic modeling. What can be determined, however, is the distribution of CPU and I/O bursts. These distributions can be measured and then approximated or simply estimated. The result is a mathematical formula describing the probability of a particular CPU burst. Commonly, this distribution is exponential and is described by its mean. Similarly, we can describe the distribution of times when processes arrive in the system (the arrival-time distribution). From these two distributions, it is possible to compute the average throughput, utilization, waiting time, and so on for most algorithms.

The computer system is described as a network of servers. Each server has a queue of waiting processes. The CPU is a server with its ready queue, as is the I/O system with its device queues. Knowing arrival rates and service rates, we can compute utilization, average queue length, average wait time, and so on. This area of study is called queueing-network analysis

As an example, let n be the average queue length (excluding the process being serviced), let W be the average waiting time in the queue, and let  be the average arrival rate for new processes in the queue (such as three processes per second). We expect that during the time W that a process waits, λ × W new processes will arrive in the queue. If the system is in a steady state, then the number of processes leaving the queue must be equal to the number of processes that arrive. Thus,

n = λ × W

This equation, known as Little’s formula, is particularly useful because it is valid for any scheduling algorithm and arrival distribution

Leave a Comment