xlu_pivot.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. /*
  2. * StarPU
  3. * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
  4. *
  5. * This program 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. * This program 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 "xlu.h"
  17. #include "xlu_kernels.h"
  18. #define TAG11(k) ((starpu_tag_t)( (1ULL<<60) | (unsigned long long)(k)))
  19. #define TAG12(k,i) ((starpu_tag_t)(((2ULL<<60) | (((unsigned long long)(k))<<32) \
  20. | (unsigned long long)(i))))
  21. #define TAG21(k,j) ((starpu_tag_t)(((3ULL<<60) | (((unsigned long long)(k))<<32) \
  22. | (unsigned long long)(j))))
  23. #define TAG22(k,i,j) ((starpu_tag_t)(((4ULL<<60) | ((unsigned long long)(k)<<32) \
  24. | ((unsigned long long)(i)<<16) \
  25. | (unsigned long long)(j))))
  26. #define PIVOT(k,i) ((starpu_tag_t)(((5ULL<<60) | (((unsigned long long)(k))<<32) \
  27. | (unsigned long long)(i))))
  28. static unsigned no_prio = 0;
  29. /*
  30. * Construct the DAG
  31. */
  32. static struct starpu_task *create_task(starpu_tag_t id)
  33. {
  34. struct starpu_task *task = starpu_task_create();
  35. task->cl_arg = NULL;
  36. task->use_tag = 1;
  37. task->tag_id = id;
  38. return task;
  39. }
  40. static void create_task_pivot(starpu_data_handle *dataAp, unsigned nblocks,
  41. struct piv_s *piv_description,
  42. unsigned k, unsigned i,
  43. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  44. {
  45. struct starpu_task *task = create_task(PIVOT(k, i));
  46. task->cl = &cl_pivot;
  47. /* which sub-data is manipulated ? */
  48. task->buffers[0].handle = get_block(dataAp, nblocks, k, i);
  49. task->buffers[0].mode = STARPU_RW;
  50. task->cl_arg = &piv_description[k];
  51. /* this is an important task */
  52. if (!no_prio && (i == k+1))
  53. task->priority = STARPU_MAX_PRIO;
  54. /* enforce dependencies ... */
  55. if (k == 0) {
  56. starpu_tag_declare_deps(PIVOT(k, i), 1, TAG11(k));
  57. }
  58. else
  59. {
  60. if (i > k) {
  61. starpu_tag_declare_deps(PIVOT(k, i), 2, TAG11(k), TAG22(k-1, i, k));
  62. }
  63. else {
  64. starpu_tag_t *tags = malloc((nblocks - k)*sizeof(starpu_tag_t));
  65. tags[0] = TAG11(k);
  66. unsigned ind, ind2;
  67. for (ind = k + 1, ind2 = 0; ind < nblocks; ind++, ind2++)
  68. {
  69. tags[1 + ind2] = TAG22(k-1, ind, k);
  70. }
  71. /* perhaps we could do better ... :/ */
  72. starpu_tag_declare_deps_array(PIVOT(k, i), (nblocks-k), tags);
  73. }
  74. }
  75. starpu_task_submit(task);
  76. }
  77. static struct starpu_task *create_task_11_pivot(starpu_data_handle *dataAp, unsigned nblocks,
  78. unsigned k, struct piv_s *piv_description,
  79. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  80. {
  81. struct starpu_task *task = create_task(TAG11(k));
  82. task->cl = &cl11_pivot;
  83. task->cl_arg = &piv_description[k];
  84. /* which sub-data is manipulated ? */
  85. task->buffers[0].handle = get_block(dataAp, nblocks, k, k);
  86. task->buffers[0].mode = STARPU_RW;
  87. /* this is an important task */
  88. if (!no_prio)
  89. task->priority = STARPU_MAX_PRIO;
  90. /* enforce dependencies ... */
  91. if (k > 0) {
  92. starpu_tag_declare_deps(TAG11(k), 1, TAG22(k-1, k, k));
  93. }
  94. return task;
  95. }
  96. static void create_task_12(starpu_data_handle *dataAp, unsigned nblocks, unsigned k, unsigned j,
  97. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  98. {
  99. // printf("task 12 k,i = %d,%d TAG = %llx\n", k,i, TAG12(k,i));
  100. struct starpu_task *task = create_task(TAG12(k, j));
  101. task->cl = &cl12;
  102. task->cl_arg = (void *)(task->tag_id);
  103. /* which sub-data is manipulated ? */
  104. task->buffers[0].handle = get_block(dataAp, nblocks, k, k);
  105. task->buffers[0].mode = STARPU_R;
  106. task->buffers[1].handle = get_block(dataAp, nblocks, j, k);
  107. task->buffers[1].mode = STARPU_RW;
  108. if (!no_prio && (j == k+1)) {
  109. task->priority = STARPU_MAX_PRIO;
  110. }
  111. /* enforce dependencies ... */
  112. #if 0
  113. starpu_tag_declare_deps(TAG12(k, i), 1, PIVOT(k, i));
  114. #endif
  115. if (k > 0) {
  116. starpu_tag_declare_deps(TAG12(k, j), 2, TAG11(k), TAG22(k-1, k, j));
  117. }
  118. else {
  119. starpu_tag_declare_deps(TAG12(k, j), 1, TAG11(k));
  120. }
  121. starpu_task_submit(task);
  122. }
  123. static void create_task_21(starpu_data_handle *dataAp, unsigned nblocks, unsigned k, unsigned i,
  124. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  125. {
  126. struct starpu_task *task = create_task(TAG21(k, i));
  127. task->cl = &cl21;
  128. /* which sub-data is manipulated ? */
  129. task->buffers[0].handle = get_block(dataAp, nblocks, k, k);
  130. task->buffers[0].mode = STARPU_R;
  131. task->buffers[1].handle = get_block(dataAp, nblocks, k, i);
  132. task->buffers[1].mode = STARPU_RW;
  133. if (!no_prio && (i == k+1)) {
  134. task->priority = STARPU_MAX_PRIO;
  135. }
  136. task->cl_arg = (void *)(task->tag_id);
  137. /* enforce dependencies ... */
  138. starpu_tag_declare_deps(TAG21(k, i), 1, PIVOT(k, i));
  139. starpu_task_submit(task);
  140. }
  141. static void create_task_22(starpu_data_handle *dataAp, unsigned nblocks, unsigned k, unsigned i, unsigned j,
  142. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  143. {
  144. // printf("task 22 k,i,j = %d,%d,%d TAG = %llx\n", k,i,j, TAG22(k,i,j));
  145. struct starpu_task *task = create_task(TAG22(k, i, j));
  146. task->cl = &cl22;
  147. task->cl_arg = (void *)(task->tag_id);
  148. /* which sub-data is manipulated ? */
  149. task->buffers[0].handle = get_block(dataAp, nblocks, k, i); /* produced by TAG21(k, i) */
  150. task->buffers[0].mode = STARPU_R;
  151. task->buffers[1].handle = get_block(dataAp, nblocks, j, k); /* produced by TAG12(k, j) */
  152. task->buffers[1].mode = STARPU_R;
  153. task->buffers[2].handle = get_block(dataAp, nblocks, j, i); /* produced by TAG22(k-1, i, j) */
  154. task->buffers[2].mode = STARPU_RW;
  155. if (!no_prio && (i == k + 1) && (j == k +1) ) {
  156. task->priority = STARPU_MAX_PRIO;
  157. }
  158. /* enforce dependencies ... */
  159. if (k > 0) {
  160. starpu_tag_declare_deps(TAG22(k, i, j), 3, TAG22(k-1, i, j), TAG12(k, j), TAG21(k, i));
  161. }
  162. else {
  163. starpu_tag_declare_deps(TAG22(k, i, j), 2, TAG12(k, j), TAG21(k, i));
  164. }
  165. starpu_task_submit(task);
  166. }
  167. /*
  168. * code to bootstrap the factorization
  169. */
  170. static double dw_codelet_facto_pivot(starpu_data_handle *dataAp,
  171. struct piv_s *piv_description,
  172. unsigned nblocks,
  173. starpu_data_handle (* get_block)(starpu_data_handle *, unsigned, unsigned, unsigned))
  174. {
  175. struct timeval start;
  176. struct timeval end;
  177. struct starpu_task *entry_task = NULL;
  178. /* create all the DAG nodes */
  179. unsigned i,j,k;
  180. for (k = 0; k < nblocks; k++)
  181. {
  182. struct starpu_task *task = create_task_11_pivot(dataAp, nblocks, k, piv_description, get_block);
  183. /* we defer the launch of the first task */
  184. if (k == 0) {
  185. entry_task = task;
  186. }
  187. else {
  188. starpu_task_submit(task);
  189. }
  190. for (i = 0; i < nblocks; i++)
  191. {
  192. if (i != k)
  193. create_task_pivot(dataAp, nblocks, piv_description, k, i, get_block);
  194. }
  195. for (i = k+1; i<nblocks; i++)
  196. {
  197. create_task_12(dataAp, nblocks, k, i, get_block);
  198. create_task_21(dataAp, nblocks, k, i, get_block);
  199. }
  200. for (i = k+1; i<nblocks; i++)
  201. {
  202. for (j = k+1; j<nblocks; j++)
  203. {
  204. create_task_22(dataAp, nblocks, k, i, j, get_block);
  205. }
  206. }
  207. }
  208. /* we wait the last task (TAG11(nblocks - 1)) and all the pivot tasks */
  209. starpu_tag_t *tags = malloc(nblocks*nblocks*sizeof(starpu_tag_t));
  210. unsigned ndeps = 0;
  211. tags[ndeps++] = TAG11(nblocks - 1);
  212. for (j = 0; j < nblocks; j++)
  213. {
  214. for (i = 0; i < j; i++)
  215. {
  216. tags[ndeps++] = PIVOT(j, i);
  217. }
  218. }
  219. /* schedule the codelet */
  220. gettimeofday(&start, NULL);
  221. int ret = starpu_task_submit(entry_task);
  222. if (STARPU_UNLIKELY(ret == -ENODEV))
  223. {
  224. fprintf(stderr, "No worker may execute this task\n");
  225. exit(-1);
  226. }
  227. /* stall the application until the end of computations */
  228. starpu_tag_wait_array(ndeps, tags);
  229. // starpu_task_wait_for_all();
  230. gettimeofday(&end, NULL);
  231. double timing = (double)((end.tv_sec - start.tv_sec)*1000000 + (end.tv_usec - start.tv_usec));
  232. return timing;
  233. }
  234. starpu_data_handle get_block_with_striding(starpu_data_handle *dataAp,
  235. unsigned nblocks __attribute__((unused)), unsigned j, unsigned i)
  236. {
  237. /* we use filters */
  238. return starpu_data_get_sub_data(*dataAp, 2, j, i);
  239. }
  240. void STARPU_LU(lu_decomposition_pivot)(TYPE *matA, unsigned *ipiv, unsigned size, unsigned ld, unsigned nblocks)
  241. {
  242. starpu_data_handle dataA;
  243. /* monitor and partition the A matrix into blocks :
  244. * one block is now determined by 2 unsigned (i,j) */
  245. starpu_matrix_data_register(&dataA, 0, (uintptr_t)matA, ld, size, size, sizeof(TYPE));
  246. /* We already enforce deps by hand */
  247. starpu_data_set_sequential_consistency_flag(dataA, 0);
  248. struct starpu_data_filter f;
  249. f.filter_func = starpu_vertical_block_filter_func;
  250. f.filter_arg = nblocks;
  251. struct starpu_data_filter f2;
  252. f2.filter_func = starpu_block_filter_func;
  253. f2.filter_arg = nblocks;
  254. starpu_data_map_filters(dataA, 2, &f, &f2);
  255. unsigned i;
  256. for (i = 0; i < size; i++)
  257. ipiv[i] = i;
  258. struct piv_s *piv_description = malloc(nblocks*sizeof(struct piv_s));
  259. unsigned block;
  260. for (block = 0; block < nblocks; block++)
  261. {
  262. piv_description[block].piv = ipiv;
  263. piv_description[block].first = block * (size / nblocks);
  264. piv_description[block].last = (block + 1) * (size / nblocks);
  265. }
  266. #if 0
  267. unsigned j;
  268. for (j = 0; j < nblocks; j++)
  269. for (i = 0; i < nblocks; i++)
  270. {
  271. printf("BLOCK %d %d %p\n", i, j, &matA[i*(size/nblocks) + j * (size/nblocks)*ld]);
  272. }
  273. #endif
  274. double timing;
  275. timing = dw_codelet_facto_pivot(&dataA, piv_description, nblocks, get_block_with_striding);
  276. fprintf(stderr, "Computation took (in ms)\n");
  277. fprintf(stderr, "%2.2f\n", timing/1000);
  278. unsigned n = starpu_matrix_get_nx(dataA);
  279. double flop = (2.0f*n*n*n)/3.0f;
  280. fprintf(stderr, "Synthetic GFlops : %2.2f\n", (flop/timing/1000.0f));
  281. /* gather all the data */
  282. starpu_data_unpartition(dataA, 0);
  283. }
  284. starpu_data_handle get_block_with_no_striding(starpu_data_handle *dataAp, unsigned nblocks, unsigned j, unsigned i)
  285. {
  286. /* dataAp is an array of data handle */
  287. return dataAp[i+j*nblocks];
  288. }
  289. void STARPU_LU(lu_decomposition_pivot_no_stride)(TYPE **matA, unsigned *ipiv, unsigned size, unsigned ld, unsigned nblocks)
  290. {
  291. starpu_data_handle *dataAp = malloc(nblocks*nblocks*sizeof(starpu_data_handle));
  292. /* monitor and partition the A matrix into blocks :
  293. * one block is now determined by 2 unsigned (i,j) */
  294. unsigned bi, bj;
  295. for (bj = 0; bj < nblocks; bj++)
  296. for (bi = 0; bi < nblocks; bi++)
  297. {
  298. starpu_matrix_data_register(&dataAp[bi+nblocks*bj], 0,
  299. (uintptr_t)matA[bi+nblocks*bj], size/nblocks,
  300. size/nblocks, size/nblocks, sizeof(TYPE));
  301. /* We already enforce deps by hand */
  302. starpu_data_set_sequential_consistency_flag(dataAp[bi+nblocks*bj], 0);
  303. }
  304. unsigned i;
  305. for (i = 0; i < size; i++)
  306. ipiv[i] = i;
  307. struct piv_s *piv_description = malloc(nblocks*sizeof(struct piv_s));
  308. unsigned block;
  309. for (block = 0; block < nblocks; block++)
  310. {
  311. piv_description[block].piv = ipiv;
  312. piv_description[block].first = block * (size / nblocks);
  313. piv_description[block].last = (block + 1) * (size / nblocks);
  314. }
  315. double timing;
  316. timing = dw_codelet_facto_pivot(dataAp, piv_description, nblocks, get_block_with_no_striding);
  317. fprintf(stderr, "Computation took (in ms)\n");
  318. fprintf(stderr, "%2.2f\n", timing/1000);
  319. unsigned n = starpu_matrix_get_nx(dataAp[0])*nblocks;
  320. double flop = (2.0f*n*n*n)/3.0f;
  321. fprintf(stderr, "Synthetic GFlops : %2.2f\n", (flop/timing/1000.0f));
  322. for (bj = 0; bj < nblocks; bj++)
  323. for (bi = 0; bi < nblocks; bi++)
  324. {
  325. starpu_data_unregister(dataAp[bi+nblocks*bj]);
  326. }
  327. }