sync_and_notify_data_implicit.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011, 2012 Centre National de la Recherche Scientifique
  5. *
  6. * StarPU is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation; either version 2.1 of the License, or (at
  9. * your option) any later version.
  10. *
  11. * StarPU is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. *
  15. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  16. */
  17. #include <config.h>
  18. #include <stdio.h>
  19. #include <unistd.h>
  20. #include <errno.h>
  21. #include <starpu.h>
  22. #ifdef STARPU_USE_GORDON
  23. #include <gordon.h>
  24. #endif
  25. #include "../helper.h"
  26. #define N 100
  27. #define K 256
  28. //#define N 1
  29. //#define K 1
  30. /*
  31. * In this test, we maintain a vector v = (a,b,c).
  32. *
  33. * Each iteration consists of:
  34. * - increment a n times
  35. * - sync v in ram
  36. * - incrementer b
  37. * - notify the modification of v
  38. * - incrementer c n times
  39. * - sync v
  40. *
  41. * At the end, we have to make sure that if we did k iterations,
  42. * v == (kn, k, kn)
  43. */
  44. #ifdef STARPU_USE_CUDA
  45. void cuda_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args);
  46. void cuda_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args);
  47. #endif
  48. #ifdef STARPU_USE_OPENCL
  49. #include <starpu_opencl.h>
  50. void opencl_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args);
  51. void opencl_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args);
  52. struct starpu_opencl_program opencl_code;
  53. #endif
  54. #define VECTORSIZE 16
  55. starpu_data_handle_t v_handle;
  56. static unsigned v[VECTORSIZE] __attribute__((aligned(128))) = {0, 0, 0, 0};
  57. void cpu_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args)
  58. {
  59. STARPU_SKIP_IF_VALGRIND;
  60. unsigned *val = (unsigned *)STARPU_VECTOR_GET_PTR(descr[0]);
  61. val[0]++;
  62. }
  63. void cpu_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args)
  64. {
  65. STARPU_SKIP_IF_VALGRIND;
  66. unsigned *val = (unsigned *)STARPU_VECTOR_GET_PTR(descr[0]);
  67. val[2]++;
  68. }
  69. /* increment a = v[0] */
  70. static struct starpu_codelet cl_inc_a =
  71. {
  72. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL|STARPU_GORDON,
  73. .cpu_funcs = {cpu_codelet_incA, NULL},
  74. #ifdef STARPU_USE_CUDA
  75. .cuda_funcs = {cuda_codelet_incA, NULL},
  76. #endif
  77. #ifdef STARPU_USE_OPENCL
  78. .opencl_funcs = {opencl_codelet_incA, NULL},
  79. #endif
  80. #ifdef STARPU_USE_GORDON
  81. .gordon_func = kernel_incA_id,
  82. #endif
  83. .nbuffers = 1,
  84. .modes = {STARPU_RW}
  85. };
  86. /* increment c = v[2] */
  87. struct starpu_codelet cl_inc_c =
  88. {
  89. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL|STARPU_GORDON,
  90. .cpu_funcs = {cpu_codelet_incC, NULL},
  91. #ifdef STARPU_USE_CUDA
  92. .cuda_funcs = {cuda_codelet_incC, NULL},
  93. #endif
  94. #ifdef STARPU_USE_OPENCL
  95. .opencl_funcs = {opencl_codelet_incC, NULL},
  96. #endif
  97. #ifdef STARPU_USE_GORDON
  98. .gordon_func = kernel_incC_id,
  99. #endif
  100. .nbuffers = 1,
  101. .modes = {STARPU_RW}
  102. };
  103. int main(int argc, char **argv)
  104. {
  105. int ret;
  106. ret = starpu_init(NULL);
  107. if (ret == -ENODEV) return STARPU_TEST_SKIPPED;
  108. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  109. #ifdef STARPU_USE_GORDON
  110. unsigned elf_id = gordon_register_elf_plugin("./datawizard/sync_and_notify_data_gordon_kernels.spuelf");
  111. gordon_load_plugin_on_all_spu(elf_id);
  112. unsigned kernel_incA_id = gordon_register_kernel(elf_id, "incA");
  113. gordon_load_kernel_on_all_spu(kernel_incA_id);
  114. unsigned kernel_incC_id = gordon_register_kernel(elf_id, "incC");
  115. gordon_load_kernel_on_all_spu(kernel_incC_id);
  116. FPRINTF(stderr, "kernel incA %d incC %d elf %d\n", kernel_incA_id, kernel_incC_id, elf_id);
  117. #endif
  118. #ifdef STARPU_USE_OPENCL
  119. ret = starpu_opencl_load_opencl_from_file("tests/datawizard/sync_and_notify_data_opencl_codelet.cl", &opencl_code, NULL);
  120. STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_load_opencl_from_file");
  121. #endif
  122. starpu_vector_data_register(&v_handle, 0, (uintptr_t)v, VECTORSIZE, sizeof(unsigned));
  123. unsigned iter;
  124. for (iter = 0; iter < K; iter++)
  125. {
  126. int ret;
  127. unsigned ind;
  128. for (ind = 0; ind < N; ind++)
  129. {
  130. struct starpu_task *task = starpu_task_create();
  131. task->cl = &cl_inc_a;
  132. task->handles[0] = v_handle;
  133. ret = starpu_task_submit(task);
  134. if (ret == -ENODEV) goto enodev;
  135. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  136. }
  137. /* synchronize v in RAM */
  138. ret = starpu_data_acquire(v_handle, STARPU_RW);
  139. STARPU_CHECK_RETURN_VALUE(ret, "starpu_data_acquire");
  140. /* increment b */
  141. v[1]++;
  142. starpu_data_release(v_handle);
  143. for (ind = 0; ind < N; ind++)
  144. {
  145. struct starpu_task *task = starpu_task_create();
  146. task->cl = &cl_inc_c;
  147. task->handles[0] = v_handle;
  148. ret = starpu_task_submit(task);
  149. if (ret == -ENODEV) goto enodev;
  150. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  151. }
  152. }
  153. ret = starpu_data_acquire(v_handle, STARPU_RW);
  154. STARPU_CHECK_RETURN_VALUE(ret, "starpu_data_acquire");
  155. FPRINTF(stderr, "V = {%u, %u, %u}\n", v[0], v[1], v[2]);
  156. starpu_data_release(v_handle);
  157. starpu_data_unregister(v_handle);
  158. starpu_shutdown();
  159. if ((v[0] != N*K) || (v[1] != K) || (v[2] != N*K))
  160. {
  161. FPRINTF(stderr, "Incorrect result\n");
  162. return EXIT_FAILURE;
  163. }
  164. return EXIT_SUCCESS;
  165. enodev:
  166. starpu_data_unregister(v_handle);
  167. starpu_shutdown();
  168. fprintf(stderr, "WARNING: No one can execute this task\n");
  169. /* yes, we do not perform the computation but we did detect that no one
  170. * could perform the kernel, so this is not an error from StarPU */
  171. return STARPU_TEST_SKIPPED;
  172. }