| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2013-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
- * Copyright (C) 2013 Simon Archipoff
- * Copyright (C) 2020 Télécom-Sud Paris
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <starpu_sched_component.h>
- #include <starpu_perfmodel.h>
- #include "helper_mct.h"
- #include <float.h>
- #include <core/sched_policy.h>
- #include <core/task.h>
- static int mct_push_task(struct starpu_sched_component * component, struct starpu_task * task)
- {
- STARPU_ASSERT(component && task && starpu_sched_component_is_mct(component));
- struct _starpu_mct_data * d = component->data;
- struct starpu_sched_component * best_component;
- /* Estimated task duration for each child */
- double estimated_lengths[component->nchildren];
- /* Estimated transfer duration for each child */
- double estimated_transfer_length[component->nchildren];
- /* Estimated transfer+task termination for each child */
- double estimated_ends_with_task[component->nchildren];
- /* estimated energy */
- double local_energy[component->nchildren];
- /* Minimum transfer+task termination of the task over all workers */
- double min_exp_end_of_task;
- /* Maximum termination of the already-scheduled tasks over all workers */
- double max_exp_end_of_workers;
- unsigned suitable_components[component->nchildren];
- unsigned nsuitable_components;
- nsuitable_components = starpu_mct_compute_execution_times(component, task,
- estimated_lengths, estimated_transfer_length, suitable_components);
- /* If no suitable components were found, it means that the perfmodel of
- * the task had been purged since it has been pushed on the mct component.
- * We should send a push_fail message to its parent so that it will
- * be able to reschedule the task properly. */
- if(nsuitable_components == 0)
- return 1;
- /* Entering critical section to make sure no two workers
- make scheduling decisions at the same time */
- STARPU_COMPONENT_MUTEX_LOCK(&d->scheduling_mutex);
- starpu_mct_compute_expected_times(component, task, estimated_lengths, estimated_transfer_length,
- estimated_ends_with_task, &min_exp_end_of_task, &max_exp_end_of_workers, suitable_components, nsuitable_components);
- /* Compute the energy, if provided*/
- starpu_mct_compute_energy(component, task, local_energy, suitable_components, nsuitable_components);
- int best_icomponent = starpu_mct_get_best_component(d, task, estimated_lengths, estimated_transfer_length,
- estimated_ends_with_task, local_energy, min_exp_end_of_task, max_exp_end_of_workers, suitable_components, nsuitable_components);
- /* If no best component is found, it means that the perfmodel of
- * the task had been purged since it has been pushed on the mct component.
- * We should send a push_fail message to its parent so that it will
- * be able to reschedule the task properly. */
- if(best_icomponent == -1)
- {
- STARPU_COMPONENT_MUTEX_UNLOCK(&d->scheduling_mutex);
- return 1;
- }
- best_component = component->children[best_icomponent];
- if(starpu_sched_component_is_worker(best_component))
- {
- best_component->can_pull(best_component);
- STARPU_COMPONENT_MUTEX_UNLOCK(&d->scheduling_mutex);
- return 1;
- }
- starpu_sched_task_break(task);
- int ret = starpu_sched_component_push_task(component, best_component, task);
- /* I can now exit the critical section: Pushing the task below ensures that its execution
- time will be taken into account for subsequent scheduling decisions */
- STARPU_COMPONENT_MUTEX_UNLOCK(&d->scheduling_mutex);
- return ret;
- }
- static void mct_component_deinit_data(struct starpu_sched_component * component)
- {
- STARPU_ASSERT(starpu_sched_component_is_mct(component));
- struct _starpu_mct_data * d = component->data;
- STARPU_PTHREAD_MUTEX_DESTROY(&d->scheduling_mutex);
- free(d);
- }
- int starpu_sched_component_is_mct(struct starpu_sched_component * component)
- {
- return component->push_task == mct_push_task;
- }
- struct starpu_sched_component * starpu_sched_component_mct_create(struct starpu_sched_tree *tree, struct starpu_sched_component_mct_data * params)
- {
- struct starpu_sched_component * component = starpu_sched_component_create(tree, "mct");
- struct _starpu_mct_data *data = starpu_mct_init_parameters(params);
- component->data = data;
- STARPU_PTHREAD_MUTEX_INIT(&data->scheduling_mutex, NULL);
- component->push_task = mct_push_task;
- component->deinit_data = mct_component_deinit_data;
- return component;
- }
|