| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- /*
- * StarPU
- * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
- *
- * This program 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.
- *
- * This program 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 <sys/time.h>
- #include <pthread.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <starpu.h>
- #define NTASKS 32000
- struct task_list_node {
- struct starpu_task *task;
- struct task_list_node *prev;
- struct task_list_node *next;
- };
- struct task_list {
- struct task_list_node *head;
- struct task_list_node *tail;
- };
- struct task_list sched_list;
- static pthread_cond_t sched_cond;
- static pthread_mutex_t sched_mutex;
- static void init_dummy_sched(struct starpu_machine_topology_s *topology,
- struct starpu_sched_policy_s *policy)
- {
- /* Create a linked-list of tasks and a condition variable to protect it */
- sched_list.head = NULL;
- sched_list.tail = NULL;
- pthread_mutex_init(&sched_mutex, NULL);
- pthread_cond_init(&sched_cond, NULL);
- unsigned workerid;
- for (workerid = 0; workerid < topology->nworkers; workerid++)
- starpu_worker_set_sched_condition(workerid, &sched_cond, &sched_mutex);
- }
- static void deinit_dummy_sched(struct starpu_machine_topology_s *topology,
- struct starpu_sched_policy_s *policy)
- {
- STARPU_ASSERT(sched_list.head == NULL);
- STARPU_ASSERT(sched_list.tail == NULL);
- pthread_cond_destroy(&sched_cond);
- pthread_mutex_destroy(&sched_mutex);
- }
- static int push_task_dummy(struct starpu_task *task)
- {
- pthread_mutex_lock(&sched_mutex);
- if (!sched_list.head)
- {
- /* This is the first element in the queue */
- sched_list.head = malloc(sizeof(struct task_list_node));
- sched_list.head->task = task;
- sched_list.head->prev = NULL;
- sched_list.head->next = NULL;
- sched_list.tail = sched_list.head;
- }
- else {
- struct task_list_node *node = malloc(sizeof(struct task_list_node));
- node->task = task;
- sched_list.tail->next = node;
- node->prev = sched_list.tail;
- node->next = NULL;
- sched_list.tail = node;
- }
- pthread_cond_signal(&sched_cond);
- pthread_mutex_unlock(&sched_mutex);
- }
- /* The mutex associated to the calling worker is already taken by StarPU */
- static struct starpu_task *pop_task_dummy(void)
- {
- struct starpu_task *task = NULL;
- struct task_list_node *link, *second;
- if (!sched_list.head)
- return NULL;
- /* NB: In this simplistic strategy, we assume that all workers are able
- * to execute all tasks, otherwise, it would have been necessary to go
- * through the entire list until we find a task that is executable from
- * the calling worker. So we just take the head of the list and give it
- * to the worker. */
- link = sched_list.head;
- task = link->task;
- second = link->next;
- if (second)
- {
- second->prev = NULL;
- sched_list.head = second;
- }
- else {
- sched_list.head = NULL;
- sched_list.tail = NULL;
- }
- return task;
- }
- static struct starpu_sched_policy_s dummy_sched_policy = {
- .init_sched = init_dummy_sched,
- .deinit_sched = deinit_dummy_sched,
- .push_task = push_task_dummy,
- .pop_task = pop_task_dummy,
- .pop_every_task = NULL,
- .policy_name = "dummy",
- .policy_description = "dummy scheduling strategy"
- };
- static struct starpu_conf conf = {
- .sched_policy_name = NULL,
- .sched_policy = &dummy_sched_policy,
- .ncpus = -1,
- .ncuda = -1,
- .nopencl = -1,
- .nspus = -1,
- .use_explicit_workers_bindid = 0,
- .use_explicit_workers_cuda_gpuid = 0,
- .use_explicit_workers_opencl_gpuid = 0,
- .calibrate = 0
- };
- static void dummy_func(void *descr[] __attribute__ ((unused)), void *arg __attribute__ ((unused)))
- {
- }
- static starpu_codelet dummy_codelet =
- {
- .where = STARPU_CPU|STARPU_CUDA|STARPU_OPENCL,
- .cpu_func = dummy_func,
- .cuda_func = dummy_func,
- .opencl_func = dummy_func,
- .model = NULL,
- .nbuffers = 0
- };
- int main(int argc, char **argv)
- {
- starpu_init(&conf);
- unsigned i;
- for (i = 0; i < NTASKS; i++)
- {
- struct starpu_task *task = starpu_task_create();
-
- task->cl = &dummy_codelet;
- task->cl_arg = NULL;
-
- starpu_task_submit(task);
- }
- starpu_task_wait_for_all();
- starpu_shutdown();
- return 0;
- }
|