modular_random_prefetching.c 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2013-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), 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. #include <limits.h>
  20. #define _STARPU_SCHED_NTASKS_THRESHOLD_DEFAULT 2
  21. #define _STARPU_SCHED_EXP_LEN_THRESHOLD_DEFAULT 1000000000.0
  22. /* Random scheduler with fifo queues for its scheduling window and its workers. */
  23. static void initialize_random_fifo_prefetching_center_policy(unsigned sched_ctx_id)
  24. {
  25. starpu_sched_component_initialize_simple_scheduler((starpu_sched_component_create_t) starpu_sched_component_random_create, NULL,
  26. STARPU_SCHED_SIMPLE_DECIDE_WORKERS |
  27. STARPU_SCHED_SIMPLE_FIFO_ABOVE |
  28. STARPU_SCHED_SIMPLE_FIFOS_BELOW |
  29. STARPU_SCHED_SIMPLE_FIFOS_BELOW_READY |
  30. STARPU_SCHED_SIMPLE_IMPL, sched_ctx_id);
  31. }
  32. static void deinitialize_random_fifo_prefetching_center_policy(unsigned sched_ctx_id)
  33. {
  34. struct starpu_sched_tree *tree = (struct starpu_sched_tree*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
  35. starpu_sched_tree_destroy(tree);
  36. }
  37. struct starpu_sched_policy _starpu_sched_modular_random_prefetching_policy =
  38. {
  39. .init_sched = initialize_random_fifo_prefetching_center_policy,
  40. .deinit_sched = deinitialize_random_fifo_prefetching_center_policy,
  41. .add_workers = starpu_sched_tree_add_workers,
  42. .remove_workers = starpu_sched_tree_remove_workers,
  43. .push_task = starpu_sched_tree_push_task,
  44. .pop_task = starpu_sched_tree_pop_task,
  45. .pre_exec_hook = NULL,
  46. .post_exec_hook = NULL,
  47. .pop_every_task = NULL,
  48. .policy_name = "modular-random-prefetching",
  49. .policy_description = "random prefetching modular policy",
  50. .worker_type = STARPU_WORKER_LIST,
  51. };
  52. /* Random scheduler with priority queues for its scheduling window and its workers. */
  53. static void initialize_random_prio_prefetching_center_policy(unsigned sched_ctx_id)
  54. {
  55. starpu_sched_component_initialize_simple_scheduler((starpu_sched_component_create_t) starpu_sched_component_random_create, NULL,
  56. STARPU_SCHED_SIMPLE_DECIDE_WORKERS |
  57. STARPU_SCHED_SIMPLE_FIFO_ABOVE |
  58. STARPU_SCHED_SIMPLE_FIFO_ABOVE_PRIO |
  59. STARPU_SCHED_SIMPLE_FIFOS_BELOW |
  60. STARPU_SCHED_SIMPLE_FIFOS_BELOW_PRIO |
  61. STARPU_SCHED_SIMPLE_FIFOS_BELOW_READY |
  62. STARPU_SCHED_SIMPLE_IMPL, sched_ctx_id);
  63. }
  64. static void deinitialize_random_prio_prefetching_center_policy(unsigned sched_ctx_id)
  65. {
  66. struct starpu_sched_tree *tree = (struct starpu_sched_tree*)starpu_sched_ctx_get_policy_data(sched_ctx_id);
  67. starpu_sched_tree_destroy(tree);
  68. }
  69. struct starpu_sched_policy _starpu_sched_modular_random_prio_prefetching_policy =
  70. {
  71. .init_sched = initialize_random_prio_prefetching_center_policy,
  72. .deinit_sched = deinitialize_random_prio_prefetching_center_policy,
  73. .add_workers = starpu_sched_tree_add_workers,
  74. .remove_workers = starpu_sched_tree_remove_workers,
  75. .push_task = starpu_sched_tree_push_task,
  76. .pop_task = starpu_sched_tree_pop_task,
  77. .pre_exec_hook = NULL,
  78. .post_exec_hook = NULL,
  79. .pop_every_task = NULL,
  80. .policy_name = "modular-random-prio-prefetching",
  81. .policy_description = "random-prio prefetching modular policy",
  82. .worker_type = STARPU_WORKER_LIST,
  83. .prefetches = 1,
  84. };