| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2016-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria * Copyright (C) 2016       Bérangère Subervie * * 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 <stdbool.h>#include <starpu.h>#include "../helper.h"/* Run a series of independent tasks with homogeneous execution time */#define TIME 0.010#ifdef STARPU_QUICK_CHECK#define TASK_COEFFICIENT 20#define MARGIN 0.15#else#define TASK_COEFFICIENT 100#define MARGIN 0.05#endif#define SECONDS_SCALE_COEFFICIENT_TIMING_NOW 1000000void wait_homogeneous(void *descr[], void *_args){	(void)descr;	(void)_args;	starpu_sleep(TIME);}double cost_function(struct starpu_task *t, struct starpu_perfmodel_arch *a, unsigned i){	(void)t;	(void)a;	(void)i;	return TIME * 1000000;}static struct starpu_perfmodel perf_model ={	.type = STARPU_PER_ARCH,	.arch_cost_function = cost_function,};static struct starpu_codelet cl ={	.cpu_funcs = { wait_homogeneous },	.cuda_funcs = { wait_homogeneous },	.opencl_funcs = { wait_homogeneous },	.cpu_funcs_name = { "wait_homogeneous" },	.nbuffers = 0,	.flags = STARPU_CODELET_SIMGRID_EXECUTE,	.model = &perf_model,};int main(int argc, char *argv[]){	int ret;	ret = starpu_initialize(NULL, &argc, &argv);	if (ret == -ENODEV) return STARPU_TEST_SKIPPED;	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");	unsigned nb_tasks, nb_workers, i;	double begin_time, end_time, time_m, time_s, speed_up, expected_speed_up, percentage_expected_speed_up;	bool check, check_sup;	nb_workers = starpu_worker_get_count_by_type(STARPU_CPU_WORKER) + starpu_worker_get_count_by_type(STARPU_CUDA_WORKER) + starpu_worker_get_count_by_type(STARPU_OPENCL_WORKER);	nb_tasks = nb_workers*TASK_COEFFICIENT;	begin_time = starpu_timing_now();	/*execution des tasks*/	for (i=0; i<nb_tasks; i++)	{		starpu_task_insert(&cl,0);	}	starpu_task_wait_for_all();	end_time = starpu_timing_now();	/*on determine si le temps mesure est satisfaisant ou pas*/	time_m = (end_time - begin_time)/SECONDS_SCALE_COEFFICIENT_TIMING_NOW; //pour ramener en secondes	time_s = nb_tasks * TIME;	speed_up = time_s/time_m;	expected_speed_up =  nb_workers;	percentage_expected_speed_up = 100 * (speed_up/expected_speed_up);	check = speed_up >= ((1 - MARGIN) * expected_speed_up);	check_sup = speed_up <= ((1 + MARGIN) * expected_speed_up);	printf("measured time = %f seconds\nsequential time = %f seconds\nspeed up = %f\nnumber of workers = %u\nnumber of tasks = %u\nexpected speed up = %f\npercentage of expected speed up = %.2f%%\n", time_m, time_s, speed_up, nb_workers, nb_tasks, expected_speed_up, percentage_expected_speed_up);	starpu_shutdown();	//test reussi ou test echoue	if (check && check_sup)	{		return EXIT_SUCCESS;	}	else	{		return EXIT_FAILURE;	}}
 |