modular_ws.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2013, 2017 Inria
  4. * Copyright (C) 2013 Simon Archipoff
  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_sched_component.h>
  18. #include <starpu_scheduler.h>
  19. static void initialize_ws_center_policy(unsigned sched_ctx_id)
  20. {
  21. struct starpu_sched_tree *t;
  22. t = starpu_sched_tree_create(sched_ctx_id);
  23. t->root = starpu_sched_component_work_stealing_create(t, NULL);
  24. unsigned i;
  25. for(i = 0; i < starpu_worker_get_count() + starpu_combined_worker_get_count(); i++)
  26. starpu_sched_component_connect(t->root, starpu_sched_component_worker_new(sched_ctx_id, i));
  27. starpu_sched_tree_update_workers(t);
  28. starpu_sched_ctx_set_policy_data(sched_ctx_id, (void*)t);
  29. }
  30. static void deinitialize_ws_center_policy(unsigned sched_ctx_id)
  31. {
  32. struct starpu_sched_tree *t = (struct starpu_sched_tree*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
  33. starpu_sched_tree_destroy(t);
  34. }
  35. struct starpu_sched_policy _starpu_sched_modular_ws_policy =
  36. {
  37. .init_sched = initialize_ws_center_policy,
  38. .deinit_sched = deinitialize_ws_center_policy,
  39. .add_workers = starpu_sched_tree_add_workers,
  40. .remove_workers = starpu_sched_tree_remove_workers,
  41. .push_task = starpu_sched_tree_work_stealing_push_task,
  42. .pop_task = starpu_sched_tree_pop_task,
  43. .pre_exec_hook = NULL,
  44. .post_exec_hook = NULL,
  45. .pop_every_task = NULL,
  46. .policy_name = "modular-ws",
  47. .policy_description = "work stealing modular policy",
  48. .worker_type = STARPU_WORKER_LIST,
  49. };