• edited by
7,587 views
7 7 votes

A particular parallel program computation requires $100$ sec when executed on a single processor, if $40\%$ of this computation is inherently sequential (i.e. will not benefit from additional processors), then theoretically best possible elapsed times of this program running with $2$ and $4$ processors, respectively, are:

  1. $20$ sec and $10$ sec
  2. $30$ sec and $15$ sec
  3. $50$ sec and $25$ sec
  4. $70$ sec and $55$ sec

5 Answers

Best answer
12 12 votes
40% sequential means 40 seconds.

Rest 60 % will be divided into 30 -30 % each parallely by the two processors hence total 40+30=70 sec

If four processors then 15% each, hence total 40+15=55 sec

Ans is D
• selected by
0 0 votes
Ans should be option C.  

For 2 processors ___40 sec for sequential, by the time other processor will complete 40% remaining instructions. Now 20% instructions left. Both can perform 10% each. So total time is 50 sec.

Similarly for 4 processors.
0 0 votes
D→

let us consider we have 100 instructions and takes 100s to complete

given that 40 instructions are sequential and 60 are branch

now when we use multiple processors time due branch will decrese whereas sequential instructions wont be affected

when 2 processors are used 60 instructions will be run on 2 processors parallelly so it’ll take 30s time

Time =40+30=70

when 4 processors are used 60 instructions will be run on 4 processors parallelly so it’ll take 15s time

Time =40+15=55
Answer:
Position:
Show:

Related questions

4 4 votes
3 3 answers
4.7k
4.7k views
Arjun asked Apr 22, 2018
4,696 views
A data driven machine is one that executes an instruction if the needed data is available. The physical ordering of the code listing does not dictate the course of execut...
4 4 votes
5 5 answers
8.1k
8.1k views
Arjun asked Apr 22, 2018
8,058 views
A byte addressable computer has a memory capacity of $2$$^{m}$$KB$ ($k$ bytes) and can perform $2$$^{n}$ operations. An instruction involving $3$ operands and one operato...
5 5 votes
4 4 answers
3.9k
3.9k views
Arjun asked Apr 22, 2018
3,891 views
Micro program is:the name of a source program in micro computersset of microinstructions that defines the individual operations in response to a machine-language instruct...
6 6 votes
4 4 answers
5.4k
5.4k views
Arjun asked Apr 22, 2018
5,432 views
Of the following, which best characterizes computers that use memory-mapped $\text{I/O}?$The computer provides special instructions for manipulating $\text{I/O}$ ports$\t...