mpi_complex.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2012, 2013, 2015, 2016, 2017 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 <interface/complex_interface.h>
  18. #include <interface/complex_codelet.h>
  19. #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
  20. void display_foo_codelet(void *descr[], STARPU_ATTRIBUTE_UNUSED void *_args)
  21. {
  22. int *foo = (int *)STARPU_VARIABLE_GET_PTR(descr[0]);
  23. FPRINTF(stderr, "foo = %d\n", *foo);
  24. }
  25. /* Dumb performance model for simgrid */
  26. static double display_cost_function(struct starpu_task *task, unsigned nimpl)
  27. {
  28. (void) task;
  29. (void) nimpl;
  30. return 0.000001;
  31. }
  32. static struct starpu_perfmodel display_model =
  33. {
  34. .type = STARPU_COMMON,
  35. .cost_function = display_cost_function,
  36. .symbol = "display"
  37. };
  38. struct starpu_codelet foo_display =
  39. {
  40. .cpu_funcs = {display_foo_codelet},
  41. .nbuffers = 1,
  42. .modes = {STARPU_R},
  43. .model = &display_model
  44. };
  45. int main(int argc, char **argv)
  46. {
  47. int rank, nodes;
  48. int ret;
  49. int compare=0;
  50. ret = starpu_init(NULL);
  51. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  52. ret = starpu_mpi_init(&argc, &argv, 1);
  53. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_init");
  54. starpu_mpi_comm_rank(MPI_COMM_WORLD, &rank);
  55. starpu_mpi_comm_size(MPI_COMM_WORLD, &nodes);
  56. if (nodes < 2 || (starpu_cpu_worker_get_count() == 0))
  57. {
  58. if (rank == 0)
  59. {
  60. if (nodes < 2)
  61. fprintf(stderr, "We need at least 2 processes.\n");
  62. else
  63. fprintf(stderr, "We need at least 1 CPU.\n");
  64. }
  65. starpu_mpi_shutdown();
  66. starpu_shutdown();
  67. return 77;
  68. }
  69. starpu_data_handle_t handle;
  70. starpu_data_handle_t handle2;
  71. double real[2] = {4.0, 2.0};
  72. double imaginary[2] = {7.0, 9.0};
  73. double real2[2] = {14.0, 12.0};
  74. double imaginary2[2] = {17.0, 19.0};
  75. if (rank == 1)
  76. {
  77. real[0] = 0.0;
  78. real[1] = 0.0;
  79. imaginary[0] = 0.0;
  80. imaginary[1] = 0.0;
  81. }
  82. starpu_complex_data_register(&handle, STARPU_MAIN_RAM, real, imaginary, 2);
  83. starpu_complex_data_register(&handle2, -1, real2, imaginary2, 2);
  84. if (rank == 0)
  85. {
  86. int *compare_ptr = &compare;
  87. starpu_task_insert(&cl_display, STARPU_VALUE, "node0 initial value", strlen("node0 initial value")+1, STARPU_R, handle, 0);
  88. starpu_mpi_isend_detached(handle, 1, 10, MPI_COMM_WORLD, NULL, NULL);
  89. starpu_mpi_irecv_detached(handle2, 1, 20, MPI_COMM_WORLD, NULL, NULL);
  90. starpu_task_insert(&cl_display, STARPU_VALUE, "node0 received value", strlen("node0 received value")+1, STARPU_R, handle2, 0);
  91. starpu_task_insert(&cl_compare, STARPU_R, handle, STARPU_R, handle2, STARPU_VALUE, &compare_ptr, sizeof(compare_ptr), 0);
  92. }
  93. else if (rank == 1)
  94. {
  95. starpu_mpi_irecv_detached(handle, 0, 10, MPI_COMM_WORLD, NULL, NULL);
  96. starpu_task_insert(&cl_display, STARPU_VALUE, "node1 received value", strlen("node1 received value")+1, STARPU_R, handle, 0);
  97. starpu_mpi_isend_detached(handle, 0, 20, MPI_COMM_WORLD, NULL, NULL);
  98. }
  99. starpu_task_wait_for_all();
  100. starpu_data_unregister(handle);
  101. starpu_data_unregister(handle2);
  102. starpu_mpi_shutdown();
  103. starpu_shutdown();
  104. return (rank == 0) ? !compare : 0;
  105. }