xgemm.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2017,2019-2020 Université de Bordeaux
  4. * Copyright (C) 2012,2013 Inria
  5. * Copyright (C) 2017 Erwan Leria
  6. * Copyright (C) 2010 Mehdi Juhoor
  7. * Copyright (C) 2010-2013,2015-2017 CNRS
  8. *
  9. * StarPU is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU Lesser General Public License as published by
  11. * the Free Software Foundation; either version 2.1 of the License, or (at
  12. * your option) any later version.
  13. *
  14. * StarPU is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. *
  18. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  19. */
  20. /*
  21. * Simple parallel GEMM implementation: partition the output matrix in the two
  22. * dimensions, and the input matrices in the corresponding dimension, and
  23. * perform the output computations in parallel.
  24. */
  25. #ifndef TYPE
  26. #error "Do not compile xgemm.c directly, compile sgemm.c or dgemm.c"
  27. #endif
  28. #include <limits.h>
  29. #include <string.h>
  30. #include <unistd.h>
  31. #include <math.h>
  32. #include <sys/types.h>
  33. #include <starpu.h>
  34. #include <starpu_fxt.h>
  35. #include <common/blas.h>
  36. #ifdef STARPU_USE_CUDA
  37. #include <cuda.h>
  38. #include <starpu_cublas_v2.h>
  39. static const TYPE p1 = 1.0;
  40. static const TYPE m1 = -1.0;
  41. static const TYPE v0 = 0.0;
  42. #endif
  43. static unsigned niter = 10;
  44. static unsigned nsleeps = 1;
  45. static unsigned nslicesx = 4;
  46. static unsigned nslicesy = 4;
  47. #if defined(STARPU_QUICK_CHECK) && !defined(STARPU_SIMGRID)
  48. static unsigned xdim = 256;
  49. static unsigned ydim = 256;
  50. static unsigned zdim = 64;
  51. #else
  52. static unsigned xdim = 960*4;
  53. static unsigned ydim = 960*4;
  54. static unsigned zdim = 960*4;
  55. #endif
  56. static unsigned check = 0;
  57. static unsigned bound = 0;
  58. static unsigned print_hostname = 0;
  59. static TYPE *A, *B, *C;
  60. static starpu_data_handle_t A_handle, B_handle, C_handle;
  61. #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
  62. #define PRINTF(fmt, ...) do { if (!getenv("STARPU_SSILENT")) {printf(fmt, ## __VA_ARGS__); fflush(stdout); }} while(0)
  63. static void check_output(void)
  64. {
  65. /* compute C = C - AB */
  66. CPU_GEMM("N", "N", ydim, xdim, zdim, (TYPE)-1.0f, A, ydim, B, zdim, (TYPE)1.0f, C, ydim);
  67. /* make sure C = 0 */
  68. TYPE err;
  69. err = CPU_ASUM(xdim*ydim, C, 1);
  70. if (err < xdim*ydim*0.001)
  71. {
  72. FPRINTF(stderr, "Results are OK\n");
  73. }
  74. else
  75. {
  76. int max;
  77. max = CPU_IAMAX(xdim*ydim, C, 1);
  78. FPRINTF(stderr, "There were errors ... err = %f\n", err);
  79. FPRINTF(stderr, "Max error : %e\n", C[max]);
  80. }
  81. }
  82. static void init_problem_data(void)
  83. {
  84. #ifndef STARPU_SIMGRID
  85. unsigned i,j;
  86. #endif
  87. starpu_malloc_flags((void **)&A, zdim*ydim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  88. starpu_malloc_flags((void **)&B, xdim*zdim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  89. starpu_malloc_flags((void **)&C, xdim*ydim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  90. #ifndef STARPU_SIMGRID
  91. /* fill the A and B matrices */
  92. for (j=0; j < ydim; j++)
  93. {
  94. for (i=0; i < zdim; i++)
  95. {
  96. A[j+i*ydim] = (TYPE)(starpu_drand48());
  97. }
  98. }
  99. for (j=0; j < zdim; j++)
  100. {
  101. for (i=0; i < xdim; i++)
  102. {
  103. B[j+i*zdim] = (TYPE)(starpu_drand48());
  104. }
  105. }
  106. for (j=0; j < ydim; j++)
  107. {
  108. for (i=0; i < xdim; i++)
  109. {
  110. C[j+i*ydim] = (TYPE)(0);
  111. }
  112. }
  113. #endif
  114. }
  115. static void partition_mult_data(void)
  116. {
  117. starpu_matrix_data_register(&A_handle, STARPU_MAIN_RAM, (uintptr_t)A,
  118. ydim, ydim, zdim, sizeof(TYPE));
  119. starpu_matrix_data_register(&B_handle, STARPU_MAIN_RAM, (uintptr_t)B,
  120. zdim, zdim, xdim, sizeof(TYPE));
  121. starpu_matrix_data_register(&C_handle, STARPU_MAIN_RAM, (uintptr_t)C,
  122. ydim, ydim, xdim, sizeof(TYPE));
  123. struct starpu_data_filter vert;
  124. memset(&vert, 0, sizeof(vert));
  125. vert.filter_func = starpu_matrix_filter_vertical_block;
  126. vert.nchildren = nslicesx;
  127. struct starpu_data_filter horiz;
  128. memset(&horiz, 0, sizeof(horiz));
  129. horiz.filter_func = starpu_matrix_filter_block;
  130. horiz.nchildren = nslicesy;
  131. starpu_data_partition(B_handle, &vert);
  132. starpu_data_partition(A_handle, &horiz);
  133. starpu_data_map_filters(C_handle, 2, &vert, &horiz);
  134. }
  135. #ifdef STARPU_USE_CUDA
  136. static void cublas_mult(void *descr[], void *arg)
  137. {
  138. (void)arg;
  139. TYPE *subA = (TYPE *)STARPU_MATRIX_GET_PTR(descr[0]);
  140. TYPE *subB = (TYPE *)STARPU_MATRIX_GET_PTR(descr[1]);
  141. TYPE *subC = (TYPE *)STARPU_MATRIX_GET_PTR(descr[2]);
  142. unsigned nxC = STARPU_MATRIX_GET_NX(descr[2]);
  143. unsigned nyC = STARPU_MATRIX_GET_NY(descr[2]);
  144. unsigned nyA = STARPU_MATRIX_GET_NY(descr[0]);
  145. unsigned ldA = STARPU_MATRIX_GET_LD(descr[0]);
  146. unsigned ldB = STARPU_MATRIX_GET_LD(descr[1]);
  147. unsigned ldC = STARPU_MATRIX_GET_LD(descr[2]);
  148. cublasStatus_t status = CUBLAS_GEMM(starpu_cublas_get_local_handle(),
  149. CUBLAS_OP_N, CUBLAS_OP_N,
  150. nxC, nyC, nyA,
  151. &p1, subA, ldA, subB, ldB,
  152. &v0, subC, ldC);
  153. if (status != CUBLAS_STATUS_SUCCESS)
  154. STARPU_CUBLAS_REPORT_ERROR(status);
  155. }
  156. #endif
  157. void cpu_mult(void *descr[], void *arg)
  158. {
  159. (void)arg;
  160. TYPE *subA = (TYPE *)STARPU_MATRIX_GET_PTR(descr[0]);
  161. TYPE *subB = (TYPE *)STARPU_MATRIX_GET_PTR(descr[1]);
  162. TYPE *subC = (TYPE *)STARPU_MATRIX_GET_PTR(descr[2]);
  163. unsigned nxC = STARPU_MATRIX_GET_NX(descr[2]);
  164. unsigned nyC = STARPU_MATRIX_GET_NY(descr[2]);
  165. unsigned nyA = STARPU_MATRIX_GET_NY(descr[0]);
  166. unsigned ldA = STARPU_MATRIX_GET_LD(descr[0]);
  167. unsigned ldB = STARPU_MATRIX_GET_LD(descr[1]);
  168. unsigned ldC = STARPU_MATRIX_GET_LD(descr[2]);
  169. int worker_size = starpu_combined_worker_get_size();
  170. if (worker_size == 1)
  171. {
  172. /* Sequential CPU task */
  173. CPU_GEMM("N", "N", nxC, nyC, nyA, (TYPE)1.0, subA, ldA, subB, ldB, (TYPE)0.0, subC, ldC);
  174. }
  175. else
  176. {
  177. /* Parallel CPU task */
  178. unsigned rank = starpu_combined_worker_get_rank();
  179. unsigned block_size = (nyC + worker_size - 1)/worker_size;
  180. unsigned new_nyC = STARPU_MIN(nyC, block_size*(rank+1)) - block_size*rank;
  181. STARPU_ASSERT(nyC == STARPU_MATRIX_GET_NY(descr[1]));
  182. TYPE *new_subB = &subB[block_size*rank];
  183. TYPE *new_subC = &subC[block_size*rank];
  184. CPU_GEMM("N", "N", nxC, new_nyC, nyA, (TYPE)1.0, subA, ldA, new_subB, ldB, (TYPE)0.0, new_subC, ldC);
  185. }
  186. }
  187. static struct starpu_perfmodel starpu_gemm_model =
  188. {
  189. .type = STARPU_HISTORY_BASED,
  190. .symbol = STARPU_GEMM_STR(gemm)
  191. };
  192. static struct starpu_codelet cl =
  193. {
  194. .type = STARPU_SEQ, /* changed to STARPU_SPMD if -spmd is passed */
  195. .max_parallelism = INT_MAX,
  196. .cpu_funcs = {cpu_mult},
  197. .cpu_funcs_name = {"cpu_mult"},
  198. #ifdef STARPU_USE_CUDA
  199. .cuda_funcs = {cublas_mult},
  200. #elif defined(STARPU_SIMGRID)
  201. .cuda_funcs = {(void*)1},
  202. #endif
  203. .cuda_flags = {STARPU_CUDA_ASYNC},
  204. .nbuffers = 3,
  205. .modes = {STARPU_R, STARPU_R, STARPU_RW},
  206. .model = &starpu_gemm_model
  207. };
  208. static void parse_args(int argc, char **argv)
  209. {
  210. int i;
  211. for (i = 1; i < argc; i++)
  212. {
  213. if (strcmp(argv[i], "-nblocks") == 0)
  214. {
  215. char *argptr;
  216. nslicesx = strtol(argv[++i], &argptr, 10);
  217. nslicesy = nslicesx;
  218. }
  219. else if (strcmp(argv[i], "-nblocksx") == 0)
  220. {
  221. char *argptr;
  222. nslicesx = strtol(argv[++i], &argptr, 10);
  223. }
  224. else if (strcmp(argv[i], "-nblocksy") == 0)
  225. {
  226. char *argptr;
  227. nslicesy = strtol(argv[++i], &argptr, 10);
  228. }
  229. else if (strcmp(argv[i], "-x") == 0)
  230. {
  231. char *argptr;
  232. xdim = strtol(argv[++i], &argptr, 10);
  233. }
  234. else if (strcmp(argv[i], "-xy") == 0)
  235. {
  236. char *argptr;
  237. xdim = ydim = strtol(argv[++i], &argptr, 10);
  238. }
  239. else if (strcmp(argv[i], "-y") == 0)
  240. {
  241. char *argptr;
  242. ydim = strtol(argv[++i], &argptr, 10);
  243. }
  244. else if (strcmp(argv[i], "-z") == 0)
  245. {
  246. char *argptr;
  247. zdim = strtol(argv[++i], &argptr, 10);
  248. }
  249. else if (strcmp(argv[i], "-size") == 0)
  250. {
  251. char *argptr;
  252. xdim = ydim = zdim = strtol(argv[++i], &argptr, 10);
  253. }
  254. else if (strcmp(argv[i], "-iter") == 0)
  255. {
  256. char *argptr;
  257. niter = strtol(argv[++i], &argptr, 10);
  258. }
  259. else if (strcmp(argv[i], "-nsleeps") == 0)
  260. {
  261. char *argptr;
  262. nsleeps = strtol(argv[++i], &argptr, 10);
  263. }
  264. else if (strcmp(argv[i], "-bound") == 0)
  265. {
  266. bound = 1;
  267. }
  268. else if (strcmp(argv[i], "-hostname") == 0)
  269. {
  270. print_hostname = 1;
  271. }
  272. else if (strcmp(argv[i], "-check") == 0)
  273. {
  274. check = 1;
  275. }
  276. else if (strcmp(argv[i], "-spmd") == 0)
  277. {
  278. cl.type = STARPU_SPMD;
  279. }
  280. else if (strcmp(argv[i], "-help") == 0 || strcmp(argv[i], "--help") == 0 || strcmp(argv[i], "-h") == 0)
  281. {
  282. fprintf(stderr,"Usage: %s [-nblocks n] [-nblocksx x] [-nblocksy y] [-x x] [-y y] [-xy n] [-z z] [-size size] [-iter iter] [-bound] [-check] [-spmd] [-hostname] [-nsleeps nsleeps]\n", argv[0]);
  283. fprintf(stderr,"Currently selected: %ux%u * %ux%u and %ux%u blocks, %u iterations, %u sleeps\n", zdim, ydim, xdim, zdim, nslicesx, nslicesy, niter, nsleeps);
  284. exit(EXIT_SUCCESS);
  285. }
  286. else
  287. {
  288. fprintf(stderr,"Unrecognized option %s", argv[i]);
  289. exit(EXIT_FAILURE);
  290. }
  291. }
  292. }
  293. int main(int argc, char **argv)
  294. {
  295. double start, end;
  296. int ret;
  297. parse_args(argc, argv);
  298. #ifdef STARPU_QUICK_CHECK
  299. niter /= 10;
  300. #endif
  301. starpu_fxt_autostart_profiling(0);
  302. ret = starpu_init(NULL);
  303. if (ret == -ENODEV)
  304. return 77;
  305. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  306. starpu_cublas_init();
  307. init_problem_data();
  308. partition_mult_data();
  309. PRINTF("# ");
  310. if (print_hostname)
  311. PRINTF("node\t");
  312. PRINTF("x\ty\tz\tms\tGFlops");
  313. if (bound)
  314. PRINTF("\tTms\tTGFlops\tTims\tTiGFlops");
  315. PRINTF("\n");
  316. unsigned sleeps;
  317. for (sleeps = 0; sleeps < nsleeps; sleeps++)
  318. {
  319. if (bound)
  320. starpu_bound_start(0, 0);
  321. starpu_fxt_start_profiling();
  322. start = starpu_timing_now();
  323. unsigned x, y, iter;
  324. for (iter = 0; iter < niter; iter++)
  325. {
  326. for (x = 0; x < nslicesx; x++)
  327. for (y = 0; y < nslicesy; y++)
  328. {
  329. struct starpu_task *task = starpu_task_create();
  330. task->cl = &cl;
  331. task->handles[0] = starpu_data_get_sub_data(A_handle, 1, y);
  332. task->handles[1] = starpu_data_get_sub_data(B_handle, 1, x);
  333. task->handles[2] = starpu_data_get_sub_data(C_handle, 2, x, y);
  334. task->flops = 2ULL * (xdim/nslicesx) * (ydim/nslicesy) * zdim;
  335. ret = starpu_task_submit(task);
  336. if (ret == -ENODEV)
  337. {
  338. ret = 77;
  339. goto enodev;
  340. }
  341. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  342. starpu_data_wont_use(starpu_data_get_sub_data(C_handle, 2, x, y));
  343. }
  344. starpu_task_wait_for_all();
  345. }
  346. end = starpu_timing_now();
  347. starpu_fxt_stop_profiling();
  348. if (bound)
  349. starpu_bound_stop();
  350. double timing = end - start;
  351. double min, min_int;
  352. double flops = 2.0*((unsigned long long)niter)*((unsigned long long)xdim)
  353. *((unsigned long long)ydim)*((unsigned long long)zdim);
  354. if (bound)
  355. starpu_bound_compute(&min, &min_int, 1);
  356. if (print_hostname)
  357. {
  358. char hostname[255];
  359. gethostname(hostname, 255);
  360. PRINTF("%s\t", hostname);
  361. }
  362. PRINTF("%u\t%u\t%u\t%.0f\t%.1f", xdim, ydim, zdim, timing/niter/1000.0, flops/timing/1000.0);
  363. if (bound)
  364. PRINTF("\t%.0f\t%.1f\t%.0f\t%.1f", min, flops/min/1000000.0, min_int, flops/min_int/1000000.0);
  365. PRINTF("\n");
  366. if (sleeps < nsleeps-1)
  367. {
  368. sleep(10);
  369. }
  370. }
  371. enodev:
  372. starpu_data_unpartition(C_handle, STARPU_MAIN_RAM);
  373. starpu_data_unpartition(B_handle, STARPU_MAIN_RAM);
  374. starpu_data_unpartition(A_handle, STARPU_MAIN_RAM);
  375. starpu_data_unregister(A_handle);
  376. starpu_data_unregister(B_handle);
  377. starpu_data_unregister(C_handle);
  378. if (check)
  379. check_output();
  380. starpu_free_flags(A, zdim*ydim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  381. starpu_free_flags(B, xdim*zdim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  382. starpu_free_flags(C, xdim*ydim*sizeof(TYPE), STARPU_MALLOC_PINNED|STARPU_MALLOC_SIMULATION_FOLDED);
  383. starpu_cublas_shutdown();
  384. starpu_shutdown();
  385. return ret;
  386. }