Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The following program example can be used to sum the array values of size N elements in parallel on a system containing N computing cores

The following program example can be used to sum the array values of size N elements in parallel on a system containing N computing cores (there is a separate processor for each array element):
for j =1 to log 2(N){
for k =1 to N {
if ((k +1)% pow(2,j)==0){
values[k]+= values[k - pow(2,(j-1))]
}}}
This has the effect of summing the elements in the array as a series of partial sums, as shown in Figure 6.16. After the code has been executed, the sum of all elements in the array is stored in the last array location.
Are there any race conditions in the above code example? If so, identify
where they occur and illustrate with an example. If not, demonstrate
why this algorithm is free from race conditions.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

10.3 Discuss the five steps in the performance management process.

Answered: 1 week ago

Question

2. What recommendations will you make to the city council?

Answered: 1 week ago

Question

3. The group answers the questions.

Answered: 1 week ago