modular_prio_prefetching.c 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2013 INRIA
  4. *
  5. * StarPU 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. * StarPU 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 <starpu_sched_component.h>
  17. #include <starpu_scheduler.h>
  18. #define _STARPU_SCHED_NTASKS_THRESHOLD_DEFAULT 4
  19. #define _STARPU_SCHED_EXP_LEN_THRESHOLD_DEFAULT 1000000000.0
  20. static void initialize_prio_prefetching_center_policy(unsigned sched_ctx_id)
  21. {
  22. struct starpu_sched_tree *t;
  23. struct starpu_sched_component * eager_component;
  24. starpu_sched_ctx_create_worker_collection(sched_ctx_id, STARPU_WORKER_LIST);
  25. t = starpu_sched_tree_create(sched_ctx_id);
  26. t->root = starpu_sched_component_prio_create(t, NULL);
  27. eager_component = starpu_sched_component_eager_create(t, NULL);
  28. starpu_sched_component_connect(t->root, eager_component);
  29. struct starpu_sched_component_prio_data prio_data =
  30. {
  31. .ntasks_threshold = starpu_get_env_number_default("STARPU_NTASKS_THRESHOLD", _STARPU_SCHED_NTASKS_THRESHOLD_DEFAULT),
  32. .exp_len_threshold = starpu_get_env_float_default("STARPU_EXP_LEN_THRESHOLD", _STARPU_SCHED_EXP_LEN_THRESHOLD_DEFAULT),
  33. };
  34. unsigned i;
  35. for(i = 0; i < starpu_worker_get_count() + starpu_combined_worker_get_count(); i++)
  36. {
  37. struct starpu_sched_component * worker_component = starpu_sched_component_worker_get(sched_ctx_id, i);
  38. struct starpu_sched_component * prio_component = starpu_sched_component_prio_create(t, &prio_data);
  39. starpu_sched_component_connect(prio_component, worker_component);
  40. starpu_sched_component_connect(eager_component, prio_component);
  41. }
  42. starpu_sched_tree_update_workers(t);
  43. starpu_sched_ctx_set_policy_data(sched_ctx_id, (void*)t);
  44. }
  45. static void deinitialize_prio_prefetching_center_policy(unsigned sched_ctx_id)
  46. {
  47. struct starpu_sched_tree *tree = (struct starpu_sched_tree*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
  48. starpu_sched_tree_destroy(tree);
  49. starpu_sched_ctx_delete_worker_collection(sched_ctx_id);
  50. }
  51. struct starpu_sched_policy _starpu_sched_modular_prio_prefetching_policy =
  52. {
  53. .init_sched = initialize_prio_prefetching_center_policy,
  54. .deinit_sched = deinitialize_prio_prefetching_center_policy,
  55. .add_workers = starpu_sched_tree_add_workers,
  56. .remove_workers = starpu_sched_tree_remove_workers,
  57. .push_task = starpu_sched_tree_push_task,
  58. .pop_task = starpu_sched_tree_pop_task,
  59. .pre_exec_hook = starpu_sched_component_worker_pre_exec_hook,
  60. .post_exec_hook = starpu_sched_component_worker_post_exec_hook,
  61. .pop_every_task = NULL,
  62. .policy_name = "modular-prio-prefetching",
  63. .policy_description = "prio prefetching modular policy"
  64. };