Starting from:
$30

$24

Lab 2 (Short-term CPU) Scheduling SOlution

In this lab you will simulate scheduling in order to see how the time required depends on the scheduling algorithm and the request patterns. The lab is due ?? October 2015.




A process is characterized by just four numbers A, B, C, and M . A is the arrival time of the process and C is the total CPU time needed. A process contains computation alternating with I/O. We refer to these as CPU bursts and I/O bursts. We make the simplifying assumption that, for each process, the CPU burst times are uniformly distrib-uted random integers (UDRIs) in the interval (0,B]. To obtain a UDRI t in some interval (0,U ] use the function ran-domOS(U) described below. If t, the value returned by randomOS(), is larger than the total CPU time remaining, set




to the remaining time.



The I/O burst time for a process is its preceding CPU burst time multiplied by M ..




You are to read a file describing n processes (i.e., n triples of numbers) and then simulate the n processes until they all terminate. The way to do this is to keep track of the state of each process and advance time making any state transitions needed. At the end of the run you should first print an identification of the run including the scheduling algorithm used, any parameters (e.g. the quantum for RR), and the number of processes simulated. You should then print for each process




( A, B, C, M )



F inishing time.



Turnaround time (i.e., finishing time - A).



I /O time (i.e., time in Blocked state).



Waiting time (i.e., time in Ready state).



Then print the following summary data.




F inishing time (i.e., when all the processes have fi nished).



C PU Utilization (i.e., percentage of time some job is running).



I /O Utilization (i.e., percentage of time some job is blocked).



T hroughput, expressed in processes completed per hundred time units.



Average turnaround time.



Average waiting time.



You should simulate each of the following scheduling algorithms, assuming, for simplicity, that a context switch takes zero time. You need only do calculations every time unit (e.g., you may assume nothing exciting happens at time 2.5).




F CFS.



R R with quantum 2.



U niprogrammed. Just one process active. When it is blocked, the system waits.



S JF (This is not preemptive, but is not run to completion, i.e. switch on I/O bursts). Recall that SJF is shortest job first, not shortest burst first. So the time you use to determine priority is the total time remaining (i.e., the input value C minus the number of cycles this process has run).



For each scheduling algorithm there are several runs with different process mixes. A mix is a value of n followed by n ( A, B, C, M ) quadruples. Here are the first tw o input sets. The comments are not part of the input. All the input sets, with the corresponding outputs are on the web.




1 (0 1 5 1) about as easy as possible




2 (0 1 5 1) (0 1 5 1) should alternate with FCFS




The simple function randomOS(U), which you are to write, reads a random non-negative integer X from a file named random-numbers (in the current directory) and returns the value 1 + ( X mod U ). I will supply a file with a large number of random non-negative integers. The purpose of standardizing the random numbers is so that all cor-rect programs will produce the same answers.

Lab 2 (Short-term CPU) Scheduling OS:







Breaking ties:




There are two places where the above specification is not deterministic and different choices can lead to dif ferent answers. To standardize the answers, make the following choices.




A running process can have three events occur during the same cycle.



It can terminate (remaining CPU time goes to zero).



It can block (remaining CPU burst time goes to zero).



It can be preempted (e.g., the RR quantum goes to zero).



They should be considered in the above order. For example if all three occur at one cycle, the process terminates.




Many jobs can have the same ``priority''. For example in RR jobs can become ready at the same cycle and you must decide in what order to insert them onto the FIFO ready queue. Ties should be broken by favoring the process with the earliest arrival time A. If the arrival times are the same for two processes with the same priority, then favor the process that is listed earliest in the input. We break ties to standardize answers. We use this particular rule for two reason. First, it does break all ties. Second, it is very simple to implement. It is not especially wonderful and is not used in practice. I refer to this method as the ``lab 2 tie-breaking rule'' and often use it on exams.



Running your program




Your program must read its input from a file, whose name is gi ven as a command line argument. The preceding sen-tence is a requirement. The format of the input is shown above (but the ``comments'' are not necessary); sample inputs are on the web. Be sure you can process the sample inputs. Do not assume you can change the input by adding spaces or commas or removing parens, etc.




Your program must send its output to the screen (printf in C; System.out in java).




In addition your program must accept an optional ``--verbose'' fl ag, which if present precedes the file name. If --v er-bose is given your program is to produce detailed output that you will find useful in deb ugging (indeed, you will thank me for requiring this option). See the sample output on the web for the format of debugging output. So the two possible invocations of your program are




<program-name <input-filename




<program-name --verbose <input-filename




My program also supports an even more verbose mode (show-random) that prints the random number chosen each time. This is useful, but your program is not required to support it.

More products