Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix missing proto for PID functions
[simgrid.git] / teshsuite / smpi / compute3.c
1 /* Copyright (c) 2009-2012. The SimGrid Team. All rights reserved.          */
2
3 /* This example should be instructive to learn about SMPI_SAMPLE_LOCAL and 
4    SMPI_SAMPLE_GLOBAL macros for execution sampling */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <mpi.h>
11
12 int main(int argc, char *argv[])
13 {
14   int i,j;
15   double d;
16   MPI_Init(&argc, &argv);
17   d = 2.0;
18   for (i=0;i<5;i++) {   
19      SMPI_SAMPLE_GLOBAL(3,-1)  { // I want no more than 3 benchs (thres<0)
20         fprintf(stderr,"[rank:%d] Run the first computation. It's globally benched, and I want no more than 3 benchmarks (thres<0)\n", smpi_process_index());
21     
22         for (j=0;j<100*1000*1000;j++) { // 100 kflop
23            if (d < 100000) {
24               d = d * d;
25            } else {
26               d = 2;
27            }
28         }     
29      }
30   }
31
32   for (i=0;i<5;i++) {   
33      SMPI_SAMPLE_LOCAL(0, 0.1) { // I want the standard error to go below 0.1 second. Two tests at least will be run (count is not >0)
34         fprintf(stderr,"[rank:%d] Run the first (locally benched) computation. It's locally benched, and I want the standard error to go below 0.1 second (count is not >0)\n", smpi_process_index());
35         for (j=0;j<100*1000*1000;j++) { // 100 kflop
36            if (d < 100000) {
37               d = d * d;
38            } else {
39               d = 2;
40            }
41         }
42      }
43   }
44    
45   fprintf(stderr,"[%d] The result of the computation is: %f\n", smpi_process_index(), d);
46
47   MPI_Finalize();
48   return 0;
49 }