123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2012 Inria
- *
- * 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 <math.h>
- #include <unistd.h>
- #include <starpu.h>
- #include "../helper.h"
- /*
- * All tasks submitted by StarPU should be executed once.
- * Applies to: all schedulers.
- */
- #define NTASKS 8
- #define TASK_DURATION 1e6 /* In microseconds */
- extern struct starpu_sched_policy _starpu_sched_ws_policy;
- extern struct starpu_sched_policy _starpu_sched_prio_policy;
- extern struct starpu_sched_policy _starpu_sched_random_policy;
- extern struct starpu_sched_policy _starpu_sched_dm_policy;
- extern struct starpu_sched_policy _starpu_sched_dmda_policy;
- extern struct starpu_sched_policy _starpu_sched_dmda_ready_policy;
- extern struct starpu_sched_policy _starpu_sched_dmda_sorted_policy;
- extern struct starpu_sched_policy _starpu_sched_eager_policy;
- extern struct starpu_sched_policy _starpu_sched_parallel_heft_policy;
- extern struct starpu_sched_policy _starpu_sched_pgreedy_policy;
- extern struct starpu_sched_policy _starpu_sched_heft_policy;
- static struct starpu_sched_policy *policies[] =
- {
- &_starpu_sched_ws_policy,
- &_starpu_sched_prio_policy,
- &_starpu_sched_dm_policy,
- &_starpu_sched_dmda_policy,
- &_starpu_sched_heft_policy,
- &_starpu_sched_dmda_ready_policy,
- &_starpu_sched_dmda_sorted_policy,
- &_starpu_sched_random_policy,
- &_starpu_sched_eager_policy,
- &_starpu_sched_parallel_heft_policy,
- &_starpu_sched_pgreedy_policy
- };
- static void
- dummy(void *buffers[], void *args)
- {
- (void) buffers;
- (void) args;
- usleep(TASK_DURATION);
- }
- static int
- run(struct starpu_sched_policy *p)
- {
- int ret;
- struct starpu_conf conf;
- (void) starpu_conf_init(&conf);
- conf.sched_policy = p;
- ret = starpu_init(&conf);
- if (ret == -ENODEV)
- exit(STARPU_TEST_SKIPPED);
- starpu_profiling_status_set(1);
- struct starpu_task *tasks[NTASKS] = { NULL };
- struct starpu_codelet cl =
- {
- .cpu_funcs = {dummy, NULL},
- .cuda_funcs = {dummy, NULL},
- .opencl_funcs = {dummy, NULL},
- .nbuffers = 0
- };
- int i;
- for (i = 0; i < NTASKS; i++)
- {
- struct starpu_task *task = starpu_task_create();
- tasks[i] = task;
- task->cl = &cl;
- task->synchronous = 1;
- task->destroy = 0;
- ret = starpu_task_submit(task);
- if (ret != 0)
- return 1;
- }
- starpu_task_wait_for_all();
- for (i = 0; i < NTASKS; i++)
- {
- struct starpu_task_profiling_info *pi;
- double task_len;
- pi = tasks[i]->profiling_info;
- task_len = starpu_timing_timespec_delay_us(&pi->start_time, &pi->end_time);
- if (task_len < TASK_DURATION/2)
- {
- char name[48];
- starpu_worker_get_name(pi->workerid, name, 48);
- FPRINTF(stderr, "Task %d, executed by %s, lasted %fµs\n",
- i, name, task_len);
- return 1;
- }
- starpu_task_destroy(tasks[i]);
- }
- starpu_shutdown();
- return 0;
- }
- int
- main(void)
- {
- int i;
- int n_policies = sizeof(policies)/sizeof(policies[0]);
- for (i = 0; i < n_policies; ++i)
- {
- struct starpu_sched_policy *policy = policies[i];
- FPRINTF(stdout, "Running with policy %s.\n",
- policy->policy_name);
- int ret;
- ret = run(policy);
- if (ret == 1)
- return EXIT_FAILURE;
- }
- return EXIT_SUCCESS;
- }
|