xlu_pivot.c 12 KB

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