Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics to please sonar
[simgrid.git] / teshsuite / smpi / macro-shared / macro-shared.c
1 /* Copyright (c) 2009-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* This example should be instructive to learn about SMPI_SHARED_CALL */
8
9 #include <stdio.h>
10 #include <mpi.h>
11 #include <stdint.h>
12 #include <inttypes.h>
13
14 static void* hash(char *str, uint64_t* ans)
15 {
16   char *tohash = str;
17   *ans=5381;
18   printf("hashing !\n");
19   int c = *(tohash++);
20   while (c != 0) {
21     *ans = ((*ans << 5) + *ans) + c; /* hash * 33 + c */
22     c    = *(tohash++);
23   }
24   return NULL;
25 }
26
27 int main(int argc, char *argv[])
28 {
29   MPI_Init(&argc, &argv);
30   int rank;
31   int size;
32   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
33   MPI_Comm_size(MPI_COMM_WORLD, &size);
34   //Let's Allocate a shared memory buffer
35   uint64_t* buf = SMPI_SHARED_MALLOC(sizeof(uint64_t));
36   //one writes data in it
37   if(rank==0){
38     *buf=size;
39   }
40
41   MPI_Barrier(MPI_COMM_WORLD);
42   //everyone reads from it.
43   printf("[%d] The value in the shared buffer is: %" PRIu64"\n", rank, *buf);
44
45   MPI_Barrier(MPI_COMM_WORLD);
46   //Try SMPI_SHARED_CALL function, which should call hash only once and for all.
47   char *str = strdup("onceandforall");
48   if(rank==size-1){
49     SMPI_SHARED_CALL(hash,str,str,buf);  
50   }
51
52   MPI_Barrier(MPI_COMM_WORLD);
53
54   printf("[%d] After change, the value in the shared buffer is: %" PRIu64"\n", rank, *buf);
55
56   SMPI_SHARED_FREE(buf);
57   free(str);
58
59   MPI_Finalize();
60   return 0;
61 }