Define an array of size 1000

Assignment Help Basic Computer Science
Reference no: EM131030914

Write a parallel program with MPI functions to do the following:

1) Define an array of size 1000.

2) Generate a random integer in the range of: 0 t0 999 for: n.

3) Generate n random integers in the range of: 0 to 1000 and save them in array.

4) For m (its value comes from the keyboard) processes divide that array to (m-1) segments. All the segments except the last one must be equal (Note that the last segment may get bigger than other segments)

5) Each of process p1, p2, p3,..., pm-1 obtains the biggest number from its segment and send it to the process with rank = 0.

6) Process 0 receives a number from each process: p1, p2, p3,..., pm-1, finds the biggest number and print it.

Note: If m -1 is bigger n terminate the execution of the program with an appropriate message the shows the value of m-1 and n.

The following is a serial program. It may help.

Note: Remember the variable comm_sz in the parallel program must not get its value in the program or via scanf.

//File name: a.c

#include
#include
#include
#define atmost 1000
int find(int* a, int from, int to){
int i, b;
printf("%d----%d\n", from,to);
b = a[from];
for(i = from + 1; i
if(a[i] > b)
b = a[i];
return b;
}

int main(){
int i, n, a[atmost], comm_sz, biggest, h, b;
printf("How many segments? ");
scanf("%d", &comm_sz);
srand((unsigned)time(NULL));
n = rand()%atmost;
printf("n = %d\n", n);
for(i = 0; i
a[i] = rand() % 10001;
printf("a[%d] = %d, ", i, a[i]);
}
printf("\n");
h = n/(comm_sz-1);
biggest = -1;
printf("h = %d\n", h);
for(i = 0; i
if(i == comm_sz - 2)
b = find(a, i * h, n-1);
else
b = find(a, i * h, (i+1) * h - 1);
if(b > biggest)
biggest = b;
}
printf("The biggest is: %d\n", biggest);
return 0;
}

Note: Since I need to test your project use static array (i.e. Do not use the built-in function: malloc). Name your array: a. Only use one array. Do not sort.

Reference no: EM131030914

Questions Cloud

Write a program that produces a list of nz notes and coins : Money dispenser calculatorWrite a program that produces a list of NZ notes and coins required to give change for a user-entered amount up to $1000.
Hierarchical arrangement of lines of authority : The typically hierarchical arrangement of lines of authority, communications, rights and duties of an organization. Organizational structure determines how the roles, power and responsibilities are assigned, controlled, and coordinated, and how in..
What are the key sources of financing these organisations : Identify the differences in their reports structure and content - What are the key performance indicators?
Pros and cons of separating and integrating : Discuss pros and cons of "separating" and "integrating" the sourcing and logistics functions. Examine whether this BPM project of Gap led to the right decision to split them.
Define an array of size 1000 : For m (its value comes from the keyboard) processes divide that array to (m-1) segments. All the segments except the last one must be equal (Note that the last segment may get bigger than other segments)
What explanations can you find for high teen pregnancy rates : What explanations can you find for the high teen pregnancy rates in Texas, Mississippi, Georgia and North Carolina - Why do you think the teen pregnancy rate is lower in the Northeast and some parts of the Midwest and North?
Impact of regulatory requirements : Though sustainability initiatives are often driven by regulatory requirements, an increasing number of companies notice that they frequently result in decreased operating costs and increased revenues.
States the argument unilever is likely to make in its appeal : Recommends to the General Counsel how FDA should respond to these arguments, and what course it should adopt when regulating the sale and labeling of Just Mayo products. Write the memorandum.
Would you use dantes classification : If you were to organize a contemporary hell for the great villains of our day, would you use Dante's classification or would you construct another schema? On what basis would it be organized?

Reviews

Write a Review

Basic Computer Science Questions & Answers

  Convert the decimal fractions to binary

Convert the following decimal fractions to binary with a maximum of six places to the right of the binary point:

  Computer security is not an issue for organizations alone

Computer security is not an issue for organizations alone. Anyone whose personal computer is connected to a network or the Internet faces a potential risk of attack.

  Which must be populated in the code-behind file

which must be populated in the code-behind file. The values of the new controls must be output when a postback is done.

  Estate agents and an office manager in the office.

A new real estate company that would like to set up a Windows network in their office. (There is currently nothing in place.) They currently have ten real estate agents and an office manager in the office.

  Perform the following hexadecimal computations

Perform the following hexadecimal computations (leave the result in hexadecimal).

  Introduction to programming

Many financial experts advise that property owners should insure their homes or buildings for at least 80 percent of the amount it would cost to replace the structure.  Design a modular program that asks the user to enter the replacement cost ..

  Method for constructing the header of size

Part of the encoded ?le must be a header indicating the Huffman code. Give a method for constructing the header of size at most O(N) (in addition to the symbols), where N is the number of symbols. Complete the proof that Huffman's algorithm generates..

  Understanding of storage classes and scope rules

It amounts to a "divide and conquer" approach to problem solving. This needs sound understanding of storage classes and scope rules. Response and or thoughts?

  Efficiency related to working with different number bases

Define the Efficiency related to working with different number bases

  System capabilities for the company

Please include title page and reference page with references. This term paper needs to be in APA style. Include page numbers at the top right corner of each page.  The title page includes: title, name, date, course title, and professor's name. Also, ..

  Draw the resulting avl tree resulting from the insertion

Draw the resulting AVL tree resulting from the insertion of an entry with key 52 and draw the resulting AVL tree resulting from the removal of the entry with key 62

  Describing a network management system

"Write a two-and-a-half-page paper describing a network management system identified on a currently-dated vendor website (Cisco, HP, Sun, SolarWinds, CA, Network General, IBM, etc.). "

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd