cg.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010-2012, 2014-2015 Université de Bordeaux
  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 <math.h>
  17. #include <assert.h>
  18. #include <starpu.h>
  19. #include <common/blas.h>
  20. #ifdef STARPU_USE_CUDA
  21. #include <cuda.h>
  22. #include <cublas.h>
  23. #endif
  24. #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
  25. /*
  26. * Conjugate Gradient
  27. *
  28. * Input:
  29. * - matrix A
  30. * - vector b
  31. * - vector x (starting value)
  32. * - int i_max, error tolerance eps < 1.
  33. * Ouput:
  34. * - vector x
  35. *
  36. * Pseudo code:
  37. *
  38. * i <- 0
  39. * r <- b - Ax
  40. * d <- r
  41. * delta_new <- dot(r,r)
  42. * delta_0 <- delta_new
  43. *
  44. * while (i < i_max && delta_new > eps^2 delta_0)
  45. * {
  46. * q <- Ad
  47. * alpha <- delta_new/dot(d, q)
  48. * x <- x + alpha d
  49. *
  50. * If (i is divisible by 50)
  51. * r <- b - Ax
  52. * else
  53. * r <- r - alpha q
  54. *
  55. * delta_old <- delta_new
  56. * delta_new <- dot(r,r)
  57. * beta <- delta_new/delta_old
  58. * d <- r + beta d
  59. * i <- i + 1
  60. * }
  61. *
  62. * The dot() operations makes use of reduction to optimize parallelism.
  63. *
  64. */
  65. #include "cg.h"
  66. static int long long n = 4096;
  67. static int nblocks = 8;
  68. static int use_reduction = 1;
  69. static starpu_data_handle_t A_handle, b_handle, x_handle;
  70. static TYPE *A, *b, *x;
  71. #ifdef STARPU_QUICK_CHECK
  72. static int i_max = 100;
  73. #else
  74. static int i_max = 1000;
  75. #endif
  76. static double eps = (10e-14);
  77. static starpu_data_handle_t r_handle, d_handle, q_handle;
  78. static TYPE *r, *d, *q;
  79. static starpu_data_handle_t dtq_handle, rtr_handle;
  80. static TYPE dtq, rtr;
  81. extern struct starpu_codelet accumulate_variable_cl;
  82. extern struct starpu_codelet accumulate_vector_cl;
  83. extern struct starpu_codelet bzero_variable_cl;
  84. extern struct starpu_codelet bzero_vector_cl;
  85. /*
  86. * Generate Input data
  87. */
  88. static void generate_random_problem(void)
  89. {
  90. int i, j;
  91. starpu_malloc((void **)&A, n*n*sizeof(TYPE));
  92. starpu_malloc((void **)&b, n*sizeof(TYPE));
  93. starpu_malloc((void **)&x, n*sizeof(TYPE));
  94. assert(A && b && x);
  95. for (j = 0; j < n; j++)
  96. {
  97. b[j] = (TYPE)1.0;
  98. x[j] = (TYPE)0.0;
  99. /* We take Hilbert matrix that is not well conditionned but definite positive: H(i,j) = 1/(1+i+j) */
  100. for (i = 0; i < n; i++)
  101. {
  102. A[n*j + i] = (TYPE)(1.0/(1.0+i+j));
  103. }
  104. }
  105. /* Internal vectors */
  106. starpu_malloc((void **)&r, n*sizeof(TYPE));
  107. starpu_malloc((void **)&d, n*sizeof(TYPE));
  108. starpu_malloc((void **)&q, n*sizeof(TYPE));
  109. assert(r && d && q);
  110. memset(r, 0, n*sizeof(TYPE));
  111. memset(d, 0, n*sizeof(TYPE));
  112. memset(q, 0, n*sizeof(TYPE));
  113. }
  114. static void free_data(void)
  115. {
  116. starpu_free(A);
  117. starpu_free(b);
  118. starpu_free(x);
  119. starpu_free(r);
  120. starpu_free(d);
  121. starpu_free(q);
  122. }
  123. static void register_data(void)
  124. {
  125. starpu_matrix_data_register(&A_handle, STARPU_MAIN_RAM, (uintptr_t)A, n, n, n, sizeof(TYPE));
  126. starpu_vector_data_register(&b_handle, STARPU_MAIN_RAM, (uintptr_t)b, n, sizeof(TYPE));
  127. starpu_vector_data_register(&x_handle, STARPU_MAIN_RAM, (uintptr_t)x, n, sizeof(TYPE));
  128. starpu_vector_data_register(&r_handle, STARPU_MAIN_RAM, (uintptr_t)r, n, sizeof(TYPE));
  129. starpu_vector_data_register(&d_handle, STARPU_MAIN_RAM, (uintptr_t)d, n, sizeof(TYPE));
  130. starpu_vector_data_register(&q_handle, STARPU_MAIN_RAM, (uintptr_t)q, n, sizeof(TYPE));
  131. starpu_variable_data_register(&dtq_handle, STARPU_MAIN_RAM, (uintptr_t)&dtq, sizeof(TYPE));
  132. starpu_variable_data_register(&rtr_handle, STARPU_MAIN_RAM, (uintptr_t)&rtr, sizeof(TYPE));
  133. if (use_reduction)
  134. {
  135. starpu_data_set_reduction_methods(q_handle, &accumulate_vector_cl, &bzero_vector_cl);
  136. starpu_data_set_reduction_methods(r_handle, &accumulate_vector_cl, &bzero_vector_cl);
  137. starpu_data_set_reduction_methods(dtq_handle, &accumulate_variable_cl, &bzero_variable_cl);
  138. starpu_data_set_reduction_methods(rtr_handle, &accumulate_variable_cl, &bzero_variable_cl);
  139. }
  140. }
  141. static void unregister_data(void)
  142. {
  143. starpu_data_unpartition(A_handle, STARPU_MAIN_RAM);
  144. starpu_data_unpartition(b_handle, STARPU_MAIN_RAM);
  145. starpu_data_unpartition(x_handle, STARPU_MAIN_RAM);
  146. starpu_data_unpartition(r_handle, STARPU_MAIN_RAM);
  147. starpu_data_unpartition(d_handle, STARPU_MAIN_RAM);
  148. starpu_data_unpartition(q_handle, STARPU_MAIN_RAM);
  149. starpu_data_unregister(A_handle);
  150. starpu_data_unregister(b_handle);
  151. starpu_data_unregister(x_handle);
  152. starpu_data_unregister(r_handle);
  153. starpu_data_unregister(d_handle);
  154. starpu_data_unregister(q_handle);
  155. starpu_data_unregister(dtq_handle);
  156. starpu_data_unregister(rtr_handle);
  157. }
  158. /*
  159. * Data partitioning filters
  160. */
  161. struct starpu_data_filter vector_filter;
  162. struct starpu_data_filter matrix_filter_1;
  163. struct starpu_data_filter matrix_filter_2;
  164. static void partition_data(void)
  165. {
  166. assert(n % nblocks == 0);
  167. /*
  168. * Partition the A matrix
  169. */
  170. /* Partition into contiguous parts */
  171. matrix_filter_1.filter_func = starpu_matrix_filter_block;
  172. matrix_filter_1.nchildren = nblocks;
  173. /* Partition into non-contiguous parts */
  174. matrix_filter_2.filter_func = starpu_matrix_filter_vertical_block;
  175. matrix_filter_2.nchildren = nblocks;
  176. /* A is in FORTRAN ordering, starpu_data_get_sub_data(A_handle, 2, i,
  177. * j) designates the block in column i and row j. */
  178. starpu_data_map_filters(A_handle, 2, &matrix_filter_1, &matrix_filter_2);
  179. /*
  180. * Partition the vectors
  181. */
  182. vector_filter.filter_func = starpu_vector_filter_block;
  183. vector_filter.nchildren = nblocks;
  184. starpu_data_partition(b_handle, &vector_filter);
  185. starpu_data_partition(x_handle, &vector_filter);
  186. starpu_data_partition(r_handle, &vector_filter);
  187. starpu_data_partition(d_handle, &vector_filter);
  188. starpu_data_partition(q_handle, &vector_filter);
  189. }
  190. /*
  191. * Debug
  192. */
  193. #if 0
  194. static void display_vector(starpu_data_handle_t handle, TYPE *ptr)
  195. {
  196. unsigned block_size = n / nblocks;
  197. unsigned b, ind;
  198. for (b = 0; b < nblocks; b++)
  199. {
  200. starpu_data_acquire(starpu_data_get_sub_data(handle, 1, b), STARPU_R);
  201. for (ind = 0; ind < block_size; ind++)
  202. {
  203. FPRINTF(stderr, "%2.2e ", ptr[b*block_size + ind]);
  204. }
  205. FPRINTF(stderr, "| ");
  206. starpu_data_release(starpu_data_get_sub_data(handle, 1, b));
  207. }
  208. FPRINTF(stderr, "\n");
  209. }
  210. static void display_matrix(void)
  211. {
  212. unsigned i, j;
  213. for (i = 0; i < n; i++)
  214. {
  215. for (j = 0; j < n; j++)
  216. {
  217. FPRINTF(stderr, "%2.2e ", A[j*n + i]);
  218. }
  219. FPRINTF(stderr, "\n");
  220. }
  221. }
  222. #endif
  223. /*
  224. * Main loop
  225. */
  226. static int cg(void)
  227. {
  228. double delta_new, delta_old, delta_0;
  229. double alpha, beta;
  230. int i = 0;
  231. int ret;
  232. /* r <- b */
  233. ret = copy_handle(r_handle, b_handle, nblocks);
  234. if (ret == -ENODEV) return ret;
  235. /* r <- r - A x */
  236. ret = gemv_kernel(r_handle, A_handle, x_handle, 1.0, -1.0, nblocks, use_reduction);
  237. if (ret == -ENODEV) return ret;
  238. /* d <- r */
  239. ret = copy_handle(d_handle, r_handle, nblocks);
  240. if (ret == -ENODEV) return ret;
  241. /* delta_new = dot(r,r) */
  242. ret = dot_kernel(r_handle, r_handle, rtr_handle, nblocks, use_reduction);
  243. if (ret == -ENODEV) return ret;
  244. starpu_data_acquire(rtr_handle, STARPU_R);
  245. delta_new = rtr;
  246. delta_0 = delta_new;
  247. starpu_data_release(rtr_handle);
  248. FPRINTF(stderr, "*************** INITIAL ************ \n");
  249. FPRINTF(stderr, "Delta 0: %e\n", delta_new);
  250. double start;
  251. double end;
  252. start = starpu_timing_now();
  253. while ((i < i_max) && ((double)delta_new > (double)(eps*eps*delta_0)))
  254. {
  255. /* q <- A d */
  256. gemv_kernel(q_handle, A_handle, d_handle, 0.0, 1.0, nblocks, use_reduction);
  257. /* dtq <- dot(d,q) */
  258. dot_kernel(d_handle, q_handle, dtq_handle, nblocks, use_reduction);
  259. /* alpha = delta_new / dtq */
  260. starpu_data_acquire(dtq_handle, STARPU_R);
  261. alpha = delta_new/dtq;
  262. starpu_data_release(dtq_handle);
  263. /* x <- x + alpha d */
  264. axpy_kernel(x_handle, d_handle, alpha, nblocks);
  265. if ((i % 50) == 0)
  266. {
  267. /* r <- b */
  268. copy_handle(r_handle, b_handle, nblocks);
  269. /* r <- r - A x */
  270. gemv_kernel(r_handle, A_handle, x_handle, 1.0, -1.0, nblocks, use_reduction);
  271. }
  272. else
  273. {
  274. /* r <- r - alpha q */
  275. axpy_kernel(r_handle, q_handle, -alpha, nblocks);
  276. }
  277. /* delta_new = dot(r,r) */
  278. dot_kernel(r_handle, r_handle, rtr_handle, nblocks, use_reduction);
  279. starpu_data_acquire(rtr_handle, STARPU_R);
  280. delta_old = delta_new;
  281. delta_new = rtr;
  282. beta = delta_new / delta_old;
  283. starpu_data_release(rtr_handle);
  284. /* d <- beta d + r */
  285. scal_axpy_kernel(d_handle, beta, r_handle, 1.0, nblocks);
  286. if ((i % 10) == 0)
  287. {
  288. /* We here take the error as ||r||_2 / (n||b||_2) */
  289. double error = sqrt(delta_new/delta_0)/(1.0*n);
  290. FPRINTF(stderr, "*****************************************\n");
  291. FPRINTF(stderr, "iter %d DELTA %e - %e\n", i, delta_new, error);
  292. }
  293. i++;
  294. }
  295. end = starpu_timing_now();
  296. double timing = end - start;
  297. FPRINTF(stderr, "Total timing : %2.2f seconds\n", timing/10e6);
  298. FPRINTF(stderr, "Seconds per iteration : %2.2e\n", timing/10e6/i);
  299. return 0;
  300. }
  301. static int check(void)
  302. {
  303. return 0;
  304. }
  305. static void parse_args(int argc, char **argv)
  306. {
  307. int i;
  308. for (i = 1; i < argc; i++)
  309. {
  310. if (strcmp(argv[i], "-n") == 0)
  311. {
  312. n = (int long long)atoi(argv[++i]);
  313. continue;
  314. }
  315. if (strcmp(argv[i], "-maxiter") == 0)
  316. {
  317. i_max = atoi(argv[++i]);
  318. continue;
  319. }
  320. if (strcmp(argv[i], "-nblocks") == 0)
  321. {
  322. nblocks = atoi(argv[++i]);
  323. continue;
  324. }
  325. if (strcmp(argv[i], "-no-reduction") == 0)
  326. {
  327. use_reduction = 0;
  328. continue;
  329. }
  330. if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0 || strcmp(argv[i], "-help") == 0)
  331. {
  332. FPRINTF(stderr, "usage: %s [-h] [-nblocks #blocks] [-n problem_size] [-no-reduction] [-maxiter i]\n", argv[0]);
  333. exit(-1);
  334. continue;
  335. }
  336. }
  337. }
  338. int main(int argc, char **argv)
  339. {
  340. int ret;
  341. /* Not supported yet */
  342. if (starpu_get_env_number_default("STARPU_GLOBAL_ARBITER", 0) > 0)
  343. return 77;
  344. #ifdef STARPU_QUICK_CHECK
  345. i_max = 16;
  346. #endif
  347. parse_args(argc, argv);
  348. ret = starpu_init(NULL);
  349. if (ret == -ENODEV)
  350. return 77;
  351. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  352. starpu_cublas_init();
  353. generate_random_problem();
  354. register_data();
  355. partition_data();
  356. ret = cg();
  357. if (ret == -ENODEV)
  358. {
  359. ret = 77;
  360. goto enodev;
  361. }
  362. ret = check();
  363. starpu_task_wait_for_all();
  364. enodev:
  365. unregister_data();
  366. free_data();
  367. starpu_cublas_shutdown();
  368. starpu_shutdown();
  369. return ret;
  370. }