hello-world.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 <stdio.h>
  17. #include <starpu.h>
  18. void callback_func(void *callback_arg)
  19. {
  20. printf("Callback function got argument %x\n", callback_arg);
  21. }
  22. void cpu_func(starpu_data_interface_t *buffers, void *func_arg)
  23. {
  24. float *array = func_arg;
  25. printf("Hello world (array = {%f, %f} )\n", array[0], array[1]);
  26. }
  27. starpu_codelet cl =
  28. {
  29. .where = CORE,
  30. .core_func = cpu_func,
  31. .nbuffers = 0
  32. };
  33. int main(int argc, char **argv)
  34. {
  35. /* initialize StarPU */
  36. starpu_init(NULL);
  37. struct starpu_task *task = starpu_task_create();
  38. task->cl = &cl;
  39. float array[2] = {1.0f, -1.0f};
  40. task->cl_arg = &array;
  41. task->cl_arg_size = 2*sizeof(float);
  42. task->callback_func = callback_func;
  43. task->callback_arg = 0x42;
  44. /* starpu_submit_task will be a blocking call */
  45. task->synchronous = 1;
  46. /* submit the task to StarPU */
  47. starpu_submit_task(task);
  48. /* terminate StarPU */
  49. starpu_shutdown();
  50. return 0;
  51. }