cholesky.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2011-2013 Inria
  4. * Copyright (C) 2010-2013,2015,2017 CNRS
  5. * Copyright (C) 2009-2011,2013-2014 Université de Bordeaux
  6. *
  7. * StarPU is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as published by
  9. * the Free Software Foundation; either version 2.1 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * StarPU is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. *
  16. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. */
  18. #ifndef __DW_CHOLESKY_H__
  19. #define __DW_CHOLESKY_H__
  20. #include <limits.h>
  21. #include <string.h>
  22. #include <math.h>
  23. #include <sys/time.h>
  24. #ifdef STARPU_USE_CUDA
  25. #include <cuda.h>
  26. #include <cuda_runtime.h>
  27. #include <cublas.h>
  28. #endif
  29. #include <common/blas.h>
  30. #include <starpu.h>
  31. #include <starpu_bound.h>
  32. #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
  33. #define NMAXBLOCKS 32
  34. #define TAG11(k) ((starpu_tag_t)( (1ULL<<60) | (unsigned long long)(k)))
  35. #define TAG21(k,j) ((starpu_tag_t)(((3ULL<<60) | (((unsigned long long)(k))<<32) \
  36. | (unsigned long long)(j))))
  37. #define TAG22(k,i,j) ((starpu_tag_t)(((4ULL<<60) | ((unsigned long long)(k)<<32) \
  38. | ((unsigned long long)(i)<<16) \
  39. | (unsigned long long)(j))))
  40. #define TAG11_AUX(k, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) | (1ULL<<56) | (unsigned long long)(k)))
  41. #define TAG21_AUX(k,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  42. | ((3ULL<<56) | (((unsigned long long)(k))<<32) \
  43. | (unsigned long long)(j))))
  44. #define TAG22_AUX(k,i,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  45. | ((4ULL<<56) | ((unsigned long long)(k)<<32) \
  46. | ((unsigned long long)(i)<<16) \
  47. | (unsigned long long)(j))))
  48. #define BLOCKSIZE (size/nblocks)
  49. #define BLAS3_FLOP(n1,n2,n3) \
  50. (2*((uint64_t)n1)*((uint64_t)n2)*((uint64_t)n3))
  51. static unsigned size = 4*1024;
  52. static unsigned nblocks = 16;
  53. static unsigned nbigblocks = 8;
  54. static unsigned pinned = 0;
  55. static unsigned noprio = 0;
  56. static unsigned check = 0;
  57. static unsigned bound = 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. double cpu_chol_task_11_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  66. double cpu_chol_task_21_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  67. double cpu_chol_task_22_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  68. #ifdef STARPU_USE_CUDA
  69. void chol_cublas_codelet_update_u11(void *descr[], void *_args);
  70. void chol_cublas_codelet_update_u21(void *descr[], void *_args);
  71. void chol_cublas_codelet_update_u22(void *descr[], void *_args);
  72. double cuda_chol_task_11_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  73. double cuda_chol_task_21_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  74. double cuda_chol_task_22_cost(struct starpu_task *task, struct starpu_perfmodel_arch* arch, unsigned nimpl);
  75. #endif
  76. void initialize_chol_model(struct starpu_perfmodel* model, char* symbol,
  77. double (*cpu_cost_function)(struct starpu_task *, struct starpu_perfmodel_arch*, unsigned),
  78. double (*cuda_cost_function)(struct starpu_task *, struct starpu_perfmodel_arch*, unsigned));
  79. static void parse_args(int argc, char **argv)
  80. {
  81. int i;
  82. for (i = 1; i < argc; i++)
  83. {
  84. if (strcmp(argv[i], "-with_ctxs") == 0)
  85. {
  86. with_ctxs = 1;
  87. break;
  88. }
  89. if (strcmp(argv[i], "-with_noctxs") == 0)
  90. {
  91. with_noctxs = 1;
  92. break;
  93. }
  94. if (strcmp(argv[i], "-chole1") == 0)
  95. {
  96. chole1 = 1;
  97. break;
  98. }
  99. if (strcmp(argv[i], "-chole2") == 0)
  100. {
  101. chole2 = 1;
  102. break;
  103. }
  104. if (strcmp(argv[i], "-size") == 0)
  105. {
  106. char *argptr;
  107. size = strtol(argv[++i], &argptr, 10);
  108. }
  109. if (strcmp(argv[i], "-nblocks") == 0)
  110. {
  111. char *argptr;
  112. nblocks = strtol(argv[++i], &argptr, 10);
  113. }
  114. if (strcmp(argv[i], "-nbigblocks") == 0)
  115. {
  116. char *argptr;
  117. nbigblocks = strtol(argv[++i], &argptr, 10);
  118. }
  119. if (strcmp(argv[i], "-pin") == 0)
  120. {
  121. pinned = 1;
  122. }
  123. if (strcmp(argv[i], "-no-prio") == 0)
  124. {
  125. noprio = 1;
  126. }
  127. if (strcmp(argv[i], "-bound") == 0)
  128. {
  129. bound = 1;
  130. }
  131. if (strcmp(argv[i], "-check") == 0)
  132. {
  133. check = 1;
  134. }
  135. if (strcmp(argv[i], "-h") == 0)
  136. {
  137. printf("usage : %s [-pin] [-size size] [-nblocks nblocks] [-check]\n", argv[0]);
  138. }
  139. }
  140. }
  141. #endif /* __DW_CHOLESKY_H__ */