async-tasks-overhead.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * StarPU
  3. * Copyright (C) INRIA 2008-2009 (see AUTHORS file)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. #include <sys/time.h>
  17. #include <pthread.h>
  18. #include <stdio.h>
  19. #include <unistd.h>
  20. #include <starpu.h>
  21. static pthread_mutex_t mutex;
  22. static pthread_cond_t cond;
  23. static unsigned ntasks = 65536;
  24. static unsigned cnt;
  25. static unsigned finished = 0;
  26. static void dummy_func(void *descr[] __attribute__ ((unused)), void *arg __attribute__ ((unused)))
  27. {
  28. }
  29. static starpu_codelet dummy_codelet =
  30. {
  31. .where = STARPU_CPU|STARPU_CUDA|STARPU_GORDON,
  32. .cpu_func = dummy_func,
  33. .cuda_func = dummy_func,
  34. #ifdef USE_GORDON
  35. .gordon_func = 0, /* this will be defined later */
  36. #endif
  37. .model = NULL,
  38. .nbuffers = 0
  39. };
  40. static void init_gordon_kernel(void)
  41. {
  42. #ifdef USE_GORDON
  43. unsigned elf_id =
  44. gordon_register_elf_plugin("./microbenchs/null_kernel_gordon.spuelf");
  45. gordon_load_plugin_on_all_spu(elf_id);
  46. unsigned gordon_null_kernel =
  47. gordon_register_kernel(elf_id, "empty_kernel");
  48. gordon_load_kernel_on_all_spu(gordon_null_kernel);
  49. dummy_codelet.gordon_func = gordon_null_kernel;
  50. #endif
  51. }
  52. void callback(void *arg)
  53. {
  54. unsigned res = STARPU_ATOMIC_ADD(&cnt, -1);
  55. if (res == 0)
  56. {
  57. pthread_mutex_lock(&mutex);
  58. finished = 1;
  59. pthread_cond_signal(&cond);
  60. pthread_mutex_unlock(&mutex);
  61. }
  62. }
  63. static void inject_one_task(void)
  64. {
  65. struct starpu_task *task = starpu_task_create();
  66. task->cl = &dummy_codelet;
  67. task->cl_arg = NULL;
  68. task->callback_func = callback;
  69. task->callback_arg = NULL;
  70. starpu_submit_task(task);
  71. }
  72. static struct starpu_conf conf = {
  73. .sched_policy_name = NULL,
  74. .ncpus = -1,
  75. .ncuda = -1,
  76. .nspus = -1,
  77. .use_explicit_workers_bindid = 0,
  78. .use_explicit_workers_gpuid = 0,
  79. .calibrate = 0
  80. };
  81. static void usage(char **argv)
  82. {
  83. fprintf(stderr, "%s [-i ntasks] [-p sched_policy] [-h]\n", argv[0]);
  84. exit(-1);
  85. }
  86. static void parse_args(int argc, char **argv)
  87. {
  88. int c;
  89. while ((c = getopt(argc, argv, "i:p:h")) != -1)
  90. switch(c) {
  91. case 'i':
  92. ntasks = atoi(optarg);
  93. break;
  94. case 'p':
  95. conf.sched_policy_name = optarg;
  96. break;
  97. case 'h':
  98. usage(argv);
  99. break;
  100. }
  101. }
  102. int main(int argc, char **argv)
  103. {
  104. unsigned i;
  105. double timing;
  106. struct timeval start;
  107. struct timeval end;
  108. pthread_mutex_init(&mutex, NULL);
  109. pthread_cond_init(&cond, NULL);
  110. parse_args(argc, argv);
  111. cnt = ntasks;
  112. starpu_init(&conf);
  113. init_gordon_kernel();
  114. fprintf(stderr, "#tasks : %d\n", ntasks);
  115. gettimeofday(&start, NULL);
  116. for (i = 0; i < ntasks; i++)
  117. {
  118. inject_one_task();
  119. }
  120. pthread_mutex_lock(&mutex);
  121. if (!finished)
  122. pthread_cond_wait(&cond, &mutex);
  123. pthread_mutex_unlock(&mutex);
  124. gettimeofday(&end, NULL);
  125. timing = (double)((end.tv_sec - start.tv_sec)*1000000 + (end.tv_usec - start.tv_usec));
  126. fprintf(stderr, "Total: %lf secs\n", timing/1000000);
  127. fprintf(stderr, "Per task: %lf usecs\n", timing/ntasks);
  128. starpu_shutdown();
  129. return 0;
  130. }