This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mpiomp.c
62 lines (48 loc) · 1.46 KB
/
mpiomp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <mpi.h>
#include <omp.h>
const double PI = 3.1415926535897932;
const long STEP_NUM = 1070596096;
const double STEP_LENGTH = 1.0 / 1070596096;
int main (int argc, char* argv[])
{
double pi, sum = 0.0;
MPI_Init (&argc, &argv);
int rank, size;
// get process ID
MPI_Comm_rank (MPI_COMM_WORLD, &rank);
// get processes number
MPI_Comm_size (MPI_COMM_WORLD, &size);
// synchronize all processes and get the begin time
MPI_Barrier(MPI_COMM_WORLD);
if(rank == 0)
printf("\nStart calculating with %d processes...\n", size);
double startTime = MPI_Wtime();
double result = 0.0;
double x;
// each process will caculate a part of the sum
#pragma omp parallel for reduction(+:result) private(x) num_threads(4)
for (int i = rank * STEP_NUM / size; i < rank * STEP_NUM / size + STEP_NUM / size; i ++)
{
x = (i + 0.5) * STEP_LENGTH;
result += 1.0 / (1.0 + x * x);
}
// sum up all results
MPI_Reduce(&result, &sum, 1, MPI_DOUBLE, MPI_SUM, 0, MPI_COMM_WORLD);
// synchronize all processes and get the end time
MPI_Barrier(MPI_COMM_WORLD);
double endTime = MPI_Wtime();
// caculate and print PI
if (rank == 0)
{
pi = STEP_LENGTH * sum * 4;
printf("PI = %.16lf with error %.16lf\nTime elapsed : %lf seconds.\n\n", pi, fabs(pi - PI), (endTime - startTime));
assert(fabs(pi - PI) <= 0.001);
}
MPI_Finalize();
return 0;
}