insert_task.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2011, 2012, 2013, 2014 CNRS
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #include <starpu_mpi.h>
  17. #include <math.h>
  18. #include "helper.h"
  19. void func_cpu(void *descr[], STARPU_ATTRIBUTE_UNUSED void *_args)
  20. {
  21. unsigned *x = (unsigned *)STARPU_VARIABLE_GET_PTR(descr[0]);
  22. unsigned *y = (unsigned *)STARPU_VARIABLE_GET_PTR(descr[1]);
  23. FPRINTF(stdout, "VALUES: %u %u\n", *x, *y);
  24. *x = (*x + *y) / 2;
  25. }
  26. struct starpu_codelet mycodelet =
  27. {
  28. .cpu_funcs = {func_cpu},
  29. .nbuffers = 2,
  30. .modes = {STARPU_RW, STARPU_R}
  31. };
  32. #define X 4
  33. #define Y 5
  34. /* Returns the MPI node number where data indexes index is */
  35. int my_distrib(int x, int y, int nb_nodes)
  36. {
  37. return (x + y) % nb_nodes;
  38. }
  39. int main(int argc, char **argv)
  40. {
  41. int rank, size, x, y;
  42. int value=0, ret;
  43. unsigned matrix[X][Y];
  44. starpu_data_handle_t data_handles[X][Y];
  45. ret = starpu_init(NULL);
  46. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  47. ret = starpu_mpi_init(&argc, &argv, 1);
  48. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_init");
  49. MPI_Comm_rank(MPI_COMM_WORLD, &rank);
  50. MPI_Comm_size(MPI_COMM_WORLD, &size);
  51. for(x = 0; x < X; x++)
  52. {
  53. for (y = 0; y < Y; y++)
  54. {
  55. matrix[x][y] = (rank+1)*10 + value;
  56. value++;
  57. }
  58. }
  59. #if 0
  60. for(x = 0; x < X; x++)
  61. {
  62. FPRINTF(stdout, "[%d] ", rank);
  63. for (y = 0; y < Y; y++)
  64. {
  65. FPRINTF(stdout, "%3d ", matrix[x][y]);
  66. }
  67. FPRINTF(stdout, "\n");
  68. }
  69. #endif
  70. for(x = 0; x < X; x++)
  71. {
  72. for (y = 0; y < Y; y++)
  73. {
  74. int mpi_rank = my_distrib(x, y, size);
  75. if (mpi_rank == rank)
  76. {
  77. //FPRINTF(stderr, "[%d] Owning data[%d][%d]\n", rank, x, y);
  78. starpu_variable_data_register(&data_handles[x][y], STARPU_MAIN_RAM, (uintptr_t)&(matrix[x][y]), sizeof(unsigned));
  79. }
  80. else
  81. {
  82. /* I don't own that index, but will need it for my computations */
  83. //FPRINTF(stderr, "[%d] Neighbour of data[%d][%d]\n", rank, x, y);
  84. starpu_variable_data_register(&data_handles[x][y], -1, (uintptr_t)NULL, sizeof(unsigned));
  85. }
  86. if (data_handles[x][y])
  87. {
  88. starpu_mpi_data_register(data_handles[x][y], (y*X)+x, mpi_rank);
  89. }
  90. }
  91. }
  92. ret = starpu_mpi_task_insert(MPI_COMM_WORLD, &mycodelet, STARPU_RW, data_handles[1][1], STARPU_R, data_handles[0][1], 0);
  93. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_task_insert");
  94. ret = starpu_mpi_task_insert(MPI_COMM_WORLD, &mycodelet, STARPU_RW, data_handles[3][1], STARPU_R, data_handles[0][1], 0);
  95. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_task_insert");
  96. ret = starpu_mpi_task_insert(MPI_COMM_WORLD, &mycodelet, STARPU_RW, data_handles[0][1], STARPU_R, data_handles[0][0], 0);
  97. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_task_insert");
  98. ret = starpu_mpi_task_insert(MPI_COMM_WORLD, &mycodelet, STARPU_RW, data_handles[3][1], STARPU_R, data_handles[0][1], 0);
  99. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_task_insert");
  100. FPRINTF(stderr, "Waiting ...\n");
  101. starpu_task_wait_for_all();
  102. for(x = 0; x < X; x++)
  103. {
  104. for (y = 0; y < Y; y++)
  105. {
  106. if (data_handles[x][y])
  107. starpu_data_unregister(data_handles[x][y]);
  108. }
  109. }
  110. starpu_mpi_shutdown();
  111. starpu_shutdown();
  112. #if 0
  113. for(x = 0; x < X; x++)
  114. {
  115. FPRINTF(stdout, "[%d] ", rank);
  116. for (y = 0; y < Y; y++)
  117. {
  118. FPRINTF(stdout, "%3d ", matrix[x][y]);
  119. }
  120. FPRINTF(stdout, "\n");
  121. }
  122. #endif
  123. return 0;
  124. }