logo Use CA10RAM to get 10%* Discount.
Order Nowlogo
(5/5)

the program, generate a chart that depicts the performance of each of the algorithms

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Loop for 1,000 experiments

            Generate page address stream (similar to Figure 8.14, see next page)

            Loop for working set size from 2 through 20

                        Faults[working set size][LRU] += LRU( working set size, stream)

                        Faults[working set size][FIFO] += FIFO ( working set size, stream)

                        Faults[working set size][Clock] += Clock ( working set size, stream)

                        Faults[working set size][Random] += Random ( working set size, stream)

            End of working set size loop

End of Experiment loop

Loop for working set size from 2 through 20

Test trace with:

                        Print( working set size,

Faults[working set size][LRU] / 1000.0,

                                    Faults[working set size][FIFO] / 1000.0,

                                    Faults[working set size][Clock] / 1000.0,

                                    Faults[working set size][Random] / 1000.0 )

End of working set size loop

 

Each function ( LRU, FIFO, Clock, and Random ) count the number of page faults which occur for a page address stream based on the working set size

External to the program, generate a chart that depicts the performance of each of the algorithms (similar to Figure 8.16).

 

 

Generate page address stream

Each page address stream is 1,000 page addresses.

for( part=0; part<10; part++ )

            Base address equals 25 times a uniform random value in [0,9], inclusive.

for( index=0; index <100; index ++ )

                        Address[100*part+index] = Base + normal random number in [0,25], inclusive.

 

Uniform random number generator

int uniform( int lo, int hi )

{

            int x, y = hi – lo + 1, z = RAND_MAX / y;

            while ( y <= (x = ( random() / z )) );

            return x + lo;

}

 

Normal random number generator

int normal ()

{

            int x = 0;

            for( int i=0; i<5; i++ )

            {

                        x += uniform( 0, 5 );

            }

            return x;

}

 

(5/5)
Attachments:

Related Questions

. Introgramming & Unix Fall 2018, CRN 44882, Oakland University Homework Assignment 6 - Using Arrays and Functions in C

DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma

. The standard path finding involves finding the (shortest) path from an origin to a destination, typically on a map. This is an

Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t

. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class. The LineItem class will represent an individual

Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th

. SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

. Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Um e HaniScience

743 Answers

Hire Me
expert
Muhammad Ali HaiderFinance

824 Answers

Hire Me
expert
Husnain SaeedComputer science

928 Answers

Hire Me
expert
Atharva PatilComputer science

544 Answers

Hire Me

Get Free Quote!

383 Experts Online