123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2011,2012 Inria
- * Copyright (C) 2009-2014 Université de Bordeaux
- * Copyright (C) 2010-2013,2015,2017 CNRS
- *
- * 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.h>
- #include <common/config.h>
- #include <core/jobs.h>
- #include <core/task.h>
- struct wrapper_func_args
- {
- void (*func)(void *);
- void *arg;
- };
- static void wrapper_func(void *buffers[] STARPU_ATTRIBUTE_UNUSED, void *_args)
- {
- struct wrapper_func_args *args = (struct wrapper_func_args *) _args;
- args->func(args->arg);
- }
- /**
- * Execute func(arg) on the given workers.
- */
- void starpu_execute_on_specific_workers(void (*func)(void*), void * arg, unsigned num_workers, unsigned * workers, const char * name)
- {
- int ret;
- unsigned w;
- struct starpu_task *tasks[STARPU_NMAXWORKERS];
- /* create a wrapper codelet */
- struct starpu_codelet wrapper_cl =
- {
- .where = 0xFF,
- .cuda_funcs = {wrapper_func},
- .cpu_funcs = {wrapper_func},
- .opencl_funcs = {wrapper_func},
- /* XXX we do not handle Cell .. */
- .nbuffers = 0,
- .name = name
- };
- struct wrapper_func_args args =
- {
- .func = func,
- .arg = arg
- };
- for (w = 0; w < num_workers; w++)
- {
- unsigned worker = workers[w];
- tasks[w] = starpu_task_create();
- tasks[w]->name = name;
- tasks[w]->cl = &wrapper_cl;
- tasks[w]->cl_arg = &args;
- tasks[w]->execute_on_a_specific_worker = 1;
- tasks[w]->workerid = worker;
- tasks[w]->detach = 0;
- tasks[w]->destroy = 0;
- _starpu_exclude_task_from_dag(tasks[w]);
- ret = starpu_task_submit(tasks[w]);
- if (ret == -ENODEV)
- {
- /* if the worker is not able to execute this tasks, we
- * don't insist as this means the worker is not
- * designated by the "where" bitmap */
- starpu_task_destroy(tasks[w]);
- tasks[w] = NULL;
- }
- }
- for (w= 0; w < num_workers; w++)
- {
- if (tasks[w])
- {
- ret = starpu_task_wait(tasks[w]);
- STARPU_ASSERT(!ret);
- starpu_task_destroy(tasks[w]);
- }
- }
- }
- /* execute func(arg) on each worker that matches the "where" flag */
- void starpu_execute_on_each_worker_ex(void (*func)(void *), void *arg, uint32_t where, const char * name)
- {
- int ret;
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- struct starpu_task *tasks[STARPU_NMAXWORKERS];
- /* This method only work on CPU, CUDA, OPENCL */
- STARPU_ASSERT((where & ~STARPU_CPU & ~STARPU_CUDA & ~STARPU_OPENCL) == 0);
- /* create a wrapper codelet */
- struct starpu_codelet wrapper_cl =
- {
- .where = where,
- .cuda_funcs = {wrapper_func},
- .cpu_funcs = {wrapper_func},
- .opencl_funcs = {wrapper_func},
- .nbuffers = 0,
- .name = (name != NULL ? name : "execute_on_all_wrapper")
- };
- struct wrapper_func_args args =
- {
- .func = func,
- .arg = arg
- };
- for (worker = 0; worker < nworkers; worker++)
- {
- tasks[worker] = starpu_task_create();
- tasks[worker]->name = wrapper_cl.name;
- tasks[worker]->cl = &wrapper_cl;
- tasks[worker]->cl_arg = &args;
- tasks[worker]->execute_on_a_specific_worker = 1;
- tasks[worker]->workerid = worker;
- tasks[worker]->detach = 0;
- tasks[worker]->destroy = 0;
- _starpu_exclude_task_from_dag(tasks[worker]);
- ret = _starpu_task_submit_internally(tasks[worker]);
- if (ret == -ENODEV)
- {
- /* if the worker is not able to execute this task, we
- * don't insist as this means the worker is not
- * designated by the "where" bitmap */
- starpu_task_destroy(tasks[worker]);
- tasks[worker] = NULL;
- }
- }
- for (worker = 0; worker < nworkers; worker++)
- {
- if (tasks[worker])
- {
- ret = starpu_task_wait(tasks[worker]);
- STARPU_ASSERT(!ret);
- starpu_task_destroy(tasks[worker]);
- }
- }
- }
- void starpu_execute_on_each_worker(void (*func)(void *), void *arg, uint32_t where)
- {
- starpu_execute_on_each_worker_ex(func, arg, where, NULL);
- }
|