cholesky.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2012 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011, 2012 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. #ifndef __DW_CHOLESKY_H__
  18. #define __DW_CHOLESKY_H__
  19. #include <limits.h>
  20. #include <string.h>
  21. #include <math.h>
  22. #include <sys/time.h>
  23. #ifdef STARPU_USE_CUDA
  24. #include <cuda.h>
  25. #include <cuda_runtime.h>
  26. #include <cublas.h>
  27. #endif
  28. #include <common/blas.h>
  29. #include <starpu.h>
  30. #define FPRINTF(ofile, fmt, args ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ##args); }} while(0)
  31. #define NMAXBLOCKS 32
  32. #define TAG11(k) ((starpu_tag_t)( (1ULL<<60) | (unsigned long long)(k)))
  33. #define TAG21(k,j) ((starpu_tag_t)(((3ULL<<60) | (((unsigned long long)(k))<<32) \
  34. | (unsigned long long)(j))))
  35. #define TAG22(k,i,j) ((starpu_tag_t)(((4ULL<<60) | ((unsigned long long)(k)<<32) \
  36. | ((unsigned long long)(i)<<16) \
  37. | (unsigned long long)(j))))
  38. #define TAG11_AUX(k, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) | (1ULL<<56) | (unsigned long long)(k)))
  39. #define TAG21_AUX(k,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  40. | ((3ULL<<56) | (((unsigned long long)(k))<<32) \
  41. | (unsigned long long)(j))))
  42. #define TAG22_AUX(k,i,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  43. | ((4ULL<<56) | ((unsigned long long)(k)<<32) \
  44. | ((unsigned long long)(i)<<16) \
  45. | (unsigned long long)(j))))
  46. #define BLOCKSIZE (size/nblocks)
  47. #define BLAS3_FLOP(n1,n2,n3) \
  48. (2*((uint64_t)n1)*((uint64_t)n2)*((uint64_t)n3))
  49. static unsigned size = 4*1024;
  50. static unsigned nblocks = 16;
  51. static unsigned nbigblocks = 8;
  52. static unsigned pinned = 1;
  53. static unsigned noprio = 0;
  54. static unsigned check = 0;
  55. static unsigned bound = 0;
  56. static unsigned bound_deps = 0;
  57. static unsigned bound_lp = 0;
  58. static unsigned with_ctxs = 0;
  59. static unsigned with_noctxs = 0;
  60. static unsigned chole1 = 0;
  61. static unsigned chole2 = 0;
  62. void chol_cpu_codelet_update_u11(void **, void *);
  63. void chol_cpu_codelet_update_u21(void **, void *);
  64. void chol_cpu_codelet_update_u22(void **, void *);
  65. #ifdef STARPU_USE_CUDA
  66. void chol_cublas_codelet_update_u11(void *descr[], void *_args);
  67. void chol_cublas_codelet_update_u21(void *descr[], void *_args);
  68. void chol_cublas_codelet_update_u22(void *descr[], void *_args);
  69. #endif
  70. extern struct starpu_perfmodel chol_model_11;
  71. extern struct starpu_perfmodel chol_model_21;
  72. extern struct starpu_perfmodel chol_model_22;
  73. static void __attribute__((unused)) parse_args(int argc, char **argv)
  74. {
  75. int i;
  76. for (i = 1; i < argc; i++)
  77. {
  78. if (strcmp(argv[i], "-with_ctxs") == 0)
  79. {
  80. with_ctxs = 1;
  81. break;
  82. }
  83. if (strcmp(argv[i], "-with_noctxs") == 0)
  84. {
  85. with_noctxs = 1;
  86. break;
  87. }
  88. if (strcmp(argv[i], "-chole1") == 0)
  89. {
  90. chole1 = 1;
  91. break;
  92. }
  93. if (strcmp(argv[i], "-chole2") == 0)
  94. {
  95. chole2 = 1;
  96. break;
  97. }
  98. if (strcmp(argv[i], "-size") == 0)
  99. {
  100. char *argptr;
  101. size = strtol(argv[++i], &argptr, 10);
  102. }
  103. if (strcmp(argv[i], "-nblocks") == 0)
  104. {
  105. char *argptr;
  106. nblocks = strtol(argv[++i], &argptr, 10);
  107. }
  108. if (strcmp(argv[i], "-nbigblocks") == 0)
  109. {
  110. char *argptr;
  111. nbigblocks = strtol(argv[++i], &argptr, 10);
  112. }
  113. if (strcmp(argv[i], "-no-pin") == 0)
  114. {
  115. pinned = 0;
  116. }
  117. if (strcmp(argv[i], "-no-prio") == 0)
  118. {
  119. noprio = 1;
  120. }
  121. if (strcmp(argv[i], "-bound") == 0)
  122. {
  123. bound = 1;
  124. }
  125. if (strcmp(argv[i], "-bound-lp") == 0)
  126. {
  127. bound_lp = 1;
  128. }
  129. if (strcmp(argv[i], "-bound-deps") == 0)
  130. {
  131. bound_deps = 1;
  132. }
  133. if (strcmp(argv[i], "-check") == 0)
  134. {
  135. check = 1;
  136. }
  137. if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i],"--help") == 0)
  138. {
  139. fprintf(stderr,"usage : %s [-size size] [-nblocks nblocks] [-no-pin] [-no-prio] [-bound] [-bound-deps] [-bound-lp] [-check]\n", argv[0]);
  140. fprintf(stderr,"Currently selected: %ux%u and %ux%u blocks\n", size, size, nblocks, nblocks);
  141. }
  142. }
  143. }
  144. #endif /* __DW_CHOLESKY_H__ */