cholesky.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009, 2010, 2011 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. #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 NMAXBLOCKS 32
  31. #define TAG11(k) ((starpu_tag_t)( (1ULL<<60) | (unsigned long long)(k)))
  32. #define TAG21(k,j) ((starpu_tag_t)(((3ULL<<60) | (((unsigned long long)(k))<<32) \
  33. | (unsigned long long)(j))))
  34. #define TAG22(k,i,j) ((starpu_tag_t)(((4ULL<<60) | ((unsigned long long)(k)<<32) \
  35. | ((unsigned long long)(i)<<16) \
  36. | (unsigned long long)(j))))
  37. #define TAG11_AUX(k, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) | (1ULL<<56) | (unsigned long long)(k)))
  38. #define TAG21_AUX(k,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  39. | ((3ULL<<56) | (((unsigned long long)(k))<<32) \
  40. | (unsigned long long)(j))))
  41. #define TAG22_AUX(k,i,j, prefix) ((starpu_tag_t)( (((unsigned long long)(prefix))<<60) \
  42. | ((4ULL<<56) | ((unsigned long long)(k)<<32) \
  43. | ((unsigned long long)(i)<<16) \
  44. | (unsigned long long)(j))))
  45. #define BLOCKSIZE (size/nblocks)
  46. #define BLAS3_FLOP(n1,n2,n3) \
  47. (2*((uint64_t)n1)*((uint64_t)n2)*((uint64_t)n3))
  48. //static unsigned size = 4*1024;
  49. //static unsigned nblocks = 16;
  50. static unsigned nbigblocks = 8;
  51. static unsigned pinned = 0;
  52. static unsigned noprio = 0;
  53. static unsigned check = 0;
  54. void chol_cpu_codelet_update_u11(void **, void *);
  55. void chol_cpu_codelet_update_u21(void **, void *);
  56. void chol_cpu_codelet_update_u22(void **, void *);
  57. #ifdef STARPU_USE_CUDA
  58. void chol_cublas_codelet_update_u11(void *descr[], void *_args);
  59. void chol_cublas_codelet_update_u21(void *descr[], void *_args);
  60. void chol_cublas_codelet_update_u22(void *descr[], void *_args);
  61. #endif
  62. int run_cholesky_grain_tag(struct starpu_sched_ctx *sched_ctx, int argc, char **argv);
  63. double run_cholesky_implicit(struct starpu_sched_ctx *sched_ctx, int argc, char **argv, double *timing, pthread_barrier_t *barrier);
  64. int run_cholesky_tag(struct starpu_sched_ctx *sched_ctx, int argc, char **argv);
  65. double run_cholesky_tile_tag(struct starpu_sched_ctx *sched_ctx, int argc, char **argv);
  66. extern struct starpu_perfmodel_t chol_model_11;
  67. extern struct starpu_perfmodel_t chol_model_21;
  68. extern struct starpu_perfmodel_t chol_model_22;
  69. static void __attribute__((unused)) parse_args(int argc, char **argv, unsigned *size, unsigned *nblocks)
  70. {
  71. int i;
  72. for (i = 1; i < argc; i++) {
  73. if (strcmp(argv[i], "-size") == 0) {
  74. char *argptr;
  75. (*size) = strtol(argv[++i], &argptr, 10);
  76. }
  77. if (strcmp(argv[i], "-nblocks") == 0) {
  78. char *argptr;
  79. (*nblocks) = strtol(argv[++i], &argptr, 10);
  80. }
  81. if (strcmp(argv[i], "-nbigblocks") == 0) {
  82. char *argptr;
  83. nbigblocks = strtol(argv[++i], &argptr, 10);
  84. }
  85. if (strcmp(argv[i], "-pin") == 0) {
  86. pinned = 1;
  87. }
  88. if (strcmp(argv[i], "-no-prio") == 0) {
  89. noprio = 1;
  90. }
  91. if (strcmp(argv[i], "-check") == 0) {
  92. check = 1;
  93. }
  94. if (strcmp(argv[i], "-h") == 0) {
  95. printf("usage : %s [-pin] [-size size] [-nblocks nblocks] [-check]\n", argv[0]);
  96. }
  97. }
  98. }
  99. #endif // __DW_CHOLESKY_H__