cg.c 10 KB

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