Skip to content

Commit 18b51a6

Browse files
author
Dima Perov
committed
Update modules/task_1/Perov_Dima_task1_SumElVect/main.cpp
1 parent 5e55e2f commit 18b51a6

File tree

1 file changed

+2
-6
lines changed
  • modules/task_1/Perov_Dima_task1_SumElVect

1 file changed

+2
-6
lines changed

modules/task_1/Perov_Dima_task1_SumElVect/main.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#include <mpi.h>
33
#include <string>
44
#include <ctime>
5+
#include <cstdlib>
6+
#include <assert.h>
57

68
using namespace std;
79

@@ -18,9 +20,6 @@ int main(int argc, char *argv[])
1820

1921
myVector = new double[size];
2022

21-
22-
23-
2423
// for parallel block
2524
double myResult = 0;
2625
double startTime = 0;
@@ -45,12 +44,10 @@ int main(int argc, char *argv[])
4544
std::cout << "Error: MPI_Init";
4645
}
4746

48-
4947
// Description of the communicator
5048
// communicator manages groups of parallel processes
5149
MPI_Comm_size(MPI_COMM_WORLD, &numProcs); // determining the number of processes in a group
5250
MPI_Comm_rank(MPI_COMM_WORLD, &myId); // determining the rank of a process in a group
53-
5451

5552
if (myId == 0) {
5653

@@ -81,7 +78,6 @@ int main(int argc, char *argv[])
8178
}
8279

8380
MPI_Reduce(&mySum, &myResult, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD);
84-
8581

8682
if (myId == 0) {
8783
remainderDiv = size % numProcs;

0 commit comments

Comments
 (0)