pi_redux.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010 Université de Bordeaux 1
  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.h>
  17. #include <stdlib.h>
  18. #include <sys/time.h>
  19. #include <starpu_config.h>
  20. #define PI 3.14159265358979323846
  21. #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CURAND)
  22. #warning CURAND is required to run that example on CUDA devices
  23. #endif
  24. #ifdef STARPU_HAVE_CURAND
  25. #include <cuda.h>
  26. #include <curand.h>
  27. #include <starpu_cuda.h>
  28. #endif
  29. #define NSHOT_PER_TASK (1024*1024)
  30. /* default value */
  31. static unsigned long ntasks = 1024;
  32. /*
  33. * Initialization of the Random Number Generators (RNG)
  34. */
  35. #ifdef STARPU_HAVE_CURAND
  36. /* RNG for the CURAND library */
  37. static curandGenerator_t curandgens[STARPU_NMAXWORKERS];
  38. #endif
  39. /* state for the erand48 function */
  40. static unsigned short xsubi[3*STARPU_NMAXWORKERS];
  41. /* Function to initialize the random number generator in the current worker */
  42. static void init_rng(void *arg __attribute__((unused)))
  43. {
  44. #ifdef STARPU_HAVE_CURAND
  45. curandStatus_t res;
  46. #endif
  47. int workerid = starpu_worker_get_id();
  48. switch (starpu_worker_get_type(workerid)) {
  49. case STARPU_CPU_WORKER:
  50. /* create a seed */
  51. xsubi[0 + 3*workerid] = (unsigned short)workerid;
  52. xsubi[1 + 3*workerid] = (unsigned short)workerid;
  53. xsubi[2 + 3*workerid] = (unsigned short)workerid;
  54. break;
  55. #ifdef STARPU_HAVE_CURAND
  56. case STARPU_CUDA_WORKER:
  57. /* Create a RNG */
  58. res = curandCreateGenerator(&curandgens[workerid],
  59. CURAND_RNG_PSEUDO_DEFAULT);
  60. STARPU_ASSERT(res == CURAND_STATUS_SUCCESS);
  61. /* Seed it with worker's id */
  62. res = curandSetPseudoRandomGeneratorSeed(curandgens[workerid],
  63. (unsigned long long)workerid);
  64. STARPU_ASSERT(res == CURAND_STATUS_SUCCESS);
  65. break;
  66. #endif
  67. default:
  68. STARPU_ABORT();
  69. break;
  70. }
  71. }
  72. static void parse_args(int argc, char **argv)
  73. {
  74. int i;
  75. for (i = 1; i < argc; i++) {
  76. if (strcmp(argv[i], "-ntasks") == 0) {
  77. char *argptr;
  78. ntasks = strtol(argv[++i], &argptr, 10);
  79. }
  80. }
  81. }
  82. /*
  83. * Monte-carlo kernel
  84. */
  85. static void pi_func_cpu(void *descr[], void *cl_arg __attribute__ ((unused)))
  86. {
  87. int workerid = starpu_worker_get_id();
  88. unsigned short *worker_xsub;
  89. worker_xsub = &xsubi[3*workerid];
  90. unsigned long local_cnt = 0;
  91. /* Fill the scratchpad with random numbers */
  92. int i;
  93. for (i = 0; i < NSHOT_PER_TASK; i++)
  94. {
  95. float x = (float)(2.0*starpu_erand48(worker_xsub) - 1.0);
  96. float y = (float)(2.0*starpu_erand48(worker_xsub) - 1.0);
  97. float dist = x*x + y*y;
  98. if (dist < 1.0)
  99. local_cnt++;
  100. }
  101. /* Put the contribution of that task into the counter */
  102. unsigned long *cnt = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[1]);
  103. *cnt = *cnt + local_cnt;
  104. }
  105. extern void pi_redux_cuda_kernel(float *x, float *y, unsigned n, unsigned long *shot_cnt);
  106. #ifdef STARPU_HAVE_CURAND
  107. static void pi_func_cuda(void *descr[], void *cl_arg __attribute__ ((unused)))
  108. {
  109. cudaError_t cures;
  110. curandStatus_t res;
  111. int workerid = starpu_worker_get_id();
  112. /* CURAND is a bit silly: it assumes that any error is fatal. Calling
  113. * cudaGetLastError resets the last error value. */
  114. cures = cudaGetLastError();
  115. // if (cures)
  116. // STARPU_CUDA_REPORT_ERROR(cures);
  117. /* Fill the scratchpad with random numbers. Note that both x and y
  118. * arrays are in stored the same vector. */
  119. float *scratchpad_xy = (float *)STARPU_VECTOR_GET_PTR(descr[0]);
  120. res = curandGenerateUniform(curandgens[workerid], scratchpad_xy, 2*NSHOT_PER_TASK);
  121. STARPU_ASSERT(res == CURAND_STATUS_SUCCESS);
  122. float *x = &scratchpad_xy[0];
  123. float *y = &scratchpad_xy[NSHOT_PER_TASK];
  124. unsigned long *shot_cnt = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[1]);
  125. pi_redux_cuda_kernel(x, y, NSHOT_PER_TASK, shot_cnt);
  126. }
  127. #endif
  128. static struct starpu_codelet_t pi_cl = {
  129. .where =
  130. #ifdef STARPU_HAVE_CURAND
  131. STARPU_CUDA|
  132. #endif
  133. STARPU_CPU,
  134. .cpu_func = pi_func_cpu,
  135. #ifdef STARPU_HAVE_CURAND
  136. .cuda_func = pi_func_cuda,
  137. #endif
  138. .nbuffers = 2,
  139. .model = NULL
  140. };
  141. /*
  142. * Codelets to implement reduction
  143. */
  144. static void init_cpu_func(void *descr[], void *cl_arg)
  145. {
  146. unsigned long *val = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[0]);
  147. *val = 0;
  148. }
  149. #ifdef STARPU_HAVE_CURAND
  150. static void init_cuda_func(void *descr[], void *cl_arg)
  151. {
  152. unsigned long *val = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[0]);
  153. cudaMemset(val, 0, sizeof(unsigned long));
  154. cudaThreadSynchronize();
  155. }
  156. #endif
  157. static struct starpu_codelet_t init_codelet = {
  158. .where =
  159. #ifdef STARPU_HAVE_CURAND
  160. STARPU_CUDA|
  161. #endif
  162. STARPU_CPU,
  163. .cpu_func = init_cpu_func,
  164. #ifdef STARPU_HAVE_CURAND
  165. .cuda_func = init_cuda_func,
  166. #endif
  167. .nbuffers = 1
  168. };
  169. #ifdef STARPU_HAVE_CURAND
  170. /* Dummy implementation of the addition of two unsigned longs in CUDA */
  171. static void redux_cuda_func(void *descr[], void *cl_arg)
  172. {
  173. unsigned long *d_a = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[0]);
  174. unsigned long *d_b = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[1]);
  175. unsigned long h_a, h_b;
  176. cudaMemcpy(&h_a, d_a, sizeof(h_a), cudaMemcpyDeviceToHost);
  177. cudaMemcpy(&h_b, d_b, sizeof(h_b), cudaMemcpyDeviceToHost);
  178. h_a += h_b;
  179. cudaMemcpy(d_a, &h_a, sizeof(h_a), cudaMemcpyHostToDevice);
  180. };
  181. #endif
  182. static void redux_cpu_func(void *descr[], void *cl_arg)
  183. {
  184. unsigned long *a = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[0]);
  185. unsigned long *b = (unsigned long *)STARPU_VARIABLE_GET_PTR(descr[1]);
  186. *a = *a + *b;
  187. };
  188. static struct starpu_codelet_t redux_codelet = {
  189. .where =
  190. #ifdef STARPU_HAVE_CURAND
  191. STARPU_CUDA|
  192. #endif
  193. STARPU_CPU,
  194. .cpu_func = redux_cpu_func,
  195. #ifdef STARPU_HAVE_CURAND
  196. .cuda_func = redux_cuda_func,
  197. #endif
  198. .nbuffers = 2
  199. };
  200. /*
  201. * Main program
  202. */
  203. int main(int argc, char **argv)
  204. {
  205. unsigned i;
  206. parse_args(argc, argv);
  207. starpu_init(NULL);
  208. /* Launch a Random Number Generator (RNG) on each worker */
  209. starpu_execute_on_each_worker(init_rng, NULL, STARPU_CPU|STARPU_CUDA);
  210. /* Create a scratchpad data */
  211. starpu_data_handle xy_scratchpad_handle;
  212. starpu_vector_data_register(&xy_scratchpad_handle, -1, (uintptr_t)NULL,
  213. 2*NSHOT_PER_TASK, sizeof(float));
  214. /* Create a variable that will be used to count the number of shots
  215. * that actually hit the unit circle when shooting randomly in
  216. * [-1,1]^2. */
  217. unsigned long shot_cnt = 0;
  218. starpu_data_handle shot_cnt_handle;
  219. starpu_variable_data_register(&shot_cnt_handle, 0,
  220. (uintptr_t)&shot_cnt, sizeof(shot_cnt));
  221. starpu_data_set_reduction_methods(shot_cnt_handle,
  222. &redux_codelet, &init_codelet);
  223. struct timeval start;
  224. struct timeval end;
  225. gettimeofday(&start, NULL);
  226. for (i = 0; i < ntasks; i++)
  227. {
  228. struct starpu_task *task = starpu_task_create();
  229. task->cl = &pi_cl;
  230. task->buffers[0].handle = xy_scratchpad_handle;
  231. task->buffers[0].mode = STARPU_SCRATCH;
  232. task->buffers[1].handle = shot_cnt_handle;
  233. task->buffers[1].mode = STARPU_REDUX;
  234. int ret = starpu_task_submit(task);
  235. STARPU_ASSERT(!ret);
  236. }
  237. starpu_data_acquire(shot_cnt_handle, STARPU_R);
  238. gettimeofday(&end, NULL);
  239. double timing = (double)((end.tv_sec - start.tv_sec)*1000000 + (end.tv_usec - start.tv_usec));
  240. /* Total surface : Pi * r^ 2 = Pi*1^2, total square surface : 2^2 = 4,
  241. * probability to impact the disk: pi/4 */
  242. unsigned long total = ntasks*NSHOT_PER_TASK;
  243. double pi_approx = ((double)shot_cnt*4.0)/total;
  244. starpu_data_release(shot_cnt_handle);
  245. fprintf(stderr, "Pi approximation : %lf (%ld / %ld)\n", pi_approx, shot_cnt, total);
  246. fprintf(stderr, "Error %le \n", pi_approx - PI);
  247. fprintf(stderr, "Total time : %f ms\n", timing/1000.0);
  248. fprintf(stderr, "Speed : %f GShot/s\n", total/(1e3*timing));
  249. starpu_data_unregister(shot_cnt_handle);
  250. starpu_shutdown();
  251. if (abs(pi_approx - PI) > 1.0)
  252. return 1;
  253. return 0;
  254. }