mpi_complex.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2012-2013,2015-2017 CNRS
  4. * Copyright (C) 2013 Inria
  5. * Copyright (C) 2013-2015,2017 Université de Bordeaux
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #include <starpu_mpi.h>
  19. #include <interface/complex_interface.h>
  20. #include <interface/complex_codelet.h>
  21. #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
  22. void display_foo_codelet(void *descr[], void *_args)
  23. {
  24. (void)_args;
  25. int *foo = (int *)STARPU_VARIABLE_GET_PTR(descr[0]);
  26. FPRINTF(stderr, "foo = %d\n", *foo);
  27. }
  28. struct starpu_codelet foo_display =
  29. {
  30. .cpu_funcs = {display_foo_codelet},
  31. .nbuffers = 1,
  32. .modes = {STARPU_R},
  33. .model = &starpu_perfmodel_nop,
  34. };
  35. int main(int argc, char **argv)
  36. {
  37. int rank, nodes;
  38. int ret;
  39. int compare=0;
  40. ret = starpu_init(NULL);
  41. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  42. ret = starpu_mpi_init(&argc, &argv, 1);
  43. STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_init");
  44. starpu_mpi_comm_rank(MPI_COMM_WORLD, &rank);
  45. starpu_mpi_comm_size(MPI_COMM_WORLD, &nodes);
  46. if (nodes < 2 || (starpu_cpu_worker_get_count() == 0))
  47. {
  48. if (rank == 0)
  49. {
  50. if (nodes < 2)
  51. fprintf(stderr, "We need at least 2 processes.\n");
  52. else
  53. fprintf(stderr, "We need at least 1 CPU.\n");
  54. }
  55. starpu_mpi_shutdown();
  56. starpu_shutdown();
  57. return 77;
  58. }
  59. starpu_data_handle_t handle;
  60. starpu_data_handle_t handle2;
  61. double real[2] = {4.0, 2.0};
  62. double imaginary[2] = {7.0, 9.0};
  63. double real2[2] = {14.0, 12.0};
  64. double imaginary2[2] = {17.0, 19.0};
  65. if (rank == 1)
  66. {
  67. real[0] = 0.0;
  68. real[1] = 0.0;
  69. imaginary[0] = 0.0;
  70. imaginary[1] = 0.0;
  71. }
  72. starpu_complex_data_register(&handle, STARPU_MAIN_RAM, real, imaginary, 2);
  73. starpu_complex_data_register(&handle2, -1, real2, imaginary2, 2);
  74. if (rank == 0)
  75. {
  76. int *compare_ptr = &compare;
  77. starpu_task_insert(&cl_display, STARPU_VALUE, "node0 initial value", strlen("node0 initial value")+1, STARPU_R, handle, 0);
  78. starpu_mpi_isend_detached(handle, 1, 10, MPI_COMM_WORLD, NULL, NULL);
  79. starpu_mpi_irecv_detached(handle2, 1, 20, MPI_COMM_WORLD, NULL, NULL);
  80. starpu_task_insert(&cl_display, STARPU_VALUE, "node0 received value", strlen("node0 received value")+1, STARPU_R, handle2, 0);
  81. starpu_task_insert(&cl_compare, STARPU_R, handle, STARPU_R, handle2, STARPU_VALUE, &compare_ptr, sizeof(compare_ptr), 0);
  82. }
  83. else if (rank == 1)
  84. {
  85. starpu_mpi_irecv_detached(handle, 0, 10, MPI_COMM_WORLD, NULL, NULL);
  86. starpu_task_insert(&cl_display, STARPU_VALUE, "node1 received value", strlen("node1 received value")+1, STARPU_R, handle, 0);
  87. starpu_mpi_isend_detached(handle, 0, 20, MPI_COMM_WORLD, NULL, NULL);
  88. }
  89. starpu_task_wait_for_all();
  90. starpu_data_unregister(handle);
  91. starpu_data_unregister(handle2);
  92. starpu_mpi_shutdown();
  93. starpu_shutdown();
  94. return (rank == 0) ? !compare : 0;
  95. }