sync_and_notify_data.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011 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 <stdio.h>
  18. #include <unistd.h>
  19. #include <errno.h>
  20. #include <starpu.h>
  21. #ifdef STARPU_USE_GORDON
  22. #include <gordon.h>
  23. #endif
  24. #include "../common/helper.h"
  25. #define N 100
  26. #define K 256
  27. #define FPRINTF(ofile, fmt, args ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ##args); }} while(0)
  28. /*
  29. * In this test, we maintain a vector v = (a,b,c).
  30. *
  31. * Each iteration consists of:
  32. * - increment a n times
  33. * - sync v in ram
  34. * - incrementer b
  35. * - notify the modification of v
  36. * - incrementer c n times
  37. * - sync v
  38. *
  39. * At the end, we have to make sure that if we did k iterations,
  40. * v == (kn, k, kn)
  41. */
  42. #ifdef STARPU_USE_CUDA
  43. void cuda_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args);
  44. void cuda_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args);
  45. #endif
  46. #ifdef STARPU_USE_OPENCL
  47. #include <starpu_opencl.h>
  48. void opencl_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args);
  49. void opencl_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args);
  50. struct starpu_opencl_program opencl_code;
  51. #endif
  52. #define VECTORSIZE 16
  53. starpu_data_handle v_handle;
  54. static unsigned v[VECTORSIZE] __attribute__((aligned(128))) = {0, 0, 0, 0};
  55. void cpu_codelet_incA(void *descr[], __attribute__ ((unused)) void *_args)
  56. {
  57. unsigned *val = (unsigned *)STARPU_VECTOR_GET_PTR(descr[0]);
  58. val[0]++;
  59. }
  60. void cpu_codelet_incC(void *descr[], __attribute__ ((unused)) void *_args)
  61. {
  62. unsigned *val = (unsigned *)STARPU_VECTOR_GET_PTR(descr[0]);
  63. val[2]++;
  64. }
  65. int main(int argc, char **argv)
  66. {
  67. int ret;
  68. ret = starpu_init(NULL);
  69. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  70. #ifdef STARPU_USE_GORDON
  71. unsigned elf_id = gordon_register_elf_plugin("./datawizard/sync_and_notify_data_gordon_kernels.spuelf");
  72. gordon_load_plugin_on_all_spu(elf_id);
  73. unsigned kernel_incA_id = gordon_register_kernel(elf_id, "incA");
  74. gordon_load_kernel_on_all_spu(kernel_incA_id);
  75. unsigned kernel_incC_id = gordon_register_kernel(elf_id, "incC");
  76. gordon_load_kernel_on_all_spu(kernel_incC_id);
  77. FPRINTF(stderr, "kernel incA %d incC %d elf %d\n", kernel_incA_id, kernel_incC_id, elf_id);
  78. #endif
  79. #ifdef STARPU_USE_OPENCL
  80. starpu_opencl_load_opencl_from_file("tests/datawizard/sync_and_notify_data_opencl_codelet.cl", &opencl_code, NULL);
  81. #endif
  82. starpu_vector_data_register(&v_handle, 0, (uintptr_t)v, VECTORSIZE, sizeof(unsigned));
  83. unsigned iter;
  84. for (iter = 0; iter < K; iter++)
  85. {
  86. int ret;
  87. unsigned ind;
  88. for (ind = 0; ind < N; ind++)
  89. {
  90. /* increment a = v[0] */
  91. starpu_codelet cl_inc_a = {
  92. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL|STARPU_GORDON,
  93. .cpu_func = cpu_codelet_incA,
  94. #ifdef STARPU_USE_CUDA
  95. .cuda_func = cuda_codelet_incA,
  96. #endif
  97. #ifdef STARPU_USE_OPENCL
  98. .opencl_func = opencl_codelet_incA,
  99. #endif
  100. #ifdef STARPU_USE_GORDON
  101. .gordon_func = kernel_incA_id,
  102. #endif
  103. .nbuffers = 1
  104. };
  105. struct starpu_task *task = starpu_task_create();
  106. task->cl = &cl_inc_a;
  107. task->buffers[0].handle = v_handle;
  108. task->buffers[0].mode = STARPU_RW;
  109. task->synchronous = 1;
  110. ret = starpu_task_submit(task);
  111. if (ret == -ENODEV) goto enodev;
  112. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  113. }
  114. /* synchronize v in RAM */
  115. ret = starpu_data_acquire(v_handle, STARPU_RW);
  116. STARPU_CHECK_RETURN_VALUE(ret, "starpu_data_acquire");
  117. /* increment b */
  118. v[1]++;
  119. starpu_data_release(v_handle);
  120. for (ind = 0; ind < N; ind++)
  121. {
  122. /* increment c = v[2] */
  123. starpu_codelet cl_inc_c = {
  124. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL|STARPU_GORDON,
  125. .cpu_func = cpu_codelet_incC,
  126. #ifdef STARPU_USE_CUDA
  127. .cuda_func = cuda_codelet_incC,
  128. #endif
  129. #ifdef STARPU_USE_OPENCL
  130. .opencl_func = opencl_codelet_incC,
  131. #endif
  132. #ifdef STARPU_USE_GORDON
  133. .gordon_func = kernel_incC_id,
  134. #endif
  135. .nbuffers = 1
  136. };
  137. struct starpu_task *task = starpu_task_create();
  138. task->cl = &cl_inc_c;
  139. task->buffers[0].handle = v_handle;
  140. task->buffers[0].mode = STARPU_RW;
  141. task->synchronous = 1;
  142. ret = starpu_task_submit(task);
  143. if (ret == -ENODEV) goto enodev;
  144. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  145. }
  146. }
  147. ret = starpu_data_acquire(v_handle, STARPU_RW);
  148. STARPU_CHECK_RETURN_VALUE(ret, "starpu_data_acquire");
  149. FPRINTF(stderr, "V = {%u, %u, %u}\n", v[0], v[1], v[2]);
  150. starpu_data_release(v_handle);
  151. starpu_data_unregister(v_handle);
  152. starpu_shutdown();
  153. if ((v[0] != N*K) || (v[1] != K) || (v[2] != N*K))
  154. return -1;
  155. return 0;
  156. enodev:
  157. starpu_data_unregister(v_handle);
  158. starpu_shutdown();
  159. fprintf(stderr, "WARNING: No one can execute this task\n");
  160. /* yes, we do not perform the computation but we did detect that no one
  161. * could perform the kernel, so this is not an error from StarPU */
  162. return 77;
  163. }