| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2011-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), 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 <starpu.h>#include "multiformat_types.h"static int ncpu = 0;#ifdef STARPU_USE_CUDAstatic int ncuda = 0;#endif#ifdef STARPU_USE_OPENCLstatic int nopencl = 0;#endif#define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)static struct point array_of_structs[N_ELEMENTS];static starpu_data_handle_t array_of_structs_handle;voidmultiformat_scal_cpu_func(void *buffers[], void *args){	struct point *aos;	unsigned int n, i;	(void)args;	aos = (struct point *) STARPU_MULTIFORMAT_GET_CPU_PTR(buffers[0]);	n = STARPU_MULTIFORMAT_GET_NX(buffers[0]);	for (i = 0; i < n; i++)	{		aos[i].x *= aos[i].y;	}}#ifdef STARPU_USE_CUDAextern struct starpu_codelet cpu_to_cuda_cl;extern struct starpu_codelet cuda_to_cpu_cl;#endif#ifdef STARPU_USE_OPENCLextern struct starpu_codelet cpu_to_opencl_cl;extern struct starpu_codelet opencl_to_cpu_cl;#endifstatic struct starpu_multiformat_data_interface_ops format_ops ={#ifdef STARPU_USE_CUDA	.cuda_elemsize = 2* sizeof(float),	.cpu_to_cuda_cl = &cpu_to_cuda_cl,	.cuda_to_cpu_cl = &cuda_to_cpu_cl,#endif#ifdef STARPU_USE_OPENCL	.opencl_elemsize = 2 * sizeof(float),	.cpu_to_opencl_cl = &cpu_to_opencl_cl,	.opencl_to_cpu_cl = &opencl_to_cpu_cl,#endif	.cpu_elemsize = sizeof(struct point),};#ifdef STARPU_USE_CUDAextern void multiformat_scal_cuda_func(void *buffers[], void *arg);#endif#ifdef STARPU_USE_OPENCLextern void multiformat_scal_opencl_func(void *buffers[], void *arg);#endif#ifdef STARPU_USE_CPUstatic struct starpu_codelet cpu_cl ={	.cpu_funcs = {multiformat_scal_cpu_func},	.cpu_funcs_name = {"multiformat_scal_cpu_func"},	.nbuffers = 1,	.modes = { STARPU_RW },	.name = "codelet_real"};#endif /* !STARPU_USE_CPU */#ifdef STARPU_USE_CUDAstatic struct starpu_codelet cuda_cl ={	.cuda_funcs = { multiformat_scal_cuda_func },	.nbuffers = 1,	.modes = { STARPU_RW },	.name = "cuda_codelet"};#endif /* !STARPU_USE_CUDA */#ifdef STARPU_USE_OPENCLstatic struct starpu_codelet opencl_cl ={	.opencl_funcs = { multiformat_scal_opencl_func },	.nbuffers = 1,	.modes = { STARPU_RW },	.name = "opencl_codelet"};#endif /* !STARPU_USE_OPENCL *//* * Main functions  */static voidinit_problem_data(void){	int i; 	for (i = 0; i < N_ELEMENTS; i++)	{		array_of_structs[i].x = 1.0 + i;		array_of_structs[i].y = 42.0;	}}static voidregister_data(void){	starpu_multiformat_data_register(&array_of_structs_handle,					 STARPU_MAIN_RAM,					 &array_of_structs,					 N_ELEMENTS,					 &format_ops);}static intcreate_and_submit_task(unsigned int dev){	struct starpu_task *task = starpu_task_create();	switch (dev)	{#ifdef STARPU_USE_CPU		case STARPU_CPU:			task->cl = &cpu_cl;			break;#endif#ifdef STARPU_USE_CUDA		case STARPU_CUDA:			task->cl = &cuda_cl;			break;#endif#ifdef STARPU_USE_OPENCL		case STARPU_OPENCL:			task->cl = &opencl_cl;			break;#endif		default:			assert(0);	}	task->synchronous = 1;	task->handles[0] = array_of_structs_handle;	task->cl_arg = NULL;	task->cl_arg_size = 0;	return starpu_task_submit(task);}static voidcreate_and_submit_tasks(void){#ifdef STARPU_USE_CUDA	if (ncuda > 0)	{		int err;		err = create_and_submit_task(STARPU_CUDA);		if (err != 0)		{			FPRINTF(stderr, "Cuda : %s\n", strerror(-err));			return;		}	}#endif#ifdef STARPU_USE_CPU	if (ncpu > 0)	{		int err;		err = create_and_submit_task(STARPU_CPU);		if (err != 0)		{			FPRINTF(stderr, "CPU : %s\n", strerror(-err));			return;		}	}#endif#ifdef STARPU_USE_OPENCL	if (nopencl > 0)	{		int err;		err = create_and_submit_task(STARPU_OPENCL);		if (err != 0)		{			FPRINTF(stderr, "OpenCL : %s\n", strerror(-err));			return;		}	}#endif /* !STARPU_USE_OPENCL */}static voidunregister_data(void){	starpu_data_unregister(array_of_structs_handle);}static voidprint_it(void){	int i;	for (i = 0; i < N_ELEMENTS; i++)	{		FPRINTF(stderr, "(%.2f %.2f) ",			array_of_structs[i].x,			array_of_structs[i].y);	}	FPRINTF(stderr, "\n");}static intcheck_it(void){	int i;	for (i = 0; i < N_ELEMENTS; i++)	{		float expected_value = i + 1.0;#ifdef STARPU_USE_CUDA		if (ncuda > 0)			expected_value *= array_of_structs[i].y;#endif#ifdef STARPU_USE_OPENCL		if (nopencl > 0)			expected_value *= array_of_structs[i].y;#endif		expected_value *= array_of_structs[i].y;		if (array_of_structs[i].x != expected_value)			return EXIT_FAILURE;	}	return EXIT_SUCCESS;}#ifdef STARPU_USE_OPENCLstruct starpu_opencl_program opencl_program;struct starpu_opencl_program opencl_conversion_program;#endifstatic intgpus_available(void){#ifdef STARPU_USE_CUDA	if (ncuda > 0)		return 1;#endif#ifdef STARPU_USE_OPENCL	if (nopencl > 0)		return 1;#endif	return 0;}intmain(void){#ifdef STARPU_USE_CPU	int ret;	struct starpu_conf conf;	starpu_conf_init(&conf);	/* this example doesn't support MPI Master-Slave */	conf.nmpi_ms = 0;	ret = starpu_init(&conf);	STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");	ncpu = starpu_cpu_worker_get_count();#ifdef STARPU_USE_CUDA	ncuda = starpu_cuda_worker_get_count();#endif#ifdef STARPU_USE_OPENCL	nopencl = starpu_opencl_worker_get_count();#endif	if (ncpu == 0 || !gpus_available())	{		starpu_shutdown();		return 77;	}#ifdef STARPU_USE_OPENCL	ret = starpu_opencl_load_opencl_from_file("examples/basic_examples/multiformat_opencl_kernel.cl",						  &opencl_program, NULL);	STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_load_opencl_from_file");	ret = starpu_opencl_load_opencl_from_file("examples/basic_examples/multiformat_conversion_codelets_opencl_kernel.cl", 						  &opencl_conversion_program, NULL);	STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_load_opencl_from_file");#endif	init_problem_data();	print_it();	register_data();	create_and_submit_tasks();	unregister_data();	print_it();#ifdef STARPU_USE_OPENCL        ret = starpu_opencl_unload_opencl(&opencl_program);        STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_unload_opencl");        ret = starpu_opencl_unload_opencl(&opencl_conversion_program);        STARPU_CHECK_RETURN_VALUE(ret, "starpu_opencl_unload_opencl");#endif	starpu_shutdown();	return check_it();#else	/* Without the CPU, there is no point in using the multiformat	 * interface, so this test is pointless. */	return 77;#endif}
 |