sync_and_notify_data_implicit.c 4.9 KB

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