X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..2f461f55336b42822fa6990a07163ba8aea05b44:/examples/smpi/compute3.c diff --git a/examples/smpi/compute3.c b/examples/smpi/compute3.c index ed22bfce77..23452c408f 100644 --- a/examples/smpi/compute3.c +++ b/examples/smpi/compute3.c @@ -1,5 +1,7 @@ -/* Copyright (c) 2009, 2010. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2012. The SimGrid Team. All rights reserved. */ + +/* This example should be instructive to learn about SMPI_SAMPLE_LOCAL and + SMPI_SAMPLE_GLOBAL macros for execution sampling */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -9,30 +11,39 @@ int main(int argc, char *argv[]) { - int i; + int i,j; double d; MPI_Init(&argc, &argv); d = 2.0; -/* SMPI_DO_ONCE */{ - for (i = 0; i < atoi(argv[1]); i++) { - if (d < 10000) { - d = d * d; - } else { - d = 2; - } - } - printf("%d %f\n", i, d); + for (i=0;i<5;i++) { + SMPI_SAMPLE_GLOBAL(3,-1) { // I want no more than 3 benchs (thres<0) + 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()); + + for (j=0;j<100*1000*1000;j++) { // 100 kflop + if (d < 100000) { + d = d * d; + } else { + d = 2; + } + } + } } -/* SMPI_DO_ONCE */{ - for (i = 0; i < 2 * atoi(argv[1]); i++) { - if (d < 10000) { - d = d * d; - } else { - d = 2; - } - } - printf("%d %f\n", i, d); + + for (i=0;i<5;i++) { + 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) + 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()); + for (j=0;j<100*1000*1000;j++) { // 100 kflop + if (d < 100000) { + d = d * d; + } else { + d = 2; + } + } + } } + + fprintf(stderr,"[%d] The result of the computation is: %f\n", smpi_process_index(), d); + MPI_Finalize(); return 0; }