parallel_kernels_spmd.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2010 Université de Bordeaux 1
  4. * Copyright (C) 2010, 2011 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 <starpu.h>
  18. #include <limits.h>
  19. #include <unistd.h>
  20. #include "../common/helper.h"
  21. #define N 1000
  22. #define VECTORSIZE 1024
  23. static void codelet_null(void *descr[], __attribute__ ((unused)) void *_args)
  24. {
  25. int worker_size = starpu_combined_worker_get_size();
  26. assert(worker_size > 0);
  27. usleep(1000/worker_size);
  28. #if 0
  29. int id = starpu_worker_get_id();
  30. int combined_id = starpu_combined_worker_get_id();
  31. int rank = starpu_combined_worker_get_rank();
  32. fprintf(stderr, "worker id %d - combined id %d - worker size %d - SPMD rank %d\n", id, combined_id, worker_size, rank);
  33. #endif
  34. }
  35. struct starpu_perfmodel_t model = {
  36. .type = STARPU_HISTORY_BASED,
  37. .symbol = "parallel_kernel_test_spmd"
  38. };
  39. static starpu_codelet cl = {
  40. .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL,
  41. .type = STARPU_SPMD,
  42. .max_parallelism = INT_MAX,
  43. .cpu_func = codelet_null,
  44. .cuda_func = codelet_null,
  45. .opencl_func = codelet_null,
  46. .model = &model,
  47. .nbuffers = 1
  48. };
  49. int main(int argc, char **argv)
  50. {
  51. int ret;
  52. starpu_data_handle v_handle;
  53. unsigned *v;
  54. struct starpu_conf conf = {
  55. .sched_policy_name = "pheft",
  56. .ncpus = -1,
  57. .ncuda = -1,
  58. .nopencl = -1,
  59. .nspus = -1,
  60. .use_explicit_workers_bindid = 0,
  61. .use_explicit_workers_cuda_gpuid = 0,
  62. .use_explicit_workers_opencl_gpuid = 0,
  63. .calibrate = 1
  64. };
  65. ret = starpu_init(&conf);
  66. STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
  67. starpu_malloc((void **)&v, VECTORSIZE*sizeof(unsigned));
  68. starpu_vector_data_register(&v_handle, 0, (uintptr_t)v, VECTORSIZE, sizeof(unsigned));
  69. unsigned nworker = starpu_worker_get_count() + starpu_combined_worker_get_count();
  70. unsigned iter, worker;
  71. for (iter = 0; iter < N; iter++)
  72. {
  73. for (worker = 0; worker < nworker; worker++)
  74. {
  75. /* execute a task on that worker */
  76. struct starpu_task *task = starpu_task_create();
  77. task->cl = &cl;
  78. task->buffers[0].handle = v_handle;
  79. task->buffers[0].mode = STARPU_R;
  80. int ret = starpu_task_submit(task);
  81. if (ret == -ENODEV) goto enodev;
  82. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_submit");
  83. }
  84. }
  85. ret = starpu_task_wait_for_all();
  86. STARPU_CHECK_RETURN_VALUE(ret, "starpu_task_wait_for_all");
  87. starpu_data_unregister(v_handle);
  88. starpu_free(v);
  89. starpu_shutdown();
  90. return EXIT_SUCCESS;
  91. enodev:
  92. starpu_data_unregister(v_handle);
  93. starpu_free(v);
  94. fprintf(stderr, "WARNING: No one can execute this task\n");
  95. /* yes, we do not perform the computation but we did detect that no one
  96. * could perform the kernel, so this is not an error from StarPU */
  97. starpu_shutdown();
  98. return 77;
  99. }