BEST代写-线上编程学术专家

Best代写-最专业靠谱代写IT | CS | 留学生作业 | 编程代写Java | Python |C/C++ | PHP | Matlab | Assignment Project Homework代写

操作系统代写|CPSC 457 Assignment 3 Concurrency and Synchronization

操作系统代写|CPSC 457 Assignment 3 Concurrency and Synchronization

这是一个加拿大的操作系统原理作业代写

1 Objectives

Process synchronization and coordination is a central topic in Operating Systems. In
running concurrent process, a major problem could occur: race condition. The use of
sempahores, locks, conditions, and other constructs can help to synchronize concurrent
processes and avoid such problems. This assignment is two-fold. The first part covers a
solution to a variant of a classical problem in synchronization | the dining philosophers
problem. In the second part, the objective is to solve a particular problem using different
number of threads and to gain some insights about the performance of multithreading with
increased number of threads.

2 Part 1 – Variant of Dining Philosophers with Waiter

The dining-philosophers problem is a classical problem in synchronization. It represents
a large class of concurrenceny problems where a limited number of resources need to be
allocated to a certain number of processes without deadlock nor starvation.

For simplicity, we consider five philosophers each sitting on a chair around a circular
table. These philosophers spent their life only thinking and eating. The scenario is that
a bowl of spaghetti/rice is placed in the middle of the table, a plate is given to each
philosophers but only five single chopsticks are placed between these plates. Typically the
philosophers spend their time thinking without interaction with others around the table.

When a philosopher becomes hungry, s/he tries to pick up the two chopsticks that are
closest (left and right) one at a time. When the hungry philosopher manages to pick up
two chopsticks, s/he can eat without releasing the chopsticks. Only when s/he finished
eating to begin thinking, s/he will put the chopsticks back on the table. A typical solution
to this problem was discussed in class but it does not avoid deadlock. One solution in the
literature is the Waiter Solution.

This provides a simple way to solve the Dining Philosophers problem, assuming an
external entity called the waiter taking into account the following:

1. No chopsticks are placed on the table. Instead, a philosopher should request each of
the two chopsticks from a waiter.

2. For convenience, we assume that all philosophers request their left chopstick first,
then their right chopstick.

3. The waiter always provides chopsticks upon request unless only one chopstick remains
unused. In that case, the waiter honors the request only if a right chopstick is
requested; requests for a left chopstick are deferred until another philosopher finishes
eating.

2.1 Variant of the Waiter solution

In this part you need to implement a monitor solution to the waiter approach of the
dinning philosophers problem using semaphores. You need to consider the following in
your implementation:

1. Suppose that we have 5 philosophers.

2. Assume that the waiter has n chopsticks where n takes an integer value from 5 to
10. Your program should take this value n as input.

3. Use a random number between 1 and 5 to select which philosopher changes its state
from Thinking to Hungry. You may assume that the eating time for each philosopher
is fixed to 5 seconds.

4. You can avoid starvation by not allowing a philosopher to eat again before all the
other philosophers had their turn to eat.

5. Once every philosopher has eaten 3 times, your program should report the average
amount of time that the philosophers had to wait to begin eating after becoming
hungry.

In addition to your implementation’s code, you should provide a brief report that shows
the averages’ times that philosophers spent waiting to eat after becoming hungry in 25 runs
of your program, five runs for each value of n from 5 to 10. (Your report should include
all of those 25 averages).

3 Part 2 – Composite Numbers & Mutli-threading

In multithreading, multiple components of a program could be executed at the same time.

These components are known as threads and are lightweight processes available within the
process. So multithreading leads to maximum utilization of the CPU by multitasking. In
this part you will apply multithreading on the problem of finding composite numbers and
compare the performance of your solution using various number of threads.

A composite number1 c is a number that has more than two factors, including 1 and

c. For example, 12 is a composite number because it can be divided by 1; 2; 3; 4; 6 and 12.

So, the number 12 has 6 factors. One way to find if a number is a composite is to check if
it can be divided by 2; 3; 5; 7; 11; and 13. If it is even, we can start with division by 2, and
if the number ends with 0 or 5, we can divide by 5.

In this part you need to do the following:

1. Write a program that reads a set of integers and determine how many of the input
numbers are composite numbers.

2. Rewrite your program to using multi-threading. To do so you need to do the following:

(a) Assume that your program uses n threads.

(b) Distribute the work involved as equally as possible among these n threads.

(c) Structure your program to read the number of threads as an optional parameter
on a command line. For instance, if you program is Mycomposite, then you can
run it with n threads using: Mycomposite -n

bestdaixie

评论已关闭。